/* ==========================
   RESET & BASE
========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #fefaf5;
  color: #2d2d2d;
  overflow-x: hidden;
}

/* Links padrão */
a {
  color: inherit;
  text-decoration: none;
}

/* ==========================
   HEADER
========================== */

header {
  background: linear-gradient(90deg, #7a3405, #eea31b);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10%;
  position: sticky;
  top: 0;
  z-index: 50;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

header h1 {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffe4b8;
  transition: width 0.2s ease-out;
}

nav a:hover::after {
  width: 100%;
}

.btn-header {
  background: #2b0b00;
  border: none;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-header:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

/* ==========================
   HERO
========================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10%;
  gap: 40px;
  background: url("../img/thumb_entrega.jpg") center/cover no-repeat;
  color: #fffaf4;
  min-height: calc(100vh - 80px);
  position: relative;
}

/* leve vinheta para destacar o centro */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

/* Conteúdo fica acima da vinheta */
.hero > * {
  position: relative;
  z-index: 1;
}

/* CARD DO TEXTO */
.card-bg {
  background: rgba(35, 20, 10, 0.78);
  padding: 45px 55px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  flex: 1;
  max-width: 640px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.card-bg:hover {
  background: rgba(35, 20, 10, 0.84);
  transform: translateY(-2px);
}

.hero-content {
  text-align: left;
}

.hero h2 {
  font-family: "Merriweather", "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero .destaque {
  color: #eea31b;
}

.hero p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #f8f3ea;
}

/* BOTÕES DA HERO */
.botoes-acao {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.btn,
.btn-outline {
  border-radius: 999px;
  padding: 11px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: none;
}

.btn {
  background-color: #ffffff;
  color: #4b1800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn.destaque {
  background-color: #eea31b;
  color: #4b1800;
}

.btn-outline {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.btn:hover,
.btn-outline:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

/* MOLHO */
.hero h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffe6c3;
}

.molho-opcoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
}

.molho-opcoes button {
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(4px);
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.molho-opcoes button:hover {
  background-color: #eea31b;
  color: #4b1800;
  transform: translateY(-1px);
}

.hint {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* ==========================
   CARROSSEL HERO PROFISSIONAL
========================== */

.hero__image {
  flex: 1;
  max-width: 560px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.45);
}

.hero__image img#hero-main-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Botões do carrossel (setas) */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.hero-arrow--left {
  left: 16px;
}

.hero-arrow--right {
  right: 16px;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
}

/* Thumbnails */
.hero-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px 12px;
  background: rgba(0, 0, 0, 0.7);
}

.hero-thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-thumb.active {
  opacity: 1;
  border-color: #eea31b;
  transform: translateY(-2px);
}

/* ==========================
   MODAL MOLHO
========================== */

.molho-feedback {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.molho-feedback.show {
  display: flex;
}

.molho-feedback__box {
  background: #fffaf4;
  padding: 30px 28px 24px;
  border-radius: 18px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.molho-feedback__box h2 {
  color: #4b1800;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.molho-feedback__box p {
  color: #5a4631;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.molho-feedback__box button {
  border: none;
  background-color: #eea31b;
  padding: 8px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: #4b1800;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.molho-feedback__box button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* ==========================
   SESSÃO TIPOS / CARDS
========================== */

.tipos {
  text-align: center;
  padding: 60px 10% 80px;
  background-color: #fefaf5;
}

.tipos h2 {
  font-family: "Merriweather", serif;
  font-size: 1.9rem;
  margin-bottom: 24px;
  color: #4b1800;
}

.tipos .sub {
  color: #eea31b;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  padding: 16px 16px 18px;
  width: 290px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
  object-fit: cover;
}

.card h3 {
  font-size: 1.05rem;
  color: #3b1a07;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #5a4631;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

/* ==========================
   DESTAQUES - CARROSSEL HORIZONTAL
========================== */

.destaques-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.destaques-strip {
  flex: 1;
  overflow: hidden;
}

.destaques-strip .cards {
  flex-wrap: nowrap;
  display: flex;
  gap: 22px;
}

.destaques-strip .card {
  min-width: 260px;
  max-width: 280px;
}

.destaques-arrow {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: #4b1800;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.destaques-arrow:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

/* ==========================
   FOOTER COM TEXTURA
========================== */

footer {
  background: #1b0500 url("../img/textura_footer.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 22px 10px 18px;
  font-size: 0.85rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
  opacity: 0.95;
  z-index: 0;
}

footer p,
footer span {
  position: relative;
  z-index: 1;
}

footer span {
  display: block;
  margin-top: 4px;
  opacity: 0.9;
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 1200px) {
  .hero {
    padding: 40px 6%;
    gap: 30px;
  }

  .card-bg {
    padding: 38px 40px;
  }

  .hero h2 {
    font-size: 2.3rem;
  }

  .hero__image img#hero-main-image {
    height: 340px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 10px 6%;
  }

  nav {
    gap: 12px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 32px;
    padding: 40px 6% 60px;
  }

  .card-bg {
    text-align: center;
    margin: 0 auto;
    padding: 32px 26px;
  }

  .hero h2 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero__image {
    max-width: 420px;
  }

  .hero__image img#hero-main-image {
    height: 300px;
  }

  .botoes-acao {
    justify-content: center;
  }

  .molho-opcoes {
    justify-content: center;
  }

  .destaques-carousel {
    gap: 8px;
  }

  .destaques-strip .card {
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  header h1 {
    display: none;
  }

  nav a {
    display: none;
  }

  .btn-header {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h2 {
    font-size: 1.9rem;
  }

  .hero__image {
    max-width: 360px;
  }

  .hero__image img#hero-main-image {
    height: 260px;
  }

  .tipos {
    padding: 46px 6% 60px;
  }

  .cards {
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .destaques-arrow {
    display: none; /* em telas menores, deixa o scroll horizontal nativo */
  }

  .destaques-strip .cards {
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 28px 4% 48px;
  }

  .card-bg {
    padding: 26px 20px;
  }

  .hero h2 {
    font-size: 1.7rem;
  }

  .hero__image {
    max-width: 320px;
  }

  .hero__image img#hero-main-image {
    height: 220px;
  }
}

/* Fundo Marrom e Espaçamento */
.contato-area {
    background-color: #2b0b00 !important; 
    color: #fff !important;
    padding: 60px 10%;
    border-top: 4px solid #eea31b;
    width: 100%;
    display: block;
}

/* Colocar lado a lado */
.contato-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Visual das Caixinhas */
.contato-box {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.contato-box h3 {
    color: #eea31b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Caixa do Meio (Destaque) */
.destaque-box {
    background: rgba(238, 163, 27, 0.1);
    border: 2px solid #eea31b;
    transform: scale(1.05);
}

/* Responsivo (Celular) */
@media (max-width: 768px) {
    .destaque-box {
        transform: scale(1);
        order: -1; /* Joga o botão para cima no celular */
        margin-bottom: 20px;
    }
}

/* ============================================================
   TELA DE INTRODUÇÃO (PORTA MISTERIOSA)
============================================================ */
#intro-overlay {
    position: fixed;
    inset: 0;
    
    /* IDEIA: Fundo com a foto premium bem escura */
    /* O linear-gradient preto (rgba 0,0,0, 0.85) garante que o texto fique legível */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(20, 10, 0, 0.95)), url('../img/hero_parmegiana_premium.jpg');
    background-size: cover;
    background-position: center;
    
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.8s ease, transform 0.8s ease-in; /* Efeito de zoom ao entrar */
    padding: 20px;
}

/* Quando a classe 'fade-out' for adicionada via JS, ele dá um zoom e some */
#intro-overlay.fade-out {
    opacity: 0;
    transform: scale(1.1); /* Zoom dramático ao abrir */
    pointer-events: none;
}

.intro-content {
    max-width: 600px;
    color: #fff;
    animation: fadeInUp 1.2s ease; /* Texto sobe suavemente */
}

.intro-logo {
    width: 140px;
    margin-bottom: 35px;
    filter: drop-shadow(0 5px 15px rgba(238, 163, 27, 0.4)); /* Brilho dourado */
}

.intro-content h1 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    margin-bottom: 45px;
    color: #ffc15e;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-weight: 300; /* Fonte mais fina fica elegante */
}
.intro-content h1 strong {
    font-weight: 900; /* Destaca a "verdadeira crocância" */
}

#btn-entrar {
    background: transparent;
    border: 2px solid #ffc15e;
    color: #ffc15e;
    padding: 15px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 193, 94, 0.2);
}

#btn-entrar:hover {
    background: #ffc15e;
    color: #3b1600;
    box-shadow: 0 0 40px rgba(255, 193, 94, 0.6); /* Brilho forte */
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}