:root {
  --cream: #ece1c8;
  --orange: #d36e2c;
  --dkgreen: #2f5536;
  --gold: #dfbf6f;
  --brown: #835126;
  --green: #486f42;
  --white: #fdfaf5;
  --dark: #1a0f06;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, .section-title, .pkg-name {
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ═══════════════════════════════════════
   NAVBAR — imagem do hero como fundo,
   mesma posição da #hero para continuidade
   ═══════════════════════════════════════ */
nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 5%;
  height: 70px;

  /* ── mesma imagem do hero, mesma posição ── */
  background-image:
    /* gradiente escurecedor para garantir legibilidade */
    linear-gradient(
      to bottom,
      rgba(10,5,2,.82) 0%,
      rgba(10,5,2,.68) 100%
    ),
    url("./assets/img/header.jpg");
  background-size: cover;
  background-position: 70% top;   /* igual ao hero mobile */
  background-attachment: fixed;    /* parallax suave — navbar e hero compartilham a imagem */

  border-bottom: 1px solid rgba(223,191,111,.18);
  transition: height 0.3s, background-color 0.3s;
}

/* Ao rolar: fundo mais opaco, hero-image fica bem legível */
nav#navbar.scrolled {
  height: 58px;
  background-image:
    linear-gradient(rgba(8,3,1,.93), rgba(8,3,1,.93)),
    url("./assets/img/header.jpg");
  border-bottom-color: rgba(223,191,111,.25);
}

.nav-left { display: flex; align-items: center; flex-shrink: 0; }

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

/* links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(236,225,200,.65);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(223,191,111,.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--dkgreen);
  color: var(--cream);
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  border-radius: 50px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green); transform: scale(1.04); }

/* ─── HAMBURGER BUTTON ─── */
.nav-toggle {
  display: none;            /* oculto em desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(223,191,111,.1);
  border: 1px solid rgba(223,191,111,.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover {
  background: rgba(223,191,111,.18);
  border-color: rgba(223,191,111,.45);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
/* X aberto */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── DROPDOWN MOBILE ─── */
.nav-dropdown {
  display: none;
  position: fixed;          /* fixed em vez de absolute — sai de qualquer contexto */
  top: 70px;                /* igual à altura do navbar */
  left: 0; right: 0;
  z-index: 600;
  background-image:
    linear-gradient(rgba(6,2,1,.97), rgba(6,2,1,.97)),
    url("./assets/img/header.jpg");
  background-size: cover;
  background-position: 70% top;
  border-bottom: 1px solid rgba(223,191,111,.2);
  padding: 0.6rem 5% 1.2rem;
  flex-direction: column;
  gap: 0;
}
.nav-dropdown.open {
  display: flex;
  animation: ddSlide 0.22s ease both;
}

/* Quando navbar encolhe ao scrollar, dropdown acompanha */
#navbar.scrolled + .nav-dropdown {
  top: 58px;
}

.dd-link {
  color: rgba(236,225,200,.7);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid rgba(223,191,111,.08);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dd-link:last-of-type { border-bottom: none; }
.dd-link:hover {
  color: var(--gold);
  padding-left: 0.8rem;
}
.dd-link::before {
  content: "›";
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.dd-link:hover::before { opacity: 1; }

.dd-cta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--dkgreen);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(47,85,54,.3);
}
.dd-cta:hover { background: var(--green); transform: scale(1.02); }
.dd-cta svg {
  width: 18px; height: 18px; fill: white; flex-shrink: 0;
}

/* ─── RESPONSIVE: mostrar hamburger, esconder links e CTA ─── */
@media (max-width: 860px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("../img/top-site.jpg");
  background-position: 70% center;
  background-size: cover;
  background-attachment: fixed;   /* parallax com navbar */
  width: 100%;
  padding: 0 5%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.22) 100%),
    linear-gradient(to right, rgba(10,5,2,.70) 0%, rgba(10,5,2,.45) 45%, rgba(10,5,2,.10) 100%);
  backdrop-filter: brightness(0.78) contrast(1.05);
  -webkit-backdrop-filter: brightness(0.78) contrast(1.05);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(211,110,44,.22) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,85,54,.25) 0%, transparent 70%);
  bottom: -10%; right: -10%; pointer-events: none;
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%,100% { opacity:.6; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:1;  transform:translate(-50%,-50%) scale(1.1); }
}

.hero-badge {
  margin-top: 10px;
  margin-left:170px ;
  display: inline-block;
  background: rgba(223,191,111,.12);
  border: 1px solid rgba(223,191,111,.4);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600;
  text-align: center; letter-spacing: 0.2em;
  padding: 0.4rem 1.2rem; margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeDown 0.8s ease both;
}

.hero h1 {
  text-align: center;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.12;
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeDown 0.9s 0.1s ease both;
}
.hero h1 em {
  color: var(--white);
  font-family: "Montserrat", sans-serif !important;
  font-style: normal; font-weight: 500;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
  text-align: center;
  color: white;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeDown 1s 0.2s ease both;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  animation: fadeDown 1s 0.35s ease both;
}

.btn-primary {
  background: var(--dkgreen); color: #fff;
  border: none; padding: 1rem 2.4rem;
  font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: 1.05rem; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: left; gap: 0.3rem;
  border-radius: 50px; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%); transition: transform 0.3s; border-radius: 50px;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: scale(1.05); }

.btn-secondary {
  background: var(--brown); color: var(--cream);
  border: 2px solid var(--gold); padding: 1rem 2.4rem;
  font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: 1.05rem; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: left; gap: 0.3rem;
  border-radius: 50px; transition: all 0.25s;
}
.btn-secondary:hover { background: rgba(223,191,111,.12); transform: scale(1.05); }

.hero-micro {
  margin-top: 1.5rem; font-size: 0.8rem; color: white;
  text-align: center; letter-spacing: 0.1em;
  animation: fadeDown 1s 0.5s ease both;
}

.scroll-arrow {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite; color: var(--gold); font-size: 1.4rem; opacity: 0.6;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION COMMONS ─── */
section { padding: 5rem 5%; }

.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.8rem; display: block;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

.container { max-width: 1100px; margin: 0 auto; }

/* ─── BLOCO 2: PROBLEMA ─── */
#problema {
  background-color:#fffaea;
  background-size: cover; background-position: center;
}
#problema .section-title { color: var(--brown); text-align: left; }
#problema .section-label { text-align: left; color: var(--dkgreen); text-align: justify; line-height: 1.2; }

.section-label-prob {
  text-align: left;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: var(--dkgreen);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.pain-card {
  background: white;
  border-left: 4px solid var(--orange);
  padding: 1.4rem 1.2rem;
  box-shadow: 0 4px 20px rgba(131,81,38,.1);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}
.pain-card.visible { opacity: 1; transform: translateY(0); }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(131,81,38,.18); }
.pain-card .icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.pain-card p { font-size: 0.95rem; font-weight: 600; color: var(--brown); }

.problema-bottom {
  text-align: left; margin-top: 1rem;
  font-size: clamp(1.3rem, 2.5vw, 1.4rem);
  font-weight: 700; color: var(--brown);
}
.problema-bottom strong { color: var(--dkgreen); }

/* ─── BLOCO 3: SOLUÇÃO ─── */
#solucao {
  background: linear-gradient(135deg, var(--brown) 0%, #5a2e0e 100%);
  position: relative; overflow: hidden;
}
#solucao::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(223,191,111,.08) 0%, transparent 70%);
  pointer-events: none;
}

.redes-sociais {
  display: flex; gap: 1.5rem; margin-top: 1.5rem; border-radius: 10px; width: 450px;
}

.solucao-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 768px) {
  .solucao-grid { grid-template-columns: 1fr; gap: 2rem; }
  .problema-bottom {
    text-align: left; margin-top: 1.5rem;
    font-size: clamp(1.3rem,2.5vw,1.4rem);
    font-weight: 700; color: var(--cream);
  }
  .problema-bottom strong { color: var(--dkgreen); font-weight: 700; }
  .hero-badge {
    margin-top: 80px; display: inline-block;
    background: rgba(223,191,111,.12); border: 1px solid rgba(223,191,111,.4);
    margin-left: 20px; color: var(--gold);
    font-size: 0.78rem; font-weight: 600; text-align: center;
    letter-spacing: 0.2em; padding: 0.4rem 1.2rem; margin-bottom: 1rem;
    text-transform: uppercase; animation: fadeDown 0.8s ease both;
  }
  .pkg-list li::before { content: "✔"; color: #6abf72 !important; font-size: 0.75rem; }
}

.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(236,225,200,.1);
  font-size: 1.05rem; font-weight: 500;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.feature-list li.visible { opacity: 1; transform: translateX(0); }
.feature-list li .check {
  width: 22px; height: 22px; min-width: 22px; background: var(--dkgreen);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.75rem; margin-top: 0.1rem;
}

.phone-mockup { position: relative; display: flex; justify-content: left; }
.phone-body {
  width: 220px; background: linear-gradient(180deg,#1a1a1a 0%,#2d2d2d 100%);
  border-radius: 36px; padding: 1rem; border: 6px solid #333;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 0 0 2px #444; position: relative;
}
.phone-ring {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(223,191,111,.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.phone-ring2 {
  position: absolute; inset: -40px; border-radius: 50%;
  border: 1px solid rgba(223,191,111,.1);
  animation: ringPulse 3s 1s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { opacity:.3; transform:scale(1); }
  50%     { opacity:.8; transform:scale(1.02); }
}

/* ─── QUALIFICAÇÃO ─── */
#qualificacao {
  background-color: #1c120a;
  background-image:
    repeating-linear-gradient(37deg, transparent, transparent 18px, rgba(255,220,140,.025) 18px, rgba(255,220,140,.025) 19px),
    repeating-linear-gradient(-52deg, transparent, transparent 24px, rgba(255,200,100,.018) 24px, rgba(255,200,100,.018) 25px),
    repeating-linear-gradient(80deg, transparent, transparent 32px, rgba(200,150,60,.015) 32px, rgba(200,150,60,.015) 33px),
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(211,110,44,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(131,81,38,.18) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 55% 10%, rgba(223,191,111,.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 30% 85%, rgba(70,30,10,.25) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23c)' opacity='0.22'/%3E%3C/svg%3E");
  background-size: 100% 100%,100% 100%,100% 100%,cover,cover,cover,cover,400px 400px;
}
.qual-title { text-align: center; margin-bottom: 2.5rem; }
.qual-checks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; max-width: 800px; margin: 0 auto 2.5rem;
}
.qual-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.4rem;
  background: rgba(236,225,200,.04); border: 1px solid rgba(236,225,200,.1);
  cursor: pointer; transition: all 0.2s; user-select: none; border-radius: 12px;
}
.qual-item.checked { background: rgba(47,85,54,.2); border-color: var(--dkgreen); }
.qual-item .cb {
  width: 22px; height: 22px; min-width: 22px;
  border: 2px solid rgba(236,225,200,.3); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: all 0.2s;
}
.qual-item.checked .cb { background: var(--dkgreen); border-color: var(--dkgreen); }
.qual-result {
  text-align: center; padding: 1.5rem; font-size: 1.1rem; font-weight: 600;
  min-height: 60px; transition: all 0.3s;
}
.qual-result.positive { color: var(--gold); }
.qual-result.negative { color: rgba(236,225,200,.4); }

/* ─── POSICIONAMENTO ─── */
#posicionamento {
  margin-top: 20px; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-top: -30px; overflow: hidden;
   background-color: #fbf6ee;
  background-position: 70% center; width: 100%; padding: 0 5%;
}
#posicionamento .section-label {
  font-family: "Cinzel", sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: 0.25em; color: var(--dkgreen);
  text-transform: uppercase; margin-bottom: 0.8rem; display: block;
}
#posicionamento .section-title { color: var(--brown); font-size: clamp(1.6rem,4vw,2.8rem); text-align: left; }

.pos-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(223,191,111,.15);
  margin-top: 3rem; overflow: hidden;
}
@media (max-width: 768px) {
  .pos-cards { grid-template-columns: 1fr; }
  #posicionamento .section-label {
    margin-top: 20px; font-size: 1rem; font-weight: 700;
    letter-spacing: 0.25em; color: var(--dkgreen); text-transform: uppercase;
    margin-bottom: 0.8rem; display: block;
  }
}
.pos-card {
  background: var(--brown); padding: 2rem 1.8rem;
  position: relative; overflow: hidden; transition: background 0.3s; border-radius: 30px;
}
.pos-card:hover { background: #142a1a; color: var(--white); }
.pos-card .nope {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  color: rgba(255,189,34,.812); text-transform: uppercase;
  margin-bottom: 0.5rem; text-decoration: line-through;
}
.pos-card .sim {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--cream); text-transform: uppercase; margin-bottom: 0.8rem;
}
.pos-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--cream); line-height: 1.4; }
.pos-card::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--dark); transition: width 0.4s;
}
.pos-card:hover::after { width: 100%; }

.pos-cta {
  margin-top: 2.5rem; padding: 2rem;
  background: var(--brown); border-left: 4px solid var(--dkgreen); margin-bottom: 20px;
}

/* ─── RESULTADO ─── */
#resultado {
  position: relative; overflow: hidden; color: var(--dark);
  background-color: #fbf6ee;
}

#resultado::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(108deg, transparent 22%, rgba(255,245,210,.09) 36%, rgba(255,248,215,.14) 37.5%, rgba(255,240,200,.06) 39%, transparent 52%, rgba(255,235,195,.05) 65%, rgba(255,242,205,.08) 66.5%, transparent 78%),
    linear-gradient(180deg, rgba(255,248,220,.18) 0%, transparent 8%);
  pointer-events: none; z-index: 0;
}
#resultado .container { position: relative; z-index: 1; }
#resultado .section-label { color: var(--brown); text-transform: uppercase; letter-spacing: 0.22em; }

.resultado-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2.5rem;
}
@media (max-width: 768px) { .resultado-grid { grid-template-columns: 1fr; gap: 2rem; } }

.resultado-left h2 {
  font-family: "Montserrat", serif; font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: var(--brown); line-height: 1.25; margin-bottom: 1.4rem;
}
.resultado-left h2 em { color: var(--orange); font-style: normal; font-family: "Playfair", serif; }
.resultado-mini { display: flex; align-items: center; gap: 0.7rem; font-size: 1rem; color: var(--brown); font-weight: 600; margin-bottom: 1.8rem; }

.btn-resultado {
  background: var(--dkgreen); color: var(--cream); border: none;
  padding: 1rem 2.2rem; font-family: "Cinzel", sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block; border-radius: 6px; cursor: pointer;
  transition: background 0.25s, transform 0.2s; box-shadow: 2px 4px 14px rgba(47,85,54,.35);
}
.btn-resultado:hover { background: var(--green); transform: scale(1.04); }

.resultado-right { display: flex; flex-direction: column; gap: 1rem; }
.result-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.05rem; font-weight: 600; color: var(--brown);
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.result-item.visible { opacity: 1; transform: translateX(0); }
.result-circle {
  width: 36px; height: 36px; min-width: 36px; background: var(--dkgreen); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(47,85,54,.35);
}
.result-circle .check {
  width: 22px; height: 22px; min-width: 22px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.75rem;
}

/* ─── PACOTES ─── */
#pacotes {
  position: relative; overflow: hidden; background-color: #1c120a;
  background-image:
    repeating-linear-gradient(37deg, transparent, transparent 18px, rgba(255,220,140,.025) 18px, rgba(255,220,140,.025) 19px),
    repeating-linear-gradient(-52deg, transparent, transparent 24px, rgba(255,200,100,.018) 24px, rgba(255,200,100,.018) 25px),
    repeating-linear-gradient(80deg, transparent, transparent 32px, rgba(200,150,60,.015) 32px, rgba(200,150,60,.015) 33px),
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(211,110,44,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(131,81,38,.18) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 55% 10%, rgba(223,191,111,.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 30% 85%, rgba(70,30,10,.25) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23c)' opacity='0.22'/%3E%3C/svg%3E");
  background-size: 100% 100%,100% 100%,100% 100%,cover,cover,cover,cover,400px 400px;
}
#pacotes::before {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(0,0,0,.6), inset 0 0 40px rgba(0,0,0,.3);
  pointer-events: none; z-index: 0;
}
#pacotes::after {
  content: ""; position: absolute; top: -20%; left: -10%; width: 120%; height: 140%;
  background: linear-gradient(115deg, transparent 20%, rgba(255,220,150,.04) 38%, rgba(255,240,180,.07) 40%, rgba(255,220,150,.03) 42%, transparent 58%, rgba(255,210,130,.03) 72%, rgba(255,230,160,.05) 74%, transparent 90%);
  pointer-events: none; z-index: 0;
}
#pacotes .container { position: relative; z-index: 1; }
#pacotes .section-title { text-align: center; }
#pacotes .section-label { text-align: center; }

.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.pkg-card {
  position: relative; overflow: hidden; padding: 2.2rem 1.8rem;
  background: rgba(255,248,230,.06); backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,235,180,.18); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,240,190,.2), inset 0 -1px 0 rgba(0,0,0,.2);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.pkg-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,250,220,.07) 0%, transparent 100%);
  border-radius: 16px 16px 0 0; pointer-events: none;
}
.pkg-card.visible { opacity: 1; transform: translateY(0); }
.pkg-card:hover {
  border-color: rgba(223,191,111,.55);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 30px rgba(223,191,111,.12), inset 0 1px 0 rgba(255,240,190,.3);
  transform: translateY(-8px) !important;
}
.pkg-card.featured {
  border-color: rgba(211,110,44,.5); background: rgba(211,110,44,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 40px rgba(211,110,44,.15), inset 0 1px 0 rgba(255,200,130,.25);
}
.pkg-card.featured::after {
  content: "MAIS POPULAR"; position: absolute; top: 0; right: 0;
  background: var(--orange); color: #fff;
  font-family: "Oswald", sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; padding: 0.4rem 1rem; border-radius: 0 16px 0 12px;
}
.pkg-icon { font-size: 2rem; margin-bottom: 1rem; }
.pkg-name {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.4rem;
  letter-spacing: 0.1em; color: var(--orange); text-transform: uppercase;
}
.pkg-tag { font-size: 0.8rem; color: var(--gold); margin-bottom: 1.4rem; font-style: italic; }
.pkg-list { list-style: none; margin-bottom: 1.8rem; }
.pkg-list li {
  font-size: 0.9rem; color: rgba(236,225,200,.85); padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,235,180,.08);
  display: flex; align-items: center; gap: 0.6rem;
}
.pkg-list li::before { content: "✔"; color: #6abf72; font-size: 0.75rem; }

.pkg-btn {
  width: 100%; background: transparent; border: 2px solid currentColor;
  padding: 0.85rem; font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none; display: block; text-align: center;
  transition: all 0.25s; border-radius: 50px;
}
.pkg-btn.start    { color: var(--gold); }
.pkg-btn.start:hover { background: var(--gold); color: var(--dark); }
.pkg-btn.crescimento    { color: var(--orange); }
.pkg-btn.crescimento:hover { background: var(--orange); color: #fff; }
.pkg-btn.autoridade { color: var(--cream); border-color: var(--cream); background: var(--orange); }
.pkg-btn.autoridade:hover { background: #c05a1e; }
.pkg-btn.dominio    { color: var(--gold); }
.pkg-btn.dominio:hover { background: var(--gold); color: var(--dark); }

.pkg-card a{
  margin-top: 20px;
}
/* ─── CTA FINAL ─── */
#cta-final {
  background: linear-gradient(135deg, #1a0f06 0%, #1d3a22 50%, #1a0f06 100%);
  text-align: center; padding: 6rem 5%; position: relative; overflow: hidden;
}
#cta-final .section-title { font-size: clamp(2rem,5vw,4rem); color: var(--cream); position: relative; }
#cta-final .section-title em { color: var(--orange); font-style: normal; }
#cta-final p { position: relative; font-size: 1.1rem; color: rgba(236,225,200,.65); margin: 1.5rem 0 2.5rem; }

.btn-mega {
  background: var(--orange); color: #fff; border: none;
  padding: 1.3rem 3.2rem; font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: 1.3rem; letter-spacing: 0.12em; cursor: pointer;
  text-decoration: none; display: inline-block; position: relative;
  border-radius: 50px; transition: all 0.25s;
  animation: glowPulse 2.5s ease-in-out infinite;
}
.btn-mega:hover { background: #c05a1e; transform: scale(1.05); }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 20px rgba(211,110,44,.3); }
  50%     { box-shadow: 0 0 40px rgba(211,110,44,.6); }
}

.cta-micro { font-size: 0.8rem; color: rgba(236,225,200,.35); margin-top: 1rem; letter-spacing: 0.1em; position: relative; }

/* ─── FOOTER ─── */
footer {
  background: #0d0804; text-align: center; padding: 2rem;
  border-top: 1px solid rgba(223,191,111,.1);
  font-size: 0.8rem; color: rgba(236,225,200,.3); letter-spacing: 0.1em;
}
footer span { color: var(--orange); }
.site-rubi { margin-top: 20px; text-decoration: none; color: var(--orange); font-weight: 700; letter-spacing: 0.15em; }
.footer-regioes { margin-top: 20px; }
.logo-letra { font-family: "Cinzel", serif; font-weight: 500; font-size: 1rem; font-weight: bold; color: var(--orange); line-height: 1.2; }

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: #25d366; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waBounce 2s 3s ease-in-out 3;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes waBounce { 0%,100% { transform:scale(1); } 50% { transform:scale(1.15); } }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0; opacity: 0.3;
}

.section-label { font-family: "Oswald", sans-serif !important; }

@keyframes slideUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
#qual-wa-btn.show { animation: slideUp 0.4s ease both; }

@media (max-width: 600px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pos-cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

.footer-social { margin-top: .8rem; }
.footer-insta-link { color: inherit; text-decoration: none; opacity: .7; transition: opacity .2s; }
.footer-insta-link:hover { opacity: 1; }

.footer-dev { margin-top: .6rem; font-size: .75rem; opacity: .4; }
.footer-dev a { color: inherit; text-decoration: underline; }
.footer-dev a:hover { opacity: 1; }


/* ===== DEPOIMENTOS ===== */
.depo-slider{position:relative;max-width:760px;margin:0 auto;}
.depo-slide{display:none;text-align:center;}
.depo-slide.active{display:block;}
.depo-slide p{font-family:var(--fonte-display);font-size:1.5rem;font-weight:400;text-transform:none;line-height:1.4;color:var(--brown);}
.depo-slide .quote-mark{font-family:var(--fonte-display);font-size:3.5rem;color:var(--dkgreen);line-height:1;display:block;margin-bottom:8px;}
.depo-meta{margin-top:26px;display:flex;flex-direction:column;align-items:center;gap:2px;}
.depo-meta b{font-family:var(--fonte-corpo);}
.depo-meta span{font-size:.82rem;color:var(--cream);}
.depo-dots{display:flex;justify-content:center;gap:8px;margin-top:32px;}
.depo-dots button{width:8px;height:8px;border-radius:50%;background:var(--dark);}
.depo-dots button.active{background:var(--dkgreen);width:22px;border-radius:4px;}

.depo-slider img{ width:90%;height: auto; margin:0 auto;}
.pkg-img{ width:90%;height: auto; margin:0 auto;}