html {
    scroll-behavior: smooth;
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
}
  
header {
    background-color: #1f1f1f;
    color: #fff;
    padding: 20px 0;
}
  
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
  
header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}
  
nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}
  
.hero {
    position: relative;
    padding: 80px 20px;
    background-color: #000;
}
  
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/images/bg.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}
  
.hero > .container {
    position: relative;
    z-index: 2;
}
  
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
  
.hero-left {
    flex: 1;
    min-width: 280px;
    color: white;
}
  
.logo-hero {
    width: 180px;
    margin-bottom: 20px;
}
  
.hero-left h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}
  
.hero-left h2 span {
    color: #e63946;
    display: block;
}
  
.hero-left .botao {
    display: block;
    margin-bottom: 15px;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: bold;
    width: fit-content;
    text-decoration: none;
}
  
.botao.principal {
    background-color: #e63946;
    color: white;
    border: none;
}
  
.botao.secundario {
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    border: none;
}

.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  }
  
  .botao:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .botao.principal:hover {
    background-color: #ff7043; /* tom vibrante para principal */
    box-shadow: 0 0 10px rgba(255, 112, 67, 0.7);
  }

  .botao.secundario:hover {
    background-color: #1ebe5d; /* tom escuro do verde do WhatsApp */
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
  }
  
  .botao:active {
    transform: scale(0.95);
  }
  
  .botao i {
    font-size: 1.2em;
  }

.hero-right {
    flex: 1;
    min-width: 280px;
}
  
.hero-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    max-height: 420px;
    object-fit: cover;
}
  
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
  
    nav {
        margin-top: 10px;
    }
  
    nav a {
        display: block;
        margin: 10px 0;
    }
  
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
  
    .hero-left h2 {
        font-size: 28px;
    }
  
    .logo-hero {
        margin: 0 auto 20px;
    }
  
    .botao {
        width: 100%;
    }
}

.sobre-fundador {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.85);
  }
  
  .fundador-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .fundador-left {
    flex: 1;
    text-align: center;
  }
  
  .fundador-left img {
    margin-top: 50px;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
  }
  
  .fundador-left img:hover {
    transform: scale(1.05);
  }
  
  .fundador-right {
    flex: 1;
  }
  
  .fundador-right h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .fundador-right p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 600px;
    /* margin: auto; */
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .fundador-content {
      flex-direction: column;
      text-align: center;
    }
  
    .fundador-right h2 {
      font-size: 2.2rem;
    }
  
    .fundador-right p {
      font-size: 1.1rem;
      padding: 0 20px;
    }
  }

  .localizacao {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
  }
  
  .localizacao-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .localizacao-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .mapa {
    margin: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
  
  /* Responsivo */
  @media (max-width: 768px) {
    .localizacao-content h2 {
      font-size: 2rem;
    }
  
    .localizacao-content p {
      font-size: 1rem;
    }
  
    .mapa iframe {
      height: 300px;
    }
  }
  
footer {
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.cardapio {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0,0,0,0.85);
}

.cardapio .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
  
.cardapio h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #ffffff;
}
  
.cardapio-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
  
.cardapio-item {
    display: flex;
    align-items: center;
    /* background: #fff; */
    border-radius: 16px;
    box-shadow: none;
    padding: 24px 0;
    gap: 32px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    background: transparent;
}
  
.cardapio-item:hover {
    background: rgba(255,255,255,0.08);
    transform: scale(1.01);
}
  
.pizza-img {
    width: 300px;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
    background: #f5f5f5;
    aspect-ratio: 300 / 230;
}
  
.pizza-info {
    flex: 1;
    text-align: left;
}
  
.pizza-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 0.5px;
}
  
.pizza-info .descricao {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}
  
.pizza-info .preco {
    font-size: 1.1rem;
    color: #ffb300;
    font-weight: bold;
}
  
@media (max-width: 700px) {
    .cardapio-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
    .pizza-img {
        width: 100%;
        height: 180px;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
    .pizza-info {
        text-align: left;
        width: 100%;
    }
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}
  
/* Responsividade para ativar o botão */
@media (max-width: 768px) {
    .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 25px;
      z-index: 10;
    }
  
    nav {
      display: none;
      position: absolute;
      top: 70px;
      right: 20px;
      background: #1f1f1f;
      padding: 20px;
      border-radius: 8px;
      flex-direction: column;
      gap: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
  
    nav a {
      display: block;
      margin: 10px 0;
      font-size: 18px;
    }
  
    nav.active {
      display: contents;
    }
}

/* Estilos do Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.close {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.close:hover {
  color: #e63946;
  transition: color 0.3s;
}