@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'ABeeZee', sans-serif;
  font-weight: 400;
  background-color: #FFF2F1;
  /*#f2d8d7 outra opção de cor de fundo
  a que tava #FFF2F1*/
}


/* ===== HEADER BASE ===== */
.navegacao-responsivo {
  display: none;
}

.navegacao-responsivo.show-menu {
  display: block;
}
/* ===== HEADER DESKTOP ===== */

.navbar {
  width: 100%;
  height: 110px;
  background: #5a352b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.logo img {
  width: 200px;
  height: auto;
  display: block;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 1.5rem;
}

.nav-links a,
.dropbtn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8c97a;
  letter-spacing: 1px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #fff1b8;
}

.nav-links ul li:last-child a {
  border: 1px solid rgba(232, 201, 122, 0.5);
  padding: 12px 22px;
  border-radius: 30px;
  letter-spacing: 3px;
}

.nav-links ul li:last-child a:hover {
  background: rgba(232, 201, 122, 0.08);
  border-color: #e8c97a;
}

/* ===== DROPDOWN DESKTOP ===== */

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 38px;
  left: 0;
  min-width: 190px;
  background: rgba(75, 43, 36, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 201, 122, 0.18);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-content,
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
  display: block;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 13px;
  color: #e8c97a;
  position: relative;
}

.dropdown-content a:hover,
.dropdown-content a:focus-visible {
  background: rgba(232, 201, 122, 0.1);
  color: #fff1b8;
  padding-left: 20px;
}

/* ===== MOBILE BASE ===== */

.menu-responsivo {
  display: none;
}



.hero {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* imagem como background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* overlay continua igual */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(75, 43, 36, 0.35) 0%,
      rgba(75, 43, 36, 0.55) 45%,
      rgba(75, 43, 36, 0.62) 70%,
      rgba(244, 239, 233, 0.95) 100%
    ),
    linear-gradient(
      to right,
      rgba(75, 43, 36, 0.82) 0%,
      rgba(75, 43, 36, 0.58) 34%,
      rgba(75, 43, 36, 0.25) 70%,
      rgba(75, 43, 36, 0.15) 100%
    );
}

/* conteúdo por cima de tudo */
.hero-content {
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.location {
  display: block;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #f3d681;
  margin:35px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.92;
  color: #ffe59a;
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}

.hero h1 em {
  font-style: italic;
  display: inline-block;
  color: #ffe59a;
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 231, 166, 0.86);
  font-weight: 500;
  margin-bottom: 28px;
}

.btn-pedido {
  display: inline-block;
  background: #f7d982;
  color: #4b2b24;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  margin-left: 30px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 17px 36px;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.btn-pedido:hover {
  background: #ffe8a4;
  transform: translateY(-2px);
}



 /* MAIS VENDIDOS  */

.produtos-section {
  background: #f3eee8;
  padding: 70px 20px 55px;
  text-align: center;
}

.produtos-subtitulo {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 18px;
  color: #8b5e52;
  margin-bottom: 10px;
}

.produtos-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 48px);
  color: #4b2b24;
  margin-bottom: 35px;
  font-weight: 800;
}

.produtos-titulo em {
  font-style: italic;
  font-weight: 500;
}

.produtos-grid {
  width: min(100%, 780px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.produto-home {
  list-style: none;
}

.produto-home a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(212, 169, 88, 0.75);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(75, 43, 36, 0.12);
}

.produto-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.72) sepia(0.18);
  transform: scale(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.produto-home a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(75, 43, 36, 0.22);
  transition: opacity 0.4s ease;
}

.produto-home span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #f7d982;

  /* sombra atual */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);

  /* NOVO: contorno branco */
  -webkit-text-stroke: 0.6px rgba(255, 255, 255, 0.6);
}

.produto-home a:hover img,
.produto-home a:focus-visible img {
  filter: blur(0) brightness(1) sepia(0);
  transform: scale(1.1);
}

.produto-home a:hover::after,
.produto-home a:focus-visible::after {
  opacity: 0;
}

.produto-home a:focus-visible {
  outline: 3px solid #f7d982;
  outline-offset: 4px;
}

.produtos-info {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #8b5e52;
}


/* ########## SOBRE ########### */

.sobre-section {
  background: #f8f5f1;
  padding: 70px 20px 30px;
  text-align: center;
}

.sobre-subtitulo {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 18px;
  color: #8b5e52;
  margin-bottom: 16px;
}

.sobre-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 48px);
  color: #4b2b24;
  font-weight: 800;
  margin-bottom: 18px;
}

.sobre-titulo em {
  font-style: italic;
  font-weight: 500;
}

.sobre-linha {
  width: 55px;
  height: 1px;
  background: #d8a84f;
  margin: 0 auto 60px;
}

.sobre-texto {
  max-width: 960px;
  margin: 0 auto;
}

.sobre-texto p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.05;
  color: #432916;
  margin-bottom: 4px;
}

.sobre-divisor {
  max-width: 980px;
  height: 1px;
  background: rgba(75, 43, 36, 0.18);
  margin: 70px auto 45px;
}

.sobre-numeros {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sobre-numeros div {
  text-align: center;
}

.sobre-numeros dt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  color: #4b2b24;
  font-weight: 800;
  line-height: 1;
}

.sobre-numeros dd {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #8b5e52;
  margin-top: 4px;
}



/* ########## CURIOSIDADES  ########### */

.curiosidades-section {
  background: #5a352b;
  padding: 70px 20px 45px;
  text-align: center;
}

.curiosidades-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 7vw, 76px);
  color: #f7d982;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.curiosidades-linha {
  width: 88px;
  height: 2px;
  background: rgba(247, 217, 130, 0.55);
  margin: 0 auto 38px;
}

.curiosidades-intro {
  max-width: 1000px;
  margin: 0 auto 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.6;
  color: rgba(247, 217, 130, 0.72);
}

.comparativo {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: start;
  gap: 50px;
}

.comparativo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparativo-card img {
  width: min(190px, 60%);
  height: 190px;
  object-fit: contain;
  margin-bottom: 30px;
}

.comparativo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 34px);
  color: #f7d982;
  margin-bottom: 28px;
}

.comparativo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparativo-card li {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.7vw, 17px);
  line-height: 1.7;
  color: rgba(247, 217, 130, 0.75);
  margin-bottom: 10px;
}

.comparativo-divisor {
  width: 1px;
  height: 520px;
  background: rgba(247, 217, 130, 0.22);
  margin-top: 0;
}



/* ########## CONTATO ########### */

.contato-section {
  background: #f3eee8;
  padding: 75px 20px 35px;
  text-align: center;
}

.contato-subtitulo {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 18px;
  color: #8b5e52;
  margin-bottom: 14px;
}

.contato-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 52px);
  color: #4b2b24;
  font-weight: 800;
  margin-bottom: 18px;
}

.contato-titulo em {
  font-style: italic;
  font-weight: 500;
}

.contato-linha {
  width: 58px;
  height: 1px;
  background: #d8a84f;
  margin: 0 auto 60px;
}

.contato-cards {
  max-width: 760px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contato-card {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 35px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contato-card i {
  font-size: 28px;
  color: #5a352b;
  margin-bottom: 20px;
}

.contato-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #5a352b;
  margin-bottom: 12px;
}

.contato-card p,
.contato-card a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #9a766c;
  text-decoration: none;
}

.contato-card a:hover,
.contato-card a:focus-visible {
  color: #5a352b;
  text-decoration: underline;
}

.contato-botao {
  width: fit-content;
  margin: 0 auto 38px;
  background: #5a352b;
  color: #f7d982;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 20px 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: 0.3s ease;
}

.contato-botao:hover,
.contato-botao:focus-visible {
  background: #4b2b24;
  transform: translateY(-2px);
}

.revendedor-link {
  color: #8b5e52;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(139, 94, 82, 0.4);
}

.revendedor-link:hover,
.revendedor-link:focus-visible {
  color: #5a352b;
  border-color: #5a352b;
}


/* ########## FOOTER  ########### */
.footer {
  background: #5a352b;
  padding: 45px 20px 25px;
  text-align: center;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 85px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(247, 217, 130, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  transition: 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #f7d982;
  transform: translateY(-3px);
}

.footer-nav i {
  font-size: 25px;
}

.footer-linha {
  width: 58px;
  height: 1px;
  background: rgba(247, 217, 130, 0.35);
  margin: 38px auto 28px;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: rgba(247, 217, 130, 0.48);
}

.footer-copy a {
  color: rgba(247, 217, 130, 0.48);
  text-decoration: none;
  font-weight: 500;
}



/* ############## POLTICA DE PRIV ################# */

.lgpd-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

.lgpd-popup.ativo {
  display: flex;
}

.lgpd-card {
  position: relative;
  width: min(100%, 600px);
  background: #fffaf3;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}

.lgpd-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

/* ############## cookies ################# */

.cookies-popup,
.lgpd-popup {
  box-sizing: border-box;
  overflow: hidden;
}

.cookies-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

.cookies-popup.ativo {
  display: flex;
}

.cookies-card {
  width: min(100%, 560px);
  background: #fffaf3;
  border: 1px solid rgba(247, 217, 130, 0.65);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(90, 53, 43, 0.22);
}

.cookies-card h2 {
  font-family: 'Playfair Display', serif;
  color: #5a352b;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
}

.cookies-card p {
  font-family: 'Montserrat', sans-serif;
  color: #7d5f57;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cookies-botoes {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cookies-botoes button {
  background: #5a352b;
  color: #f7d982;
  border: 1px solid rgba(247, 217, 130, 0.65);
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.cookies-botoes button:hover {
  background: #4b2b24;
  color: #ffe8a4;
  transform: translateY(-2px);
}

/* animation */

/* ===== HERO - ENTRADA LATERAL SUAVE ===== */

.hero-content .location,
.hero-content .typewriter-title,
.hero-content p,
.hero-content .btn-pedido {
  opacity: 0;
  transform: translateX(-38px);
  animation: heroSlideIn 0.9s ease forwards;
}

.hero-content .location {
  animation-delay: 0.2s;
}

.hero-content .typewriter-title {
  animation-delay: 0.45s;
}

.hero-content p {
  animation-delay: 0.7s;
}

.hero-content .btn-pedido {
  animation-delay: 0.95s;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-38px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== HERO ENTRADA ===== */

.hero-content {
  animation: heroFade 1s ease forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== MAQUINA DE ESCREVER ===== */

.hero-title,
.hero-title em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  border-right: 3px solid #ffe69a00;
}

/* PRIMEIRA LINHA */

.hero-title {
  animation:
    typing1 1.3s steps(12) 0.5s forwards,
    blink 0.7s infinite;
}

/* SEGUNDA LINHA */

.hero-title em {
  animation:
    typing2 1.5s steps(11) 1.8s forwards,
    blink 0.7s infinite;
}

/* ANIMAÇÕES */

@keyframes typing1 {
  from {
    width: 0;
  }

  to {
    width: 9ch;
  }
}

@keyframes typing2 {
  from {
    width: 0;
  }

  to {
    width: 11ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.nav-links {
  opacity: 0;
  transform: translateY(12px);
  animation: navFade 0.8s ease forwards;
  animation-delay: 0.4s;
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ESTADO INICIAL ===== */

.produtos-subtitulo,
.produtos-titulo,
.produto-home {
  opacity: 0;
}

/* TITULO DIREITA */

.produtos-subtitulo.ativo {
  animation: direitaTitulo 1s ease forwards;
}

/* TITULO ESQUERDA */

.produtos-titulo.ativo {
  animation: esquerdaTitulo 1s ease forwards;
}

/* CARDS */

.produto-home.ativo {
  animation: subirCards 1s ease forwards;
}

/* DELAY FILEIRAS */

.produto-home:nth-child(1).ativo,
.produto-home:nth-child(2).ativo,
.produto-home:nth-child(3).ativo {
  animation-delay: 0.2s;
}

.produto-home:nth-child(4).ativo,
.produto-home:nth-child(5).ativo,
.produto-home:nth-child(6).ativo {
  animation-delay: 0.5s;
}

.produto-home:nth-child(7).ativo,
.produto-home:nth-child(8).ativo,
.produto-home:nth-child(9).ativo {
  animation-delay: 0.8s;
}

/* ===== ANIMAÇÕES ===== */

@keyframes direitaTitulo {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes esquerdaTitulo {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subirCards {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.produtos-info p {
  opacity: 0;
  transform: translateY(12px);
}

.produtos-info p.ativo {
  animation: navFade 0.8s ease forwards;
}

.produtos-info p:nth-child(1).ativo {
  animation-delay: 0.2s;
}

.produtos-info p:nth-child(2).ativo {
  animation-delay: 0.4s;
}

.produtos-info p:nth-child(3).ativo {
  animation-delay: 0.6s;
}

/* ===== SOBRE / CURIOSIDADES / CONTATO - ESTADO INICIAL ===== */

.sobre-subtitulo,
.sobre-titulo,
.sobre-texto p,
.sobre-numeros div,
.curiosidades-titulo,
.curiosidades-linha,
.curiosidades-intro,
.comparativo-card,
.comparativo-divisor,
.contato-subtitulo,
.contato-titulo,
.contato-card,
.contato-botao {
  opacity: 0;
}

/* ===== SOBRE ===== */

.sobre-subtitulo.ativo {
  animation: entraEsquerda 0.9s ease forwards;
}

.sobre-titulo.ativo {
  animation: entraDireita 0.9s ease forwards;
}

.sobre-texto p.ativo {
  animation: subirSuave 0.9s ease forwards;
}

.sobre-texto p:nth-child(1).ativo {
  animation-delay: 0.15s;
}

.sobre-texto p:nth-child(2).ativo {
  animation-delay: 0.35s;
}

.sobre-texto p:nth-child(3).ativo {
  animation-delay: 0.55s;
}

.sobre-numeros div.ativo {
  animation: descerSuave 0.9s ease forwards;
}

.sobre-numeros div:nth-child(1).ativo {
  animation-delay: 0.2s;
}

.sobre-numeros div:nth-child(2).ativo {
  animation-delay: 0.4s;
}

.sobre-numeros div:nth-child(3).ativo {
  animation-delay: 0.6s;
}

/* ===== CURIOSIDADES ===== */

.curiosidades-titulo.ativo,
.curiosidades-linha.ativo,
.curiosidades-intro.ativo,
.comparativo-card.ativo,
.comparativo-divisor.ativo {
  animation: subirSuave 0.9s ease forwards;
}

.curiosidades-linha.ativo {
  animation-delay: 0.15s;
}

.curiosidades-intro.ativo {
  animation-delay: 0.3s;
}

.comparativo-card:nth-of-type(1).ativo {
  animation-delay: 0.45s;
}

.comparativo-divisor.ativo {
  animation-delay: 0.6s;
}

.comparativo-card:nth-of-type(2).ativo {
  animation-delay: 0.75s;
}

/* ===== CONTATO ===== */

.contato-subtitulo.ativo {
  animation: entraEsquerda 0.9s ease forwards;
}

.contato-titulo.ativo {
  animation: entraDireita 0.9s ease forwards;
}

.contato-card.ativo,
.contato-botao.ativo {
  animation: subirSuave 0.9s ease forwards;
}

.contato-card:nth-child(1).ativo {
  animation-delay: 0.2s;
}

.contato-card:nth-child(2).ativo {
  animation-delay: 0.4s;
}

.contato-card:nth-child(3).ativo {
  animation-delay: 0.6s;
}

.contato-botao.ativo {
  animation-delay: 0.8s;
}

/* ===== ANIMAÇÕES GERAIS ===== */

@keyframes entraEsquerda {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes entraDireita {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subirSuave {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes descerSuave {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER ANIMATION ===== */

.footer {
  opacity: 0;
  transform: translateY(35px);
}

.footer.ativo {
  animation: footerSobe 0.9s ease forwards;
}

@keyframes footerSobe {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}