/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ================= VARIÁVEIS ================= */
:root{
  --bg-main:#070b12;
  --bg-glow:#0b1220;

  --primary:#3b82f6;
  --primary-strong:#2563eb;

  --text-main:#e5e7eb;
  --text-soft:#9ca3af;

  --border:rgba(255,255,255,.08);

  --radius:22px;
  --shadow:0 40px 80px rgba(0,0,0,.65);

  --max:1200px;

  /* novo: cor estilo “roxo/azul” do título de exemplo */
  --accent-soft:#9fa6ff;
  --accent-bg:rgba(120,90,255,.08);
}

/* ================= GLOBAL ================= */
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  background:var(--bg-main);
  color:var(--text-main);
}

a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto;
}

section{
  padding:120px 0;
}

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(7,11,18,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);

  width: 100%;
  overflow: hidden; /* ESSENCIAL */
}

.header-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= BRAND (FOCUS ALFA STYLE) ================= */
.header-brand{
  display: flex;
  align-items: center;
  gap: 4px; /* bem colado */
}

/* ÍCONE */
.header-brand img{
  width:30px;
  height: auto;
  display: block;
  flex-shrink: 0;

  filter: drop-shadow(0 0 12px rgba(59,130,246,.45));
}

/* RISCO ENTRE ÍCONE E TEXTO */
.brand-divider{
  width: 1px;
  height: 18px;
  margin-left: 10px;
  margin-right: 5px;
  background: rgba(255,255,255,.28);
}
/* TEXTO */
.brand-name{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-main);
  white-space: nowrap;
}

/* ================= NAV ================= */
.header-nav{
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.header-nav a{
  font-size: 14px;
  color: var(--text-soft);
  transition: color .2s ease;
  white-space: nowrap;
}

.header-nav a:hover{
  color: var(--text-main);
}

/* ================= MOBILE ================= */
@media (max-width: 900px){
  .header-nav{
    display: none;
  }
}

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px at 70% 40%, rgba(59,130,246,.15), transparent 60%),
    radial-gradient(500px at 30% 60%, rgba(37,99,235,.12), transparent 60%),
    linear-gradient(180deg,#05080f,#070b12);
  z-index:0;
}
.hero{
  position: relative;
  background: radial-gradient(
    circle at top left,
    #0b1220 0%,
    #05080f 60%,
    #020409 100%
  );
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(124,108,255,.15), transparent 55%);
  z-index: 0;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* ================= TEXTO HERO ================= */
.hero-text h1{
  font-size:clamp(36px,4vw,56px);
  line-height:1.1;
  margin-bottom:20px;
}

.hero-text p{
  max-width:520px;
  color:var(--text-soft);
  font-size:17px;
  line-height:1.6;
}

.hero-actions{
  margin-top:34px;
  display:flex;
  gap:16px;
}

/* ================= BOTÕES ================= */
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-strong));
  padding:14px 26px;
  border-radius:16px;
  font-weight:700;
  box-shadow:0 18px 40px rgba(59,130,246,.35);
}

.btn-outline{
  padding:14px 26px;
  border-radius:16px;
  border:1px solid var(--border);
  color:var(--text-soft);
}

/* ================= MOCKUPS HERO ================= */
.hero-mockups{
  position:relative;
  height:520px;
}

/* CASCO DO CELULAR (FIXO, NUNCA ANIMA) */
.phone{
  position:absolute;
  width:240px;
  aspect-ratio:9/19.5;
  background:#020617;
  border-radius:38px;
  padding:10px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);

  pointer-events:none;
  user-select:none;
  -webkit-user-select:none;
  -webkit-tap-highlight-color:transparent;
}

/* CONTEÚDO QUE FLUTUA (SÓ Y) */
.phone-float{
  width:100%;
  height:100%;
  border-radius:28px;
  overflow:hidden;
  animation: floatY 7s ease-in-out infinite;
  will-change: transform;
}

.phone img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:28px;
  display:block;
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}

/* POSIÇÕES FIXAS */
.phone-left{
  left:0;
  top:90px;
  transform:rotate(-6deg);
}

.phone-center{
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:270px;
  z-index:2;
}

.phone-right{
  right:0;
  top:100px;
  transform:rotate(6deg);
}

.phone-float img{
  transform: translateY(-8px);
}

/* FLOTAÇÃO (APENAS Y) */
@keyframes floatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* tempos diferentes */
.phone-left  .phone-float{ animation-delay:0s; }
.phone-center .phone-float{ animation-delay:1.6s; }
.phone-right .phone-float{ animation-delay:3.2s; }

/* ================= SECTION HEAD (título + texto gigante atrás) ================= */
.section-head{
  position:relative;
  max-width:900px;
  margin:0 auto 80px;
  text-align:center;
}

.section-bg{
  position:absolute;
  left:50%;
  top:-42px;
  transform:translateX(-50%);
  font-size:clamp(64px,12vw,140px);
  font-weight:800;
  letter-spacing:6px;
  color:var(--accent-bg);
  user-select:none;
  pointer-events:none;
  white-space:nowrap;
}

.section-title{
  font-size:clamp(30px,3.6vw,44px);
  margin-bottom:14px;
  position:relative;
  z-index:2;
}

.section-subtitle{
  max-width:760px;
  margin:0 auto;
  color:var(--accent-soft);
  opacity:.95;
  font-size:17px;
  line-height:1.65;
  position:relative;
  z-index:2;
}

/* ================= PARA QUEM É ================= */
.section-desc{
  max-width:700px;
  color:var(--text-soft);
  margin:0 auto 60px;
  text-align:center;
}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.audience-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.audience-card h3{
  margin-bottom:12px;
  font-size:18px;
}

.audience-card p{
  color:var(--text-soft);
  font-size:15px;
  line-height:1.7;
}
/* =========================
   AUDIENCE CARDS - PESO REAL
========================= */

.audience-card {
  background: linear-gradient(180deg, #0e1318, #0b0f14);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);

  /* sombra base (leve) */
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.03);

  /* animação */
  transition:
    transform 0.28s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;

  position: relative;
}

/* ===== HOVER: efeito de PESO ===== */
.audience-card:hover {
  /* empurra para baixo (peso) */
  transform: translateY(10px);

  /* sombra mais pesada e deslocada */
  box-shadow:
    0 18px 38px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);

  border-color: rgba(80,140,255,0.35);
}

/* =========================
   ANIMAÇÃO DE APARECIMENTO
========================= */

/* estado inicial (invisível) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.22,.61,.36,1);
}

/* quando entra em cena */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* delay progressivo para os cards */
.audience-card:nth-child(1) {
  transition-delay: 0.15s;
}
.audience-card:nth-child(2) {
  transition-delay: 0.3s;
}
.audience-card:nth-child(3) {
  transition-delay: 0.45s;
}

/* ================= ECOSSISTEMA / TIMELINE ================= */
.nutra-flow{
  position:relative;
  overflow:hidden;
}

.timeline{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:20px 0 10px;
}

/* linha no meio */
.timeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:2px;
  transform:translateX(-50%);
  background:linear-gradient(180deg, transparent, rgba(59,130,246,.95), transparent);
}

/* cada item: 2 colunas (esq/dir) */
.timeline-item{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  margin:110px 0;
}

/* bolinha */
.timeline-item .dot{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:14px;
  height:14px;
  border-radius:50%;
  background:#3b82f6;
  box-shadow:0 0 22px rgba(59,130,246,.55);
  z-index:5;
}

/* card */
.timeline-item .content{
  max-width:460px;
  padding:44px 40px 48px;
  border-radius:28px;

  background:
    radial-gradient(900px at 20% 10%, rgba(59,130,246,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  border:1px solid rgba(255,255,255,.10);

  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);

  position:relative;
}

.timeline-item .content h3{
  font-size:20px;
  margin-bottom:10px;
}

.timeline-item .content p{
  color:var(--text-soft);
  line-height:1.65;
  font-size:15px;
}

/* glow interno (para não parecer “jogado”) */
.timeline-item .content::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  background:radial-gradient(600px at 50% 20%, rgba(120,90,255,.10), transparent 60%);
  pointer-events:none;
}

/* glow embaixo do produto */
.timeline-item .content::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:34px;
  transform:translateX(-50%);
  width:220px;
  height:70px;
  background:radial-gradient(ellipse at center, rgba(59,130,246,.28), transparent 70%);
  filter:blur(18px);
  z-index:1;
}

/* imagem produto */
.timeline-item .content img{
  width:170px;
  display:block;
  margin:26px auto 0;
  position:relative;
  z-index:2;
  animation: floatProduct 7s ease-in-out infinite;
  filter:
    drop-shadow(0 25px 45px rgba(0,0,0,.60))
    drop-shadow(0 0 35px rgba(59,130,246,.25));
}

@keyframes floatProduct{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

/* alternância */
.timeline-item:nth-child(odd) .content{
  grid-column:1;
  justify-self:end;
  text-align:left;
}

.timeline-item:nth-child(even) .content{
  grid-column:2;
  justify-self:start;
  text-align:left;
}


/* =========================
   TIMELINE - ANIMAÇÃO LATERAL
========================= */

/* estado inicial */
.timeline-item.reveal-left,
.timeline-item.reveal-right {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1);
}

/* vem da esquerda */
.timeline-item.reveal-left {
  transform: translateX(-80px);
}

/* vem da direita */
.timeline-item.reveal-right {
  transform: translateX(80px);
}

/* ativo */
.timeline-item.active {
  opacity: 1;
  transform: translateX(0);
}
/* ================= FOOTER ================= */

.site-footer{
  background: radial-gradient(
    circle at top,
    #2a155a 0%,
    var(--footer-bg) 60%
  );
  color: var(--footer-text);
  padding: 80px 0 0;
  position: relative;
}

/* GRID */
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* BRAND */
.footer-logo{
  font-size: 22px;
  font-weight: 700;
  color: var(--footer-title);
  margin-bottom: 12px;
}

.footer-brand p{
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

/* COLUNAS */
.footer-col h4{
  font-size: 15px;
  color: var(--footer-title);
  margin-bottom: 18px;
}

.footer-col a{
  display: block;
  font-size: 14px;
  color: var(--footer-text);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-col a:hover{
  color: var(--footer-accent);
}

/* SEGURANÇA */
.security-badges{
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.security-badges img{
  height: 22px;
  opacity: .85;
}

.footer-small{
  font-size: 13px;
  line-height: 1.6;
  opacity: .85;
}

/* BARRA INFERIOR */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 60px;
  padding: 20px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-links{
  display: flex;
  gap: 10px;
}

.footer-links a{
  color: var(--footer-text);
  text-decoration: none;
}

.footer-links a:hover{
  color: var(--footer-accent);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 60px;
  padding: 20px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  font-size: 13px;
}

.footer-links{
  display: flex;
  gap: 10px;
}
@media(max-width: 768px){
  .footer-bottom{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom p{
    position: static;
    transform: none;
  }
}


/* RESPONSIVO */
@media(max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p{
    margin: 0 auto;
  }

  .security-badges{
    justify-content: center;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 10px;
  }
}

/* ================= RESPONSIVO ================= */
@media(max-width:1000px){
  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text p{
    margin:0 auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-mockups{
    margin-top:60px;
    height:460px;
  }

  .phone{ width:200px; }
  .phone-center{ width:230px; }

  .audience-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .header-nav{ display:none; }
}

/* timeline mobile */
@media(max-width:900px){
  section{ padding:90px 0; }

  .timeline::before{ left:18px; transform:none; }

  .timeline-item{
    grid-template-columns:1fr;
    gap:22px;
    padding-left:44px;
  }

  .timeline-item .dot{
    left:18px;
    top:50px;
    transform:translate(-50%,0);
  }

  .timeline-item .content{
    max-width:100%;
    justify-self:stretch !important;
  }

  .timeline-item:nth-child(odd) .content,
  .timeline-item:nth-child(even) .content{
    grid-column:1;
  }

  .timeline-item .content img{
    width:150px;
  }

  .section-bg{
    top:-30px;
    letter-spacing:3px;
  }
}
/* ================= PRODUTO 3D STACK ================= */

.product-3d{
  position:relative;
  width:260px;
  height:240px;
  margin:36px auto 0;
  pointer-events:none;
}


.product-3d .product{
  position:absolute;
  left:50%;
  top:55%;
  transform:translate(-50%,-50%);
}

/* FRASCO ATRÁS */
.product-3d .product.back{
  width:150px;
  filter: blur(6px);
  opacity:.65;
  transform:
    translate(-50%,-50%)
    scale(.9)
    translateY(18px);

  animation: backFloat 6.5s ease-in-out infinite;
}

/* CÁPSULA NA FRENTE */
.product-3d .product.front{
  width:110px;
  z-index:2;

  filter:
    blur(0)
    drop-shadow(0 25px 45px rgba(0,0,0,.55))
    drop-shadow(0 0 35px rgba(255,80,180,.45));

  animation: frontFloat 6.5s ease-in-out infinite;
}

/* ================= ANIMAÇÕES ================= */

/* frasco desfoca mais e volta */
@keyframes backFloat{
  0%{
    transform:translate(-50%,-50%) scale(.9) translateY(20px);
    filter:blur(7px);
    opacity:.55;
  }
  50%{
    transform:translate(-50%,-50%) scale(.95) translateY(6px);
    filter:blur(4px);
    opacity:.75;
  }
  100%{
    transform:translate(-50%,-50%) scale(.9) translateY(20px);
    filter:blur(7px);
    opacity:.55;
  }
}

/* cápsula vem pra frente, fica nítida e recua */
@keyframes frontFloat{
  0%{
    transform:translate(-50%,-50%) scale(1);
    filter:blur(0);
  }
  50%{
    transform:translate(-50%,-50%) scale(1.12) translateY(-14px);
    filter:blur(.3px);
  }
  100%{
    transform:translate(-50%,-50%) scale(1);
    filter:blur(0);
  }
}
.timeline-item .content{
  overflow: visible; /* ESSENCIAL para 3D */
}
/* =========================
   HOVER RÓTULO RENOVA FAMILY (DARK PREMIUM)
========================= */

.product-hover {
  position: relative;
  overflow: hidden;
}

/* IMAGEM DO FRASCO */
.product-image {
  transition: opacity .45s ease, transform .45s ease;
  z-index: 1;
}

/* RÓTULO */
.product-label {
  position: absolute;
  inset: 0;
  padding: 22px;
  border-radius: 18px;

  background:
    radial-gradient(
      circle at bottom,
      rgba(255,255,255,0.06),
      rgba(0,0,0,0.55)
    ),
    linear-gradient(
      160deg,
      #1b2746,
      #0b1224
    );

  backdrop-filter: blur(6px);

  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;

  display: flex;
  flex-direction: column;
justify-content: flex-start;
overflow-y: auto;


  font-size: 14px;
  color: #e5e9f0;
  z-index: 2;
}

/* TÍTULO */
.product-label h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
  color: #9fb6ff; /* azul premium */
}

/* PORÇÃO */
.product-label small {
  font-size: 12px;
  color: #aab2c8;
}

/* LISTA NUTRICIONAL */
.product-label ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.product-label li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;

  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
  font-size: 13px;
}


.product-label li span {
  color: #d2d7e4;
}

.product-label li strong {
  color: #ffffff;
  font-weight: 500;
}

/* OBSERVAÇÃO */
.product-label .obs {
  font-size: 11px;
  color: #9aa3bd;
  margin-top: 14px;
  line-height: 1.5;
}

/* HOVER */
.product-hover:hover .product-image {
  opacity: 0;
  transform: scale(0.95);
}

.product-hover:hover .product-label {
  opacity: 1;
  transform: translateY(0);
}
/* ================= FAQ (Dark Accordion) ================= */

.faq-section{
  padding: 90px 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.06), rgba(0,0,0,0.92)),
    linear-gradient(160deg, #0b1224, #070a12);
}

.faq-head{
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 24px;
}

.faq-col{
  display: grid;
  gap: 12px;
}

.faq-item{
  width: 100%;
  text-align: left;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 18px 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);

  color: #e5e9f0;
  font-size: 15px;
  line-height: 1.35;

  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.faq-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}

.faq-q{
  font-weight: 600;
}

/* ícone + / - */
.faq-icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
}

.faq-icon::before{
  width: 18px;
  height: 2px;
}

.faq-icon::after{
  width: 2px;
  height: 18px;
  transition: opacity .25s ease;
}

/* painel */
.faq-panel{
  padding: 14px 18px 18px;
  margin-top: -6px;

  border-radius: 14px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.05), rgba(0,0,0,0.35)),
    rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.10);
}

.faq-panel p{
  margin: 0;
  color: #aab2c8;
  line-height: 1.65;
  font-size: 14px;
}

/* estado aberto */
.faq-item.is-open{
  border-color: rgba(159,182,255,0.30);
  background: rgba(159,182,255,0.07);
}

.faq-item.is-open .faq-icon::after{
  opacity: 0; /* vira "-" */
}

/* responsivo */
@media (max-width: 900px){
  .faq-grid{
    grid-template-columns: 1fr;
  }
}
/* ================= GARANTIA (ALINHADA AO SITE) ================= */
.guarantee-section{
  padding: 120px 0;
  position: relative;


  overflow: hidden;
}

/* glow suave (igual hero/timeline) */
.guarantee-section::before{
  content:"";
  position:absolute;
  inset:-140px -140px auto -140px;
  height: 280px;

  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.14),
    transparent 65%
  );

  filter: blur(10px);
  pointer-events:none;
}

/* GRID */
.guarantee-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

/* SELO */
.guarantee-badge{
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-badge img{
  width: min(320px, 90%);
  height: auto;

  filter:
    drop-shadow(0 30px 55px rgba(0,0,0,.65))
    drop-shadow(0 0 35px rgba(2, 4, 7, 0.25));

  opacity: .95;
}

/* TEXTO */
.guarantee-content{
  position: relative;
}

.guarantee-bg{
  position: absolute;
  top: -34px;
  left: 0;

  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: .18em;
  font-weight: 800;

  color: rgba(255,255,255,0.04);

  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
}

.guarantee-title{
  margin: 0 0 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.guarantee-text{
  margin: 0;
  max-width: 640px;

  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}

.guarantee-text strong{
  color: var(--text-main);
}

/* AÇÕES */
.guarantee-actions{
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.guarantee-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;
  border-radius: 16px;

  font-size: 14px;
  font-weight: 600;

  color: var(--text-main);
  text-decoration: none;

  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.guarantee-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

/* CTA principal — MESMO PADRÃO DO SITE */
.guarantee-btn.primary{
  border: none;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-strong)
  );

  box-shadow: 0 20px 45px rgba(59,130,246,.35);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .guarantee-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-bg{
    left: 50%;
    transform: translateX(-50%);
  }

  .guarantee-actions{
    justify-content: center;
  }
}
/* ================= CONTATO ================= */

.contact-head{
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-grid{
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* card */
.contact-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 44px 32px;
  border-radius: 28px;

  /* FUNDO LIMPO, SEM BRILHO INTERNO */
  background: rgba(10,14,24,0.92);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 70px rgba(0,0,0,.6);

  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    border-color .35s ease;
}

/* hover com peso */
.contact-card:hover{
  transform: translateY(10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.08);
  border-color: rgba(59,130,246,.35);
}

/* ícone */
.contact-card img{
  width: 86px;
  height: auto;
  margin-bottom: 24px;

  filter:
    drop-shadow(0 20px 40px rgba(0,0,0,.6))
    drop-shadow(0 0 30px rgba(59,130,246,.25));
}

/* título */
.contact-card h3{
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text-main);
}

/* texto */
.contact-card p{
  font-size: 15px;
  color: var(--text-soft);
}

/* responsivo */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}
/* ================= SEÇÕES UNIFICADAS ================= */
.contact-section,
.payment-section{
  position: relative;
  padding: 120px 0;


  overflow: hidden;
}


.payment-content{
  text-align: center;
}

/* título */
.payment-title{
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 34px;
  letter-spacing: .02em;
}

/* bandeiras */
.payment-flags{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.payment-flags img{
  height: 28px;
  opacity: .65;
  filter: grayscale(1);

  transition:
    opacity .25s ease,
    filter .25s ease,
    transform .25s ease;
}

.payment-flags img:hover{
  opacity: .95;
  filter: grayscale(0);
  transform: translateY(-2px);
}

/* CTA */
.payment-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 38px;
  border-radius: 22px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #fff;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-strong)
  );

  box-shadow: 0 22px 50px rgba(59,130,246,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.payment-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(59,130,246,.55);
}

/* responsivo */
@media (max-width: 600px){
  .payment-title{
    font-size: 16px;
  }

  .payment-flags img{
    height: 24px;
  }
}

/* ================= QUEM SOMOS ================= */


/* wave colada no fundo */
.about-wave{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
}
.about-wave2{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
}
.about-wave2 svg{
  width: 200%;
  height: 130%;
  display: block;
  animation: aboutWaveMove 14s linear infinite;
}
.about-wave svg{
  width: 200%;
  height: 130%;
  display: block;
  animation: aboutWaveMove 14s linear infinite;
}

/* cor IDENTICA ao fundo */
.about-wave path{
  fill: linear-gradient; /* fallback */
  fill: #05080f; /* mesmo tom da transição */
}
.about-wave2 path{
  fill: linear-gradient; /* fallback */
  fill: #070b12; /* mesmo tom da transição */
}
/* animação leve */
@keyframes aboutWaveMove{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 768px){
  .about-wave{
    height: 80px;
  }
}

.about-section{
  position: relative;
  padding: 120px 0;

  background:

    linear-gradient(180deg, #05080f, var(--bg-main));

  overflow: hidden;
}



.about-content strong{
  color: var(--text-main);
}


/* ================= WAVE UP ================= */
.wave-up{
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;

  background: linear-gradient(
    180deg,
    var(--bg-main),
    #05080f
  );
}

.wave-up svg{
  width: 200%;
  height: 100%;
  display: block;
  animation: waveUpMove 16s linear infinite;
}

.wave-up path{
  fill: rgba(25, 17, 39, 0.22); /* roxo alinhado ao site */
}

/* movimento horizontal suave */
@keyframes waveUpMove{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 768px){
  .wave-up{
    height: 80px;
  }
}
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25D366, #1ebe5d);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  box-shadow:
    0 10px 25px rgba(37, 211, 102, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.whatsapp-float svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 16px 32px rgba(37, 211, 102, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* mobile */
@media (max-width: 768px){
  .whatsapp-float{
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg{
    width: 24px;
    height: 24px;
  }
}/* =========================================================
   QUEM SOMOS — ESTRUTURA GERAL
========================================================= */

#quem-somos{
  padding: 120px 0;
  position: relative;
}

#quem-somos .container{
  position: relative;
}

/* =========================================================
   CABEÇALHO
========================================================= */

#quem-somos .section-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

#quem-somos .section-bg{
  font-size: 64px;
  font-weight: 800;
  opacity: .05;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

#quem-somos .section-title{
  font-size: 38px;
  margin-bottom: 16px;
}

#quem-somos .section-subtitle{
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================================
   ZIGZAG
========================================================= */

#quem-somos .about-zigzag{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}

#quem-somos .about-zigzag.reverse .about-text{
  order: 2;
}

/* =========================================================
   TEXTO
========================================================= */

#quem-somos .about-text{
  max-width: 560px;
}

#quem-somos .about-text h3{
  font-size: 28px;
  margin-bottom: 16px;
}

#quem-somos .about-text p{
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 14px;
}

/* =========================================================
   VISUAL / MOCKUP
========================================================= */

#quem-somos .about-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* mockup */
#quem-somos .phone-mockup{
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #020617;
  padding: 10px;
  border-radius: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}

#quem-somos .phone-mockup img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

/* imagem simples do segundo bloco */
#quem-somos .about-image{
  width: 260px;
  filter:
    drop-shadow(0 30px 55px rgba(0,0,0,.55))
    drop-shadow(0 0 30px rgba(59,130,246,.25));
}

/* =========================================================
   CÁPSULAS — ÓRBITA REAL EM VOLTA DO MOCKUP
========================================================= */

#quem-somos .capsule-orbit{
  position: absolute;
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 3;
}

/* cápsula base */
#quem-somos .capsule{
  position: absolute;
  top: 50%;
  left: 50%;

  width: 26px;
  height: 46px;
  border-radius: 30px;

  background: linear-gradient(180deg, #ffb2ea, #ff4fa3);

  box-shadow:
    inset -3px -6px 12px rgba(255,255,255,.45),
    inset 3px 6px 10px rgba(255,0,120,.25),
    0 18px 40px rgba(255,0,120,.35);

  transform-origin: center -140px;
  animation: orbit 8s linear infinite;
}

/* profundidade */
#quem-somos .c-front{ animation-delay: 0s; }
#quem-somos .c-mid{ animation-delay: -2.6s; }
#quem-somos .c-back{ animation-delay: -5.2s; }

/* =========================================================
   ANIMAÇÃO ORBITAL
========================================================= */

@keyframes orbit{
  0%{
    transform: rotate(0deg) translateY(-140px) scale(1.15);
    opacity: 1;
    filter: blur(0);
    z-index: 4;
  }
  25%{
    transform: rotate(90deg) translateY(-140px) scale(.85);
    opacity: .7;
    filter: blur(1px);
  }
  50%{
    transform: rotate(180deg) translateY(-140px) scale(.55);
    opacity: .35;
    filter: blur(3px);
    z-index: 1;
  }
  75%{
    transform: rotate(270deg) translateY(-140px) scale(.8);
    opacity: .6;
    filter: blur(1.5px);
  }
  100%{
    transform: rotate(360deg) translateY(-140px) scale(1.15);
    opacity: 1;
    filter: blur(0);
    z-index: 4;
  }
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 900px){
  #quem-somos .about-zigzag{
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  #quem-somos .about-zigzag.reverse .about-text{
    order: 0;
  }

  #quem-somos .about-text{
    margin: 0 auto;
  }

  #quem-somos .capsule-orbit{
    width: 340px;
    height: 340px;
  }

  #quem-somos .capsule{
    transform-origin: center -115px;
  }

  #quem-somos .phone-mockup{
    width: 260px;
  }
}
