* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}


:root {
  --primary-color: #E53935;
  --secondary-color: #FFC107;
  --background-dark: #1A1A1A;
  --background-light: #F8F8F8;
  --text-light: #CCCCCC;
  --text-dark: #333333;
}

body {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.clear {
  clear: both;
}
.container {
  max-width: 1100px;
  padding: 0 2%;
  margin: 0 auto;
}

/* ----------------------------------- */
/* HEADER & NAVIGATION */
/* ----------------------------------- */

section.header-master {
  width: 100%;
  padding: 10px 0 0 0;
  background: var(--background-dark);
}

section.header-master header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

div.logo {
  float: left;
  width: 180px;
  height: 50px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

header nav.desktop {
  float: left;
  padding-left: 60px;
  margin-top: 10px;
}

header nav.desktop ul {
  list-style-type: none;
}

header nav.desktop li {
  padding: 0 20px;
  display: inline-block;
  font-size: 17px;
}

header nav.desktop li > a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav.desktop li > a:hover,
li.selected > a {
  color: var(--primary-color);
}

div.telefone-header {
  float: right;
  margin-top: 10px;
}

div.telefone-header span {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}

/* Menu Mobile */
nav.mobile {
  display: none;
  float: right;
  margin-top: 10px;
}

nav.mobile h3 {
  cursor: pointer;
  color: var(--primary-color);
  font-size: 28px;
}

ul.nav-desktop {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 70px;
  background: var(--background-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style-type: none;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

ul.nav-desktop li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

ul.nav-desktop li a {
  color: var(--text-light);
  font-weight: normal;
}

/* ----------------------------------- */
/* HOME - HERO SECTION (Content Header) */
/* ----------------------------------- */

.content-header {
  padding: 80px 0 100px 0;
  background: var(--background-dark);
}

.content-header .one {
  float: left;
  width: 50%;
  margin-top: 50px;
}

.content-header .one h2 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 3.2em;
  line-height: 1.2;
}

.content-header .one p {
  padding: 20px 0;
  font-size: 1.1em;
  color: var(--text-light);
}

.content-header .one form input[type="email"] {
  width: 280px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 8px;
  padding-left: 15px;
  margin-right: 10px;
  color: var(--text-dark);
}

.content-header .one form input[type="submit"] {
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  border: 0;
  height: 50px;
  padding: 0px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.content-header .one form input[type="submit"]:hover {
  opacity: 0.9;
}

.content-header .one span {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  margin-top: 15px;
}

.content-header .two {
  float: left;
  width: 50%;
  text-align: center;
}

.content-header .two .burger-img-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.content-header .two .burger-img-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


/* ----------------------------------- */
/* HOME - DIFERENCIAIS (3 Colunas) */
/* ----------------------------------- */

section.diferenciais {
  padding: 60px 0;
  background-color: var(--background-light);
}

section.diferenciais h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    order: -1;
}

section.diferenciais > .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

section.diferenciais > .container > .clear {
    display: none;
}

section.diferenciais > .container > div[style*="text-align"] {
    width: 100%;
    order: 10;
}

.diferencial-single {
  flex: 1 1 0;
  min-width: 280px;
  padding: 0 15px;
  text-align: center;
  display: flex; 
  flex-direction: column; 
  align-items: center;
  align-self: stretch;
}

.diferencial-single img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.diferencial-single h3 {
  margin: 10px 0;
  font-size: 1.4em;
  color: var(--text-dark);
}

.diferencial-single h3 > b {
  color: var(--primary-color);
}

.diferencial-single p {
  color: #666;
  font-size: 1em;
  line-height: 1.5;
  min-height: 80px; 
  flex-grow: 1; 
}

.btn-ver-cardapio {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-ver-cardapio:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(229, 57, 53, 0.4);
  text-decoration: none;
  color: white;
}

/* ----------------------------------- */
/* SOBRE NÓS (Teaser na Home) */
/* ----------------------------------- */

.sobre {
  background: var(--background-dark);
  padding: 60px 0;
  color: var(--text-light);
}

.sobre-container {
  float: left;
  width: 50%;
  padding: 0 30px;
}

.sobre-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sobre-container h2 {
  font-size: 2.5em;
  margin: 10px 0 20px 0;
  color: white;
  font-weight: 700;
}

.sobre-container h2 > b {
  color: var(--secondary-color);
}

.sobre-container p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ----------------------------------- */
/* SOBRE NÓS (Página Completa) */
/* ----------------------------------- */

.sobre-page {
    background-color: var(--background-light);
    padding: 40px 0 60px 0;
    min-height: 80vh;
}

.sobre-page h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.8em;
    margin: 20px 0 40px 0;
}

.compromisso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.compromisso-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; 
    height: 100%;
    text-align: center; 
}

.compromisso-item .compromisso-img {
    width: 200px; 
    height: 200px;
    object-fit: cover;
    border-radius: 50%; 
    margin-bottom: 15px; 
    align-self: center; 
}


.compromisso-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.compromisso-item p {
    flex-grow: 1; 
    margin-bottom: 0;
}

.sobre-fundacao img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* ----------------------------------- */
/* PRODUTOS (Cardápio) */
/* ----------------------------------- */

.hamburgueres-page {
  background-color: var(--background-light);
  padding: 20px 0 60px 0;
  min-height: 80vh;
}

.hamburgueres-page h1 {
    color: var(--primary-color);
}

.hamburgueres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hamburguer-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hamburguer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hamburguer-image {
  text-align: center;
  margin-bottom: 20px;
}

.hamburguer-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 0; 
}

.hamburguer-info h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.4em;
  text-align: center;
}

.hamburguer-info p {
  color: #666;
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 70px;
}

.hamburguer-card .preco {
  text-align: center;
  background: var(--primary-color);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.hamburguer-card .btn-pedido {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s;
}

.hamburguer-card .btn-pedido:hover {
    background-color: #fdd835; 
}


/* ----------------------------------- */
/* CONTATO (Formulário e Info) */
/* ----------------------------------- */

.contato-page {
  background-color: var(--background-light);
  padding: 40px 0;
  min-height: 80vh;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr; 
  gap: 50px;
  margin-top: 40px;
}

.contato-info, .contato-form {
  background: white;
  padding: 35px; 
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contato-info h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8em;
}

.info-item {
  display: flex;
  align-items: center; 
  margin-bottom: 20px;
  padding: 15px;
  background: var(--background-light); 
  border-left: 5px solid var(--secondary-color); 
  border-radius: 5px;
}

.info-item i {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 0; 
}

.info-item h3 {
  color: var(--text-dark);
  margin-bottom: 5px;
  font-size: 1.1em;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DDD; 
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px; 
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--primary-color); 
  box-shadow: 0 0 5px rgba(229, 57, 53, 0.3);
}

.contato-form input[type="submit"] {
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  height: 50px;
  border-radius: 6px; 
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contato-form input[type="submit"]:hover {
  background: #C62828; 
  transform: translateY(-1px);
}


/* ----------------------------------- */
/* FOOTER */
/* ----------------------------------- */

footer {
  padding-top: 40px;
  background: var(--background-dark);
  color: var(--text-light);
}

.footer-master-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-info p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.footer-logo-img {
    max-width: 160px;
    height: auto;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact-details .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95em;
}

.footer-contact-details .contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    margin-right: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.social-links a:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
}


.footer-bottom {
  padding: 15px 0;
  text-align: center;
  color: #888;
  font-size: 14px;
}


/* ----------------------------------- */
/* MEDIA QUERIES */
/* ----------------------------------- */

@media screen and (max-width: 900px) {
  body { overflow-x: hidden; }
  nav.desktop { display: none; }
  nav.mobile { display: block; }
  .telefone-header { display: none; }

  /* Home */
  .content-header .one { width: 100%; text-align: center; margin-top: 20px; }
  .content-header .two { display: none; }
  .content-header .one form input[type="email"] { width: 80%; margin-bottom: 10px; }
  .content-header .one form input[type="submit"] { width: 80%; }
  
  /* Sobre Teaser */
  .sobre-container { width: 100%; padding: 10px 0; }
  
  /* Diferenciais */
  section.diferenciais > .container {
    flex-direction: column;
    gap: 30px;
  }
  section.diferenciais h2 {
    order: -1;
  }
  .diferencial-single { 
    width: 100%; 
    min-width: 100%;
    max-width: 100%;
    float: none; 
    margin-bottom: 0; 
    padding: 0 10%;
  }
  .diferencial-single p { min-height: auto; }
  
  /* Produtos */
  .hamburgueres-grid { grid-template-columns: 1fr; }
  
  /* Contato */
  .contato-content { 
    grid-template-columns: 1fr; 
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-master-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-logo-img {
    margin: 0 auto 10px auto;
  }
  
  .footer-info, .footer-links, .footer-contact-details {
      text-align: center;
  }
  
  .footer-contact-details .contact-item {
      justify-content: center; 
  }
}