:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5b677a;
  --line: rgba(15, 23, 42, .12);

  --primary:#0ea5e9;   /* azul/ciano clean */
  --primary2:#2563eb;  /* apoio */
  --soft:#f6f8fc;

  --radius:18px;
  --shadow: 0 14px 34px rgba(2, 6, 23, .10);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.topbar {
    background: #ffffff;
    color: #0a0a23;
    width: 100%;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 1000;
    border-radius: 0 0 20px 20px;
    margin: 0;
    position: relative;
    z-index: 10;
}

.topbar-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap; /* impede quebra */
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f1f40;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
    cursor: pointer;
    white-space: nowrap; /* impede quebrar o texto */
}

.topbar-item i {
    font-size: 20px;
    color: #0066FF;
}

.topbar-item:hover {
    color: #0066FF;
}

.topbar-item:hover i {
    color: #0066FF;
}

.topbar-lang {
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.topbar-social a {
    color: #0066FF;
    font-size: 20px;
    margin-left: 15px;
    transition: 0.2s;
}

.topbar-social a:hover {
    opacity: 0.7;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* se você quiser manter oculto no mobile, deixa assim:
@med


/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__logo{ height:65px; width:auto; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ font-size:14px; color:#fbfdff; opacity:.88; }
.nav a:hover{ opacity:1; }

.btn{
  border:1px solid transparent;
  border-radius:999px;
  padding:11px 14px;
  font-weight:600;
  font-size:14px;
  display:inline-flex; align-items:center; justify-content:center;
  transition: .2s ease;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  box-shadow: 0 10px 24px rgba(14,165,233,.18);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color:#fff;
}
.btn--ghost:hover{ background: rgba(255,255,255,.10); }
.btn--full{ width:100%; }

.section{ padding:56px 0; }

.section__head{ margin-bottom:16px; }
.section__head h2{ margin:0; font-size:26px; letter-spacing:-.02em; }
.section__head p{ margin:8px 0 0; color:var(--muted); }

/* Hero */
.hero{
  position:relative;
  min-height: 520px;
  display:grid;
  align-items:end;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.25), rgba(2,6,23,.72));
}
.hero__content{
  position:relative;
  padding: 78px 0 48px;
  color:#fff;
}
.breadcrumb{
  display:flex; gap:10px; align-items:center;
  font-size:12px;
  color: rgba(255,255,255,.82);
}
.breadcrumb strong{ color:#fff; font-weight:700; }

.hero h1{
  margin:14px 0 8px;
  font-size:44px;
  letter-spacing:-.03em;
  line-height:1.06;
}
.hero p{ margin:0; max-width:60ch; color: rgba(255,255,255,.82); }
.hero__chips{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:16px 0 22px;
}
.chip{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; }

@media (max-width: 768px) {
  .hero{
    min-height: auto; /* evita forçar altura errada */
    height: auto;
  }

  .hero__bg{
    object-fit: contain;      /* mostra a imagem inteira */
    object-position: center;  /* centraliza */
    transform: none;          /* remove zoom */
    background-color: #020617; /* evita “vazio” branco */
  }
}


/* Cards */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:white; line-height:1.55;}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.gallery img{
  border-radius: 16px;
  border:1px solid rgba(0,0,0,.06);
  aspect-ratio: 4/3;
  object-fit: cover;
  background:#eaeef6;
}

/* Split */
.split{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:start;
}
.bullets{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.bullet{
  background: #fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:14px;
}
.bullet h4{ margin:0 0 6px; font-size:13px;color:#020000 
}
.bullet p{ margin:0; color:#040404; font-size:13px; line-height:1.5; }

.pricebox{
  position:sticky;
  top:92px; 
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.pricebox h3{ margin:0 0 6px; }
.muted{ color: var(--muted); }
.tiny{ font-size:12px; }

.form{
  display:grid;
  gap:12px;
  margin-top:12px;
}
label{ display:grid; gap:6px; font-size:13px; font-weight:600; color:#f5f5f7; }
input, select, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:11px 12px;
  font: inherit;
  outline:none;
  background:#fff;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(14,165,233,.55);
  box-shadow: 0 0 0 4px rgba(14,165,233,.10);
}

/* ===== ROTEIRO / ACCORDION (clean + glass) ===== */
.accordion{
  background: rgba(255,255,255,0.08); /* transparente */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* botão do accordion */
.acc__btn{
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 0;

  background: transparent; /* tira o branco */
  cursor: pointer;

  font: 600 14px/1.4 Inter, system-ui;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: background .25s ease;
}

/* hover sutil */
.acc__btn:hover{
  background: rgba(255,255,255,0.06);
}

/* seta (visual clean) */
.acc__btn::after{
  content: "›";
  font-size: 20px;
  transform: rotate(90deg);
  opacity: .6;
  transition: transform .25s ease, opacity .25s ease;
}

/* quando aberto */
.acc__btn[aria-expanded="true"]::after{
  transform: rotate(-90deg);
  opacity: 1;
}

/* painel */
.acc__panel{
  display: none;
  padding: 0 18px 18px;

  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.6;
}

/* abre */
.acc__btn[aria-expanded="true"] + .acc__panel{
  display: block;
}

/* ===== FAQ (glass / clean) ===== */
.faq{
  display: grid;
  gap: 14px;
}

/* card */
.faq details{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  padding: 0;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* remove seta nativa */
.faq summary{
  list-style: none;
}
.faq summary::-webkit-details-marker{
  display: none;
}

/* header do FAQ */
.faq summary{
  padding: 16px 18px;
  cursor: pointer;

  font: 600 14px/1.4 Inter, system-ui;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: background .25s ease;
}

/* hover */
.faq summary:hover{
  background: rgba(255,255,255,0.06);
}

/* seta */
.faq summary::after{
  content: "›";
  font-size: 20px;
  transform: rotate(90deg);
  opacity: .6;
  transition: transform .25s ease, opacity .25s ease;
}

/* aberto */
.faq details[open] summary::after{
  transform: rotate(-90deg);
  opacity: 1;
}

/* conteúdo */
.faq details p{
  padding: 0 18px 18px;
  margin: 0;

  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.6;
}

/* estado fechado mais discreto */
.faq summary{
  opacity: .85;
}
.faq details[open] summary{
  opacity: 1;
}

/* ===== CTA FINAL (glass / premium) ===== */
/* ===== CTA FINAL (diferente do glass comum) ===== */
.cta{
  margin-top: 26px;
  position: relative;
  overflow: hidden;

  /* fundo mais “hero” */
  background:
    radial-gradient(900px 260px at 15% 10%, rgba(14,165,233,.35), transparent 60%),
    radial-gradient(700px 240px at 85% 90%, rgba(37,99,235,.28), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));

  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;

  padding: 26px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  box-shadow:
    0 18px 50px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

/* “brilho” decorativo */
.cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(14,165,233,.25), rgba(37,99,235,.25), rgba(14,165,233,.25));
  opacity: .22;
  filter: blur(14px);
  pointer-events:none;
}

/* faixa lateral (dá identidade) */
.cta::after{
  content:"";
  position:absolute;
  top:16px;
  bottom:16px;
  left:16px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0ea5e9, #2563eb);
  box-shadow: 0 0 18px rgba(14,165,233,.45);
  pointer-events:none;
}

/* bloco de texto */
.cta > div{
  position: relative;
  padding-left: 10px;
}

.cta h3{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta p{
  margin: 0;
  max-width: 52ch;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.5;
}

/* botão mais “call to action” */
.cta .btn{
  position: relative;
  white-space: nowrap;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;

  box-shadow:
    0 14px 30px rgba(14,165,233,.38),
    0 0 0 6px rgba(14,165,233,.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.cta .btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(14,165,233,.48),
    0 0 0 7px rgba(14,165,233,.12);
}

/* mobile */
@media (max-width: 768px){
  .cta{
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .cta::after{
    left: 14px;
  }
  .cta .btn{
    width: 100%;
    text-align: center;
  }
}


/* mobile */
@media (max-width: 768px){
  .cta{
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .cta .btn{
    width: 100%;
    text-align: center;
  }
}

/* ===== TABELA DE INFORMAÇÕES (clean / premium) ===== */
.info-table{
  margin-top: 22px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  overflow: hidden;
}

.section-title{
  text-align: center;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
}

/* linhas */
.info-row{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;

  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.info-row:last-child{
  border-bottom: none;
}

/* coluna esquerda */
.info-label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

/* coluna direita */
.info-value{
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

/* mobile */
@media (max-width: 640px){
  .info-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .info-label{
    font-size: 12px;
  }
}


/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:28px 0;
}
.footer__logo{ height:75px; width:auto; }
.footer__cols{
  display:flex; gap:40px;
}
.footer__cols h4{ margin:0 0 10px; }
.footer__cols a{ display:block; margin:8px 0; color:var(--muted); font-size:13px; }
.footer__cols a:hover{ color:#111827; }

.footer__bottom{
  border-top:1px solid var(--line);
  padding:12px 0;
}

/* Mobile CTA */
.mobile-cta{
  display:none;
  position:fixed;
  left:16px; right:16px; bottom:14px;
  border-radius: 999px;
  padding:14px 16px;
  text-align:center;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  font-weight:700;
  box-shadow: 0 14px 34px rgba(14,165,233,.22);
  z-index:60;
}

/* Responsive */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .bullets{ grid-template-columns: 1fr; }
  .pricebox{ position:relative; top:auto; }
  .cta{ flex-direction:column; align-items:flex-start; }
  .nav{ display:none; }
  .mobile-cta{ display:block; }
  .hero h1{ font-size:36px; }
}


/* ===== Carousel (1 imagem + botões) ===== */
.carousel{
  position: relative;
  border-radius: var(--radius);
}

.carousel__viewport{
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.10);
  background: #eaeef6;
  box-shadow: var(--shadow);
}

.carousel__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.carousel__track img{
  width: 100%;
  flex: 0 0 100%;
  height: clamp(240px, 45vw, 420px);
  object-fit: cover;
  display: block;
}

/* Botões */
.carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(15,23,42,.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.carousel__btn:hover{
  background: rgba(15,23,42,.55);
}

.carousel__btn span{
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.carousel__btn--prev{ left: 12px; }
.carousel__btn--next{ right: 12px; }

/* Bolinhas */
.carousel__dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.carousel__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.18);
  background: rgba(15,23,42,.12);
  cursor: pointer;
  transition: .2s ease;
}

.carousel__dot.is-active{
  width: 18px;
  background: rgba(14,165,233,.95);
  border-color: rgba(14,165,233,.95);
}

/* Responsivo */
@media (max-width: 980px){
  .carousel__track img{ height: 260px; }
  .carousel__btn{ width: 40px; height: 40px; }
}
