:root{
  --bg: #ffffff;              /* fundo branco */
  --card: #ffffff;            /* cards brancos */
  --alt: #f4f8ff;             /* azul claro de fundo alternado */
  --text: #0f2a44;            /* azul escuro (texto principal) */
  --muted: #5f7fa6;           /* azul acinzentado */
  --line: #dbe7f5;            /* linhas/bordas */
  --accent: #ffd200;          /* amarelo (botões) */
  --accent2: #2f80ed;         /* azul claro */
  --shadow: 0 10px 30px rgba(15,42,68,.08);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* ===============================
   Header / Topbar
   =============================== */

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;

  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(15,42,68,.06);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

/* Marca */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand__logo{
  width:40px;
  height:40px;
  border-radius:12px;

  display:grid;
  place-items:center;

  background: var(--alt);              /* azul claro */
  color: var(--accent2);               /* azul */
  font-weight:900;
  border:1px solid var(--line);
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand__text strong{
  color: var(--accent2);               /* azul */
  font-size:28px
}

.brand__text span{
  font-size:18px;
  color: var(--muted);
}

/* Navegação */
.nav{
  display:flex;
  gap:18px;
}

.nav a{
  font-size:20px;
  font-weight:600;
  color: var(--accent2);               /* azul */
}

.nav a:hover{
  text-decoration: underline;
}

/* Botão no header */
.topbar .btn--ghost{
  background: var(--accent);           /* amarelo */
  color: #3b2f00;
  border: none;
  font-weight:800;
  box-shadow: 0 6px 18px rgba(255,210,0,.35);
}

.topbar .btn--ghost:hover{
  filter: brightness(.95);
}




.btn{
  background: var(--accent);
  color: #3b2f00;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,210,0,.35);
}

.btn:hover{
  filter: brightness(.95);
}

.btn--secondary,
.btn--ghost{
  background: #ffffff;
  color: var(--accent2);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--full{width:100%;padding:14px;border-radius:14px}

.hero{padding:36px 0 22px}
.hero__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:start}
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;gap:18px}
  .nav{display:none}
}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size:12px;font-weight:600;
}
h1{font-size:40px;line-height:1.08;margin:12px 0 10px}

h1, h2, h3{
  color: var(--accent2);
}

.lead{color:var(--muted);font-size:16px;line-height:1.55;max-width:52ch}

.hero__cta{display:flex;gap:10px;align-items:center;margin:18px 0 14px}
.trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.trust__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding:10px 12px;border-radius:14px;
  min-width: 160px;
}
.trust__item span{display:block;color:var(--muted);font-size:12px;margin-top:2px}

.card{
  background: var(--card);
  border: none;
  box-shadow: var(--shadow);
}
.card h2{font-size:18px;margin:2px 0 6px}
.muted{color:var(--muted)}
.tiny{font-size:12px;line-height:1.45}
label{display:block;font-size:13px;font-weight:600;margin-top:10px}
input,select{
  width:100%;
  margin-top:6px;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline:none;
}
input::placeholder{color: rgba(169,183,214,.7)}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width: 520px){.grid2{grid-template-columns:1fr}}

.rangeRow{display:flex;justify-content:space-between;align-items:center;margin-top:8px}
.consent{
  display:flex;gap:10px;align-items:flex-start;
  font-weight:500;color:var(--muted);
  margin-top:12px;
}
.consent input{width:18px;height:18px;margin-top:3px}

.section{padding:34px 0}
.section--alt{background: var(--alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{margin:0 0 10px;font-size:26px}

.cards{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:14px
}
@media (max-width: 980px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 520px){.cards{grid-template-columns:1fr}}

.miniCard{
  background: var(--card);
  border: none;
  box-shadow: var(--shadow);
}
.miniCard h3{margin:0 0 6px;font-size:16px}
.miniCard p{margin:0 0 10px;color:var(--muted);font-size:13px;line-height:1.5}
.link{
  color: var(--accent2);
  border-bottom: 1px dashed rgba(47,128,237,.4);
}


.bullets{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
@media (max-width: 980px){.bullets{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 520px){.bullets{grid-template-columns:1fr}}
.bullet{
  background: var(--card);
  border: none;
  box-shadow: var(--shadow);
}
.bullet span{display:block;color:var(--muted);margin-top:6px;font-size:13px;line-height:1.5}


.miniCard,
.card,
.bullet{
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15,42,68,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover sutil (desktop) */
.miniCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15,42,68,.14);
}

.faq details{
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  padding:12px 14px;
  margin-top:10px;
}
.faq summary{cursor:pointer;font-weight:800}
.faq p{color:var(--muted);margin:10px 0 0;line-height:1.55}

.footer{padding:18px 0}
.footer__inner{
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
  color: var(--muted);
  border-top:1px solid var(--line);
  padding-top:14px;
}

.waFloat{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;

  width:60px;
  height:60px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#25D366;
  color:#fff;              /* <— o SVG usa currentColor */
  box-shadow: 0 16px 40px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.waFloat svg{
  width:34px;              /* <— tamanho ideal no círculo 60px */
  height:34px;
  display:block;
}

.waFloat:hover{
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(37,211,102,.55);
}

.planImg{
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* Carrossel */
.carousel{
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items:center;
  margin-top: 14px;
}

.viewport{
  overflow:hidden;
}

.track{
  --gap: 12px;
  display:flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform .45s ease;
}

/* Sempre 4 cards visíveis */
.track .miniCard{
  flex: 0 0 calc((100% - (3 * var(--gap))) / 4);
}

/* Botões */
.carBtn{
  width:44px;
  height:44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.carBtn:hover{
  background: rgba(255,255,255,.10);
}

/* Imagem do card (se já tiver, só garanta display:block) */
.planImg{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,.12);
  display:block;
}

/* Bloco SVG (para Maquinário/Náutico/Aeronaves) */
.planSvg{
  width:100%;
  height:140px;
  border-radius:12px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.92);
}
.planSvg svg{ width:72px; height:72px; display:block; }

#planos{
  margin-bottom: 180px;   /* aumente se quiser mais respiro */
}

.carousel{
  position: relative; /* garante contexto */
}

.carBtn{
  width:44px;
  height:44px;
  border-radius: 12px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: var(--accent);     /* amarelo */
  color: #3b2f00;                /* texto escuro */
  border: 1px solid rgba(59,47,0,.18);

  box-shadow: 0 6px 18px rgba(255,210,0,.35);
  cursor:pointer;

  /* garante que não fique atrás de nada */
  position: relative;
  z-index: 5;

  font-size: 26px;
  line-height: 1;
  user-select: none;
}

.carBtn:hover{
  filter: brightness(.95);
}

.carBtn:active{
  transform: translateY(1px);
}

/* Se o track estiver “por cima” por algum motivo, isso evita */
.viewport{
  position: relative;
  z-index: 1;
}

/* ===== Formulário: mais respiro interno ===== */

input,
select{
  width: 100%;
  margin-top: 6px;

  padding: 14px 16px;          /* 👈 mais espaço lateral */
  border-radius: 12px;

  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);

  font-size: 15px;
  line-height: 1.4;
}

textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}


label{
  margin-top: 14px;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: var(--accent2);        /* azul claro */
  box-shadow: 0 0 0 3px rgba(47,128,237,.15);
}


/* ===== Card do formulário: mais respiro interno ===== */

.card{
  background: #ffffff;
  border-radius: 20px;

  padding: 28px 28px 30px;   /* 👈 MAIS ESPAÇO NAS LATERAIS */
  
  box-shadow: 0 8px 24px rgba(15,42,68,.08);
}


.card h2{
  margin-top: 0;
  margin-bottom: 10px;
}

.card p{
  margin-bottom: 18px;
}


.card label{
  display: block;
}


@media (max-width: 520px){
  .card{
    padding: 22px 20px;
  }
}

/* ===== Seções em destaque (azul claro, cantos arredondados) ===== */

#beneficios,
#faq,
#politica{
  background: #f4f8ff;              /* azul claro */
  border-radius: 24px;              /* cantos arredondados */
  padding: 36px 32px;               /* respiro interno */
  margin: 40px auto;                /* separação do resto da página */
}

/* Limita largura para não ficar “esticado” */
#beneficios .container,
#faq .container,
#politica .container{
  padding: 0;                       /* evita padding duplicado */
}


#beneficios h2,
#faq h2,
#politica h2{
  margin-top: 0;
  margin-bottom: 24px;
}


#beneficios p,
#politica p{
  max-width: 900px;
}


#faq details{
  background: #ffffff;              /* branco sobre azul */
  border-radius: 16px;
  border: 1px solid var(--line);
}


@media (max-width: 520px){
  #beneficios,
  #faq,
  #politica{
    padding: 24px 20px;
    border-radius: 18px;
  }
}

/* ===== Botão "Simular" nos cards ===== */

.miniCard .link{
  display: inline-block;

  margin-top: 12px;
  padding: 10px 14px;

  background: var(--accent);        /* amarelo */
  color: #3b2f00;                   /* texto escuro */

  font-weight: 800;
  font-size: 14px;

  border-radius: 10px;
  border: none;

  box-shadow: 0 6px 18px rgba(255,210,0,.35);
  text-decoration: none;

  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.miniCard .link:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255,210,0,.45);
}

/* ===== Centralizar botão "Simular" no card ===== */

.miniCard{
  text-align: center;   /* centraliza o botão e mantém texto ok */
}

.miniCard .link{
  display: inline-block; /* necessário para centralizar */
  margin: 14px auto 0;   /* centralizado horizontalmente */
}


/* ===== Botão "Falar no WhatsApp" no mesmo padrão dos CTAs ===== */

.hero__cta #ctaWhats{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: var(--accent);        /* amarelo */
  color: #3b2f00;                   /* texto escuro */

  padding: 12px 18px;
  border-radius: 12px;

  font-weight: 800;
  font-size: 15px;

  border: none;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(255,210,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.hero__cta #ctaWhats:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255,210,0,.45);
}

/* ===== Hero Carousel (1 imagem por vez) ===== */

.heroCarousel{
  position: relative;
  width: 100%;
  max-width: 560px;          /* ajuste se quiser maior/menor */
  margin: 18px 0 16px;       /* espaçamento dentro do hero */
}

.heroViewport{
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15,42,68,.10);
}

.heroTrack{
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.heroSlide{
  width: 100%;
  flex: 0 0 100%;
  height: 240px;             /* ajuste conforme seu layout */
  object-fit: cover;
  display: block;
}

/* Botões de navegação (amarelo padrão) */
.heroCarBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 12px;

  background: var(--accent);
  color: #3b2f00;

  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,210,0,.35);
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: .95;
}

.heroCarBtn:hover{ filter: brightness(.95); }

#heroPrev{ left: 10px; }
#heroNext{ right: 10px; }

/* Dots */
.heroDots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.heroDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(47,128,237,.35);
  background: rgba(47,128,237,.10);
  cursor: pointer;
}

.heroDot.isActive{
  background: rgba(47,128,237,.75);
  border-color: rgba(47,128,237,.75);
}

/* Mobile: imagem um pouco menor */
@media (max-width: 520px){
  .heroSlide{ height: 200px; }
  .heroCarousel{ max-width: 100%; }
}

/* ===== FIX: Hero Carousel (garante 1 slide por vez e tamanho controlado) ===== */

.heroCarousel{
  width: 100%;
  max-width: 620px;      /* controla o tamanho no desktop */
  margin: 0 0 16px;
}

.heroViewport{
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15,42,68,.10);
}

/* IMPORTANTE: display:flex evita empilhar */
.heroTrack{
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
  transform: translateX(0);
  transition: transform .45s ease;
  will-change: transform;
}

/* Cada slide ocupa 100% do viewport */
.heroSlide{
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 413px;         /* altura fixa pra não “estourar” */
  object-fit: cover;
  display: block;
}

/* Botões */
.heroCarBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 12px;

  background: var(--accent);
  color: #3b2f00;
  border: none;

  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,210,0,.35);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroCarBtn:hover{ filter: brightness(.95); }

#heroPrev{ left: 10px; }
#heroNext{ right: 10px; }

/* Dots */
.heroDots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.heroDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(47,128,237,.35);
  background: rgba(47,128,237,.10);
  cursor: pointer;
}

.heroDot.isActive{
  background: rgba(47,128,237,.75);
  border-color: rgba(47,128,237,.75);
}

@media (max-width: 520px){
  .heroSlide{ height: 210px; }
  .heroCarousel{ max-width: 100%; }
}


/* ===== Logo Adriana Consórcio ===== */

.brand-logo{
  height: 80px;        /* tamanho ideal para header */
  width: auto;         /* mantém proporção */
  display: block;
}

/* Mobile: um pouco menor */
@media (max-width: 520px){
  .brand-logo{
    height: 34px;
  }
}
