/* =========================
   Vibe | Base (consolidado)
   ========================= */

:root{
  --vibe-primary:#F03417;
  --vibe-black:#000;
  --vibe-accent:#17d3f0;
  --vibe-white:#fff;
  --vibe-gray:#f5f5f5;

  --text-muted:rgba(0,0,0,.66);
  --border-soft:rgba(0,0,0,.08);

  --radius-lg:18px;
  --radius-xl:24px;
  --shadow-sm:0 10px 28px rgba(0,0,0,.06);
  --shadow-md:0 18px 44px rgba(0,0,0,.10);
}

*{ margin:0; padding:0; box-sizing:border-box; }

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  background:var(--vibe-white);
  color:var(--vibe-black);
}

img{ max-width:100%; height:auto; }

 .container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
/* =========================
   Header (sticky + dropdown)
   ========================= */

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--vibe-white);
  border-bottom:1px solid #eee;
}

.header-content,
.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
height:64px;
}

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

/* Base de botÃµes (para header CTA e demais) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-weight:700;
  border-radius:999px;
  padding:12px 18px;
  font-size:15px;
  line-height:1;
}

.btn-primary{
    background:var(--vibe-primary);
  color:var(--vibe-white);
  border:none;
  padding:12px 18px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:transform .12s ease, box-shadow .12s ease;}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(240,52,23,.25);
}

.btn-secondary{
   background:transparent;
  color:var(--vibe-black);
  border:2px solid var(--vibe-black);
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease, color .12s ease;
}

.btn-secondary:hover{
  border-color:var(--vibe-primary);
  color:var(--vibe-primary);
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.header-cta{ margin-left:8px; }

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-link{
  text-decoration:none;
  color:var(--vibe-black);
  font-weight:500;
  padding:10px 10px;
  border-radius:10px;
}

.nav-link:hover{ color:var(--vibe-primary); }

.nav-link.active{
  color:var(--vibe-primary);
  font-weight:700;
}

/* Dropdown */
.nav-item{ position:relative; }

.dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  background:var(--vibe-white);
  border:1px solid #eee;
  border-radius:14px;
  padding:14px;
  min-width:280px;
  box-shadow:var(--shadow-sm);
  display:none;
  z-index:2000;
}

.nav-item:hover .dropdown{ display:block; }

.dropdown-group{ margin-bottom:12px; }
.dropdown-group:last-child{ margin-bottom:0; }

.dropdown-group strong{
  display:block;
  margin-bottom:8px;
  font-size:13px;
  font-weight:800;
  color:rgba(0,0,0,.86);
}

.dropdown a{
  display:block;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
  color:var(--vibe-black);
  font-size:14px;
}

.dropdown a:hover{
  color:var(--vibe-primary);
  background:rgba(0,0,0,.03);
}

/* =========================
   SeÃ§Ãµes / Tipografia
   ========================= */

.section{ padding:clamp(56px, 6vw, 96px) 20px; }
.section-light{ background:var(--vibe-gray); }

.section-title{
  font-size:clamp(28px, 3.8vw, 46px);
  font-weight:800;
  text-align:center;
  letter-spacing:-.5px;
  margin-bottom:12px;
}

.section-subtitle{
  text-align:center;
  margin-bottom:34px;
  color:var(--text-muted);
  line-height:1.6;
}

.section-head{ max-width:900px; margin:0 auto 18px; }
.section-head--center{ text-align:center; }

.section-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================
   Hero (tipografia correta)
   ========================= */

.hero{ padding:60px 0 90px; }

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:10px;
  align-items:center;
}

.hero-text{ max-width:560px; }

.hero-text h1{
  font-size:53px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-1px;
  margin-bottom:18px;
  color:var(--vibe-black);
}

.hero-text h1 .highlight{
	font-family: 'Playfair Display', serif;
  color:var(--vibe-primary);
  font-style:italic;
  font-weight:900;
   font-size: 1.1em;
}

.hero-description{
  color:var(--text-muted);
  line-height:1.6;
  margin-bottom:18px;
}

/* Linha de confianÃ§a (26 destinos etc) */
.hero-trust{
  font-size:15px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(0,0,0,.58);
  margin:22px 0 26px;
  line-height:1.8;
}

.hero-trust strong{
  color:var(--vibe-black);
  font-weight:900;
}

.dot{
  color:var(--vibe-black);
  margin:0 10px;
  font-size:14px;
  vertical-align:middle;
}

.button-group{ display:flex; gap:12px; flex-wrap:wrap; }

.hero-image-container{
  width:100%;
  height:550px;
  border-radius:12px;
  overflow:hidden;
  background:var(--vibe-gray);
  box-shadow:0 25px 50px -12px rgba(0,0,0,.15);
}

.hero-main-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  display:block;
}

/* =========================
   Cards / Grids
   ========================= */

.card{
  background:var(--vibe-white);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-xl);
  padding:22px;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
  transition:transform .12s ease, box-shadow .12s ease;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.card h3{ margin-bottom:8px; font-size:18px; }
.card p{ color:var(--text-muted); line-height:1.6; }

/* Cards com imagem (Home) */
.card > img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:14px;
}

.card-content h3{ font-size:18px; font-weight:900; }

/* Blog (Home) */
.post-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:var(--radius-xl);
  padding:20px;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:210px;
}

.post-meta{ display:flex; justify-content:space-between; align-items:center; }
.post-date{ font-size:12px; font-weight:900; letter-spacing:.6px; text-transform:uppercase; color:rgba(0,0,0,.55); }

.post-title{ margin:0; font-size:18px; line-height:1.25; letter-spacing:-.3px; }
.post-title a{ color:var(--vibe-black); text-decoration:none; }
.post-title a:hover{ color:var(--vibe-primary); }

.post-excerpt{ color:var(--text-muted); line-height:1.6; margin:0; }
.post-cta{ margin-top:auto; }

/* Skeleton */
.post-card--skeleton{ pointer-events:none; }
.sk-line{
  height:12px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(0,0,0,.06), rgba(0,0,0,.12), rgba(0,0,0,.06));
  background-size:200% 100%;
  animation:sk 1.2s ease-in-out infinite;
}
.sk-w40{ width:40%; }
.sk-w60{ width:60%; }
.sk-w70{ width:70%; }
.sk-w90{ width:90%; }
@keyframes sk{ 0%{ background-position:0% 0; } 100%{ background-position:-200% 0; } }

/* Instagram (Elfsight) */
.insta-shell{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:var(--radius-xl);
  padding:18px;
  box-shadow:var(--shadow-sm);
}

.insta-fallback{
  text-align:center;
  color:var(--text-muted);
  line-height:1.6;
  padding:22px 10px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:28px;
}

/* =========================
   CTA Final
   ========================= */

.cta-final{
  background:var(--vibe-primary);
  color:var(--vibe-white);
  text-align:center;
  padding:80px 20px;
}

.cta-final h2{
  font-size:34px;
  font-weight:900;
  letter-spacing:-.5px;
  margin-bottom:18px;
}

.btn-large{ font-size:18px; padding:16px 26px; }


/* =========================
   Footer (NOVO â€” alinhado ao footer.ejs atual)
   ========================= */
.footer{
  background:var(--vibe-black);
  color:var(--vibe-white);
  padding:64px 0 24px;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:34px;
  align-items:start;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.footer-logo{
  max-width:75px;
  width:75px;
  height:auto;
  margin-bottom:12px;
}

.footer-brand p{
  color:rgba(255,255,255,.78);
  line-height:1.6;
  font-size:14px;
  max-width:320px;
}

.footer-col h4{
  margin-bottom:12px;
  font-size:16px;
  font-weight:900;
  color:#fff;
}

.footer-col a,
.footer-col p{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.7;
}

.footer-col a{
  display:block;
  text-decoration:none;
  margin-bottom:8px;
}

.footer-col a:hover{
  color:var(--vibe-primary);
}

.footer-certs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 12px;
}

.footer-certs img{
  height:50px;
  width:auto;
  display:block;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  padding:6px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:26px;
  padding-top:16px;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.6);
}

@media (max-width:980px){
  .footer-inner{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:560px){
  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-certs{ justify-content:center; }
}

@media (max-width: 768px) {
    .footer-certs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Isso é o que vai forçar a centralização no mobile */
        gap: 10px; /* Espaço um pouco menor entre as imagens para caber na tela */
        padding: 0 15px; /* Uma margem de segurança nas laterais da tela */
    }

    /* Os 3 primeiros selos (redondos) na primeira linha */
    .footer-certs img:nth-child(-n+3) {
        width: 45%; /* Garante que os 3 caibam lado a lado na mesma linha */
        max-width: 70px; /* Limita o tamanho para não estourar a tela do celular */
        height: 70px;
    }

    /* Força a quebra de linha após o 3º selo (garantia extra para o mobile) */
    .footer-certs img:nth-child(3):after {
        content: "";
        flex-basis: 100%;
        width: 0;
        height: 0;
    }

    /* Os 2 últimos selos (retangulares) na linha de baixo */
    .footer-certs img:nth-child(n+4) {
        width: 45%; /* Como são apenas 2, eles podem ser mais larguinhos */
        max-width: 120px; /* Limite ajustado para a tela pequena */
        margin-top: 10px; /* Dá um respiro entre a linha de cima e a de baixo */
    }
}
/* =========================
   Testimonials (t-layout)
   ========================= */

.t-layout{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:22px;
  align-items:start;
}

.t-featured{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-sm);
  min-height:320px;
}

.t-badge{
  display:inline-block;
  background:var(--vibe-primary);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:14px;
}

.t-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.t-person{ display:flex; align-items:center; gap:12px; min-width:0; }

.t-avatar{
  width:62px;
  height:62px;
  border-radius:999px;
  object-fit:cover;
  border:3px solid rgba(240,52,23,.22);
  flex:0 0 auto;
  background:#fff;
}

.t-avatar--fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  width:62px;
  height:62px;
  border-radius:999px;
  font-weight:900;
  background:rgba(240,52,23,.10);
  color:var(--vibe-primary);
}

.t-name{ font-size:20px; font-weight:900; line-height:1.1; }

.t-stars{ display:flex; align-items:center; gap:10px; margin-top:6px; }
.t-stars__icons{ color:var(--vibe-primary); letter-spacing:2px; font-size:15px; }
.t-stars__score{ font-weight:800; color:rgba(0,0,0,.65); }

.t-text{
  font-size:16px;
  line-height:1.6;
  color:rgba(0,0,0,.78);
  margin:10px 0 16px;
}

.t-link{
  display:inline-block;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.10);
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  color:rgba(0,0,0,.82);
}

.t-link:hover{ border-color:rgba(240,52,23,.35); color:var(--vibe-primary); }

.t-actions{ display:flex; gap:8px; }

.t-nav{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font-size:22px;
  cursor:pointer;
}

.t-nav:hover{ border-color:rgba(240,52,23,.35); color:var(--vibe-primary); }

.t-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.t-mini{
  text-align:left;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 20px rgba(0,0,0,.05);
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease;
  height:150px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.t-mini:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(0,0,0,.08); }

.t-mini__top{ display:flex; gap:10px; align-items:center; margin-bottom:10px; }

.t-mini__avatar{
  width:40px;
  height:40px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(240,52,23,.18);
  flex:0 0 auto;
  background:#fff;
}

.t-mini__name{ font-weight:900; line-height:1.1; }

.t-mini__stars{ color:var(--vibe-primary); letter-spacing:1px; font-size:12px; }
.t-mini__stars span{ color:rgba(0,0,0,.55); letter-spacing:0; margin-left:6px; font-weight:800; }

.t-mini__text{
  color:rgba(0,0,0,.72);
  font-size:13.5px;
  line-height:1.4;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* =========================
   Programas | Marketplace
   ========================= */

.catalog-filters{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:26px 0 34px;
}

.catalog-search{
  width:100%;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
}

.catalog-search:focus{
  border-color:rgba(240,52,23,.35);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.chip-row{ display:flex; gap:10px; flex-wrap:wrap; }

.chip{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:700;
  cursor:pointer;
}

.chip.is-active{
  border-color:rgba(240,52,23,.35);
  background:rgba(240,52,23,.06);
}

.catalog-section{ margin:28px 0 44px; }
.catalog-head{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:14px; gap:16px; }
.catalog-title{ margin:0; font-size:22px; font-weight:900; }
.catalog-sub{ margin:6px 0 0; color:rgba(0,0,0,.62); }

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.product-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:240px;
  transition:transform .12s ease, box-shadow .12s ease;
}

.product-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }

.product-badge{
  display:inline-block;
  font-size:10px;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(23,211,240,.12);
  color:rgba(0,0,0,.75);
  margin-bottom:10px;
}

.product-name{ margin:0 0 8px; font-size:18px; font-weight:900; }
.product-forwho{ margin:0; color:rgba(0,0,0,.70); line-height:1.5; }

.product-meta{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }

.meta-pill{
  width:max-content;
  font-size:10px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.04);
  color:rgba(0,0,0,.75);
}

.tag-row{ display:flex; gap:8px; flex-wrap:wrap; }

.tag{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  color:rgba(0,0,0,.70);
}

.product-actions{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; }
.product-actions .btn-primary,
.product-actions .btn-secondary{ padding:12px 16px; border-radius:999px; }

/* =========================
   Responsivo (mantÃ©m menu visÃ­vel)
   ========================= */

@media (max-width:980px){
  .t-layout{ grid-template-columns:1fr; }
}

@media (max-width:900px){
  .grid-3,.grid-4{ grid-template-columns:1fr 1fr; }
  .catalog-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }

  /* NÃ£o some o menu: deixa â€œok por enquantoâ€ */
  .header-content,
  .header-inner{
  display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
height:64px;
  }

  .nav{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
  }

  .header-cta{
    margin-left:0;
  }

  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-text{ max-width:100%; margin:0 auto; }
  .button-group{ justify-content:center; }
  .hero-image-container{ height:360px; }
}

@media (max-width:560px){
  .grid-3,.grid-4{ grid-template-columns:1fr; }
  .catalog-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .t-grid{ grid-template-columns:1fr; }

  .hero-text h1{ font-size:38px; }
  .button-group{ flex-direction:column; }
}
/* =========================
   Programa (detalhe) â€” Apple-like
   ========================= */

.p-hero{
  padding: 64px 0 36px;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));
}

.p-hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start;
}

.p-eyebrow{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .4px;
}

.p-title{
  margin-top: 14px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 900;
}

.p-subtitle{
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.70);
  max-width: 62ch;
}

.p-meta{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}

.p-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  font-size: 13px;
  color: rgba(0,0,0,.78);
}

.p-pill--soft{
  background: rgba(240,52,23,.06);
}

.p-cta-row{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

.p-trustline{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}

.p-hero-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 92px;
}

.p-card-title{
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.p-check{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.p-check li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  line-height: 1.45;
  color: rgba(0,0,0,.78);
  font-size: 14px;
}

.p-check li span{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(23,211,240,.12);
  font-weight: 900;
}

.p-mini{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.p-mini-label{
  font-size: 12px;
  font-weight: 900;
  color: rgba(0,0,0,.62);
  margin-bottom: 6px;
}

.p-mini-text{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,.78);
}

.p-grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.p-block{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

.p-h2{
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}

.p-bullets{
  margin:0;
  padding-left: 18px;
  color: rgba(0,0,0,.74);
  line-height: 1.7;
}

.p-steps{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.p-step{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.02);
}

.p-step-title{
  font-weight: 900;
  margin-bottom: 6px;
}

.p-step-desc{
  color: rgba(0,0,0,.70);
  line-height: 1.6;
  font-size: 14px;
}

.p-divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 18px 0;
}

.p-timeline{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.p-time{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
}

.p-time-t{
  min-width: 88px;
  font-weight: 900;
}

.p-time-d{
  color: rgba(0,0,0,.70);
  line-height: 1.6;
  font-size: 14px;
}

.p-faq{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.p-faq-item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 12px;
  background:#fff;
}

.p-faq-item summary{
  cursor:pointer;
  font-weight: 900;
}

.p-faq-a{
  margin-top: 10px;
  color: rgba(0,0,0,.70);
  line-height: 1.6;
  font-size: 14px;
}

.p-cta-bar{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(240,52,23,.06);
}

.p-cta-title{
  font-weight: 900;
  margin-bottom: 6px;
}

.p-cta-sub{
  color: rgba(0,0,0,.70);
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 980px){
  .p-hero-grid{ grid-template-columns: 1fr; }
  .p-hero-card{ position: static; top:auto; }
  .p-grid-2{ grid-template-columns: 1fr; }
  .p-title{ font-size: 34px; }
}

/* =========================
   Destinos (vitrine + detalhe)
   ========================= */

.destinations-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:22px;
}
@media (max-width:900px){
  .destinations-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .destinations-grid{ grid-template-columns:1fr; }
}

.destination-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.destination-media img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}
.destination-body{ padding:16px; }
.destination-title{ font-size:18px; font-weight:900; margin-bottom:10px; }
.destination-chips{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.destination-why{ color:rgba(0,0,0,.70); line-height:1.55; margin-bottom:14px; }

/* Destino detalhe */
.dest-hero{
position: relative;
  width: 100%;
  height: 72vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #000; /* Fundo preto caso o vÃ­deo demore a carregar */

}
.dest-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.dest-eyebrow{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(0,0,0,.55);
  margin-bottom:10px;
}
.dest-title{
  font-size:44px;
  font-weight:900;
  letter-spacing:-1px;
  line-height:1.05;
}
.dest-subtitle{
  margin-top:14px;
  color:rgba(0,0,0,.70);
  line-height:1.65;
}
.dest-hero-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 25px 50px -12px rgba(0,0,0,.15);
  display:block;
}

@media (max-width:992px){
  .dest-hero-grid{ grid-template-columns:1fr; }
  .dest-hero-media img{ height:320px; }
  .dest-title{ font-size:34px; }
}
/* ===== Destinos: grid premium (Apple-ish) ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

.destino-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.destino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.destino-media {
  position: relative;
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
}

.destino-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destino-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}

.destino-body {
  padding: 14px 14px 16px;
}

.destino-title {
  font-size: 18px;
  margin: 2px 0 6px;
}

.destino-meta {
  font-size: 13px;
  opacity: 0.1	;
  text-transform: lowercase;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tag {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  padding: 14px 16px;
  background: #111;
  color: #fff;
  border-radius: 12px;
}

.cookie-banner a { color: #fff; text-decoration: underline; }

.cookie-banner__content {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__actions { display: flex; gap: 10px; }

.testimonial-card.featured {
  min-height: 280px; /* ajuste fino */
  display: flex;
  flex-direction: column;
}

.testimonial-card.featured .testimonial-body {
  flex: 1;
}

.testimonial-card .testimonial-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;     /* evita card gigante por texto enorme */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Card destaque: altura consistente */
#tFeatured {
  min-height: 260px; /* ajuste fino depois */
}

/* Texto do destaque: nÃ£o estoura, limita linhas */
#tFeatured .t-text {
  display: -webkit-box;
  -webkit-line-clamp: 6; /* ajuste linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mini text: tambÃ©m limita */
.t-mini__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Avatares sempre visÃ­veis e bonitos */
.t-avatar, .t-mini__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.t-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;   /* ajuste */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-mini__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* ajuste */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-avatarWrap, .t-mini__avatarWrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.t-avatar, .t-mini__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.t-avatar--fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
}

/* Se a imagem existir, o fallback fica atrÃ¡s. Se imagem falhar e for removida, fallback aparece. */

/* HOME PREMIUM â€” base estÃ©tica prÃ³xima do Destinos */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: grid;
  align-items: center;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 30%, rgba(0,0,0,.25), rgba(0,0,0,.75));
}

.home-hero__content {
  position: relative;
  padding: 86px 0 42px;
  color: #fff;
}

.home-hero__eyebrow {
  display: inline-block;
  font-weight: 600;
  opacity: .9;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.home-hero__title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.home-hero__sub {
  max-width: 56ch;
  opacity: .95;
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.home-hero__trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: .95;
  margin: 0 0 22px;
}

.home-hero__trust span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.home-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-quick {
  padding: 28px 0;
}

.home-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .home-quick__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .home-quick__grid { grid-template-columns: 1fr; }
}

.home-glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.home-sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-sectionSub {
  opacity: .75;
  margin: 6px 0 0;
}

.home-ctaBox {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 760px) {
  .home-ctaBox { flex-direction: column; align-items: flex-start; }
}
/* ConfiguraÃ§Ã£o bÃ¡sica do Card */
.card {
  display: flex;
  flex-direction: column; /* Alinha os itens em coluna */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px; /* Ajuste conforme necessÃ¡rio */
  border-radius: 12px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

/* A mÃ¡gica: Para cada card PAR (2Âº e 4Âº), 
   invertemos a direÃ§Ã£o da coluna 
*/
.card:nth-child(even) {
  flex-direction: column-reverse;
}

/* HERO DE PROGRAMAS */
.prog-hero {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #000; /* Fundo preto caso o vÃ­deo demore a carregar */
}

.prog-hero__video {
  position: absolute;
  /* CentralizaÃ§Ã£o perfeita */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Cobertura total */
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que preencha sem distorcer */
  
  /* Ajuste de "Nitidez/Visibilidade" */
  opacity: 0.95; /* Deixa o vÃ­deo com 75% de presenÃ§a (o fundo preto ou do container aparecerÃ¡ atrÃ¡s) */
  filter: contrast(1.1) brightness(0.9); /* Opcional: melhora o contraste para parecer mais nÃ­tido */
  
  z-index: 1;
}

/* Certifique-se de que o container pai tenha isso para o vÃ­deo nÃ£o vazar */
.prog-hero {
  position: relative;
  overflow: hidden;
  background-color: #000; /* Importante: a cor que aparece "por trÃ¡s" dos 75% de opacidade */
}
.prog-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

.prog-hero__content {
  position: relative;
  padding: 86px 0 42px;
  color: #fff;
}

.prog-hero__eyebrow {
  opacity: .85;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;}

.prog-hero__title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  margin: 0 0 12px;
  max-width: 18ch;
}

.prog-hero__sub {
  font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.prog-hero__actions {
  display: flex;
  gap: 15px;
}
/* Garante que o container centralize o conteÃºdo no Hero */
.prog-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  pointer-events: none; /* Garante que o clique passe para os botÃµes */
}

.prog-hero__content {
  pointer-events: auto; /* Devolve o clique para os textos e botÃµes */
  max-width: 800px; /* Impede que o texto fique largo demais em telas gigantes */
}

/* No seu style.css ou sobre-premium.css */
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid currentColor; /* Ele assume a cor do texto do pai */
  color: inherit;                /* Ele assume a cor do texto do pai */
  background: transparent;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color:inherit; /* No hover ele sempre fica branco */
}
/* Se as seÃ§Ãµes de baixo (cards) tambÃ©m estiverem sem margem, 
   certifique-se de que a sua classe .container tenha isso: */
.container {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
/* Responsividade */
@media (max-width: 768px) {
  .prog-hero { height: auto; padding: 120px 0 80px; }
  .prog-hero__title { font-size: 2.5rem; }
  .prog-hero__actions .btn-primary, 
  .prog-hero__actions .btn-secondary { width: 100%; text-align: column; }
}
.team-item__avatar {
  width: 80px; /* ou o tamanho que vocÃª estiver usando */
  height: 80px;
  border-radius: 50%;
  overflow: hidden; /* Isso aqui Ã© essencial para a foto ficar redonda */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}
.ig-shell{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 18px;
  min-height: 420px; /* evita aparÃªncia de â€œbarra vaziaâ€ */
}
/* HERO */

.hero-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-text h1{
  font-size:56px;
  line-height:1.1;
  margin-bottom:22px;
  font-weight:700;
}

.hero-text p{
  font-size:20px;
  color:#555;
  max-width:520px;
  margin-bottom:32px;
}

.hero-cta{
  display:flex;
  gap:16px;
  margin-bottom:32px;
}

.hero-image img{
 margin-top:10px;
  width:100%;
  border-radius:12px;
  box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

/* SEÃ‡Ã•ES */

.section{
  padding:80px 0;
}

.section-light{
  background:#f7f7f7;
}

.section-title{
  font-size:32px;
  margin-bottom:20px;
}

/* CARDS */

.card{
  background:white;
  padding:26px;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
  text-decoration:none;
  color:inherit;
}

.card:hover{
  transform:translateY(-4px);
}

/* DESTINOS */

.destination-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  display:block;
}

.destination-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.destination-card span{
  position:absolute;
  bottom:12px;
  left:14px;
  color:white;
  font-weight:600;
  background:rgba(0,0,0,.8);
  color:#fff;
padding:6px 10px;
font-size:12px;
border-radius:999px;
}

/* FEATURES */

.feature h3{
  margin-bottom:10px;
}

/* CTA FINAL */

.cta-final{
  padding:50px 0;
  text-align:center;
}

.cta-final h2{
  font-size:30px;
  margin-bottom:12px;
}

.cta-final p{
  margin-bottom:24px;
  color:white;
}
.hero{
  padding:120px 0;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:60px;
  align-items:center;
}
/* ===============================
   HERO HOME (FULL IMAGE)
================================ */

.hero-home{
  position:relative;
  height:720px;
  display:flex;
  align-items:center;
  color:white;
  background-image:url("/images/hero-intercambio.jpg");
  background-size:cover;
  background-position:center 15%;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.2) 65%,
    rgba(0,0,0,0) 100%
  );
}

.hero-content{
  position:relative;
  max-width:680px;
}

.hero-eyebrow{
  display:block;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:18px;
  opacity:0.9;
}

.hero-home h1{
  font-size:60px;
  line-height:1.05;
  margin-bottom:22px;
  font-weight:700;
}

.hero-home p{
  font-size:20px;
  margin-bottom:34px;
  opacity:0.95;
}

.hero-cta{
  display:flex;
  gap:16px;
}

.btn-primary{
  background:#F03417;
  color:white;
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.btn-secondary{
  border: 2px solid currentColor; /* Ele assume a cor do texto do pai */
  color: inherit;                /* Ele assume a cor do texto do pai */
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}
.hero-home h1{
  text-shadow:0 4px 20px rgba(0,0,0,0.45);
}

.hero-home p{
  text-shadow:0 2px 12px rgba(0,0,0,0.45);
}
.hero-title{
  font-size:64px;
  line-height:1.05;
  margin-bottom:22px;
  font-weight:600;
}

.hero-line-light{
  display:block;
  font-weight:400;
  opacity:0.9;
}

.hero-line-strong{
  display:block;
  font-weight:700;
}

.hero-sub{
  font-size:20px;
  max-width:560px;
  margin-top:12px;
  margin-bottom:36px;
  opacity:0.9;
}

.hero-eyebrow{
  display:block;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:18px;
  opacity:0.85;
}
/* ===============================
REVIEWS
=============================== */

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:40px;
}

.review-card{
  background:white;
  padding:28px;
  border-radius:14px;
  box-shadow:0 6px 28px rgba(0,0,0,0.06);
}

.review-stars{
  font-size:18px;
  margin-bottom:14px;
}

.review-text{
  font-size:16px;
  line-height:1.6;
  margin-bottom:18px;
}

.review-author{
  font-weight:600;
}

.reviews-cta{
  margin-top:40px;
  text-align:center;
}


/* ===============================
INSTAGRAM
=============================== */

.instagram-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:40px;
}

.instagram-grid img{
  width:100%;
  border-radius:12px;
  transition:transform .3s ease;
}

.instagram-grid img:hover{
  transform:scale(1.05);
}




/* ==========================================================================
   Serviços HERO & GRID (ESTILO PREMIUM / APPLE-ISH)
   ========================================================================== */

/* Container Pai */
.s-hero {
  position: relative;
  overflow: hidden;
  background-color: #000; /* Fundo caso o vÃ­deo demore */
  height: 72vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  
 }

/* O Vídeo de Fundo */
.s-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.35; /* Ajustado para dar mais destaque ao texto */
  z-index: 1;
}

/* A Camada de Escurecimento */
.s-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradiente para ajudar na leitura do texto */
  background: linear-gradient(75deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

/* O Conteúdo (Texto e Botões) */
.s-hero .container {
  position: relative;
  padding: 86px 0 42px;
  z-index: 3;
  color: #fff;
  text-align: left; /* Alinhado Ã  esquerda como no seu exemplo */
}

/* Ajuste das Cores do Texto para o fundo escuro */
.s-hero .s-tagline {
  opacity: .85;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.s-hero .s-title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  margin: 0 0 12px;
  max-width: 18ch;
}

.s-hero__sub {
 font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);

}
/* Grid de Serviços/Cards */
.s-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 30px; 
  padding: 40px 0; 
}

.s-card { 
  background: #fbfbfd; 
  padding: 40px; 
  border-radius: 24px; 
  transition: all 0.3s ease;
  border: 1px solid #f2f2f2;
}

.s-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
}

.s-card h3 { 
  font-size: 1.5rem; 
  margin-bottom: 15px; 
  color: #1d1d1f; 
}

.s-card p { 
  color: #86868b; 
  line-height: 1.6; 
  margin-bottom: 25px; 
}

/* Botõs Customizados */
.btn-s { 
  display: inline-block; 
  padding: 12px 24px; 
  border-radius: 999px; 
  font-weight: 600; 
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

.btn-s-dark { 
  background: #1d1d1f; 
  color: #fff; 
}

.btn-s-dark:hover {
  background: #000;
}

.btn-s-light { 
  border: 1px solid #d2d2d7; 
  color: #1d1d1f; 
}

.btn-s-light:hover {
  background: #f5f5f7;
}

/* Responsividade */
@media (max-width: 768px) {
  .s-title { 
    font-size: 2.2rem; 
  }
  .s-hero { 
    padding-top: 100px; 
  }
  .s-card {
    padding: 30px;
  }
}
/* ===== MANIFESTO / BRAND SECTION ===== */

.home-manifest {
  padding: 100px 20px;
  background: #f7f7f7;
  text-align: center;
}

.home-manifest .container {
  max-width: 900px;
  margin: 0 auto;
}

.manifest-title {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.manifest-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {

  .home-manifest {
    padding: 70px 20px;
  }

  .manifest-title {
    font-size: 30px;
  }

  .manifest-text {
    font-size: 16px;
  }

}

.dest-continent{
margin-top:70px;
}

.dest-continent__title{
font-size:28px;
font-weight:600;
margin-bottom:24px;
}
.continent-selector{
margin-bottom:20px;
text-align:center;
}

.continent-selector__grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
margin-top:30px;
margin-bottom:20px;
}

.continent-card{
background:#fff;
border:1px solid #eee;
border-radius:999px;
padding:28px;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:all .2s ease;
}

.continent-card:hover{
border-color:#000;
transform:translateY(-2px);
}
.hero-home{
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #000; /* Fundo preto caso o vÃ­deo demore a carregar */

}

.hero-video-container{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video{
  position: absolute;
  /* CentralizaÃ§Ã£o perfeita */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Cobertura total */
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que preencha sem distorcer */
  
  /* Ajuste de "Nitidez/Visibilidade" */
  opacity: 0.95; /* Deixa o vÃ­deo com 75% de presenÃ§a (o fundo preto ou do container aparecerÃ¡ atrÃ¡s) */
  filter: contrast(1.1) brightness(0.9); /* Opcional: melhora o contraste para parecer mais nÃ­tido */
  
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradiente para ajudar na leitura do texto */
  background: linear-gradient(75deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;

}

.hero-content{
  position: relative;
  padding: 86px 0 42px;
  z-index: 3;
}
.hs-form input,
.hs-form textarea,
.hs-form select{
  width:100%;
}

.hero{
  animation:fadeIn .6s ease;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

#vibe-hs-form{
min-height:220px;
display:flex;
align-items:center;
justify-content:center;
}

#vibe-hs-form::before{
content:"Carregando formulário...";
color:#666;
font-size:16px;
}
@media (max-width: 900px){

  .header .btn-primary{
    display:none;
  }

}

.nav-drawer{
  position:fixed;
  top:72px;
  left:0;
  width:100%;
  height:calc(100vh - 72px);
  background:#fff;
  transform:translateX(100%);
  transition:transform .35s ease;
  z-index:90;
  border-top:1px solid #eee;
}

.nav-drawer.is-open{
  transform:translateX(0);
}
.logo img{
height:40px;
}

@media (max-width:900px){
.logo img{
height:40px;
}

/* Botão principal */
.nav-toggle {
    display: flex;           /* Usamos flex para organizar as barras */
    flex-direction: column;  /* Alinha as barras uma embaixo da outra */
    justify-content: center; /* Centraliza o grupo de barras verticalmente */
    align-items: center;     /* Centraliza as barras horizontalmente */
    gap: 1px;                /* Cria o espaçamento entre as barras sem precisar de margin */
    
    background: transparent;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    padding: 0;              /* Reset de padding para não espremer as barras */
    cursor: pointer;
}

/* As listras */
.nav-toggle-bar {
    display: block;
    width: 30px;             /* OBRIGATÓRIO: Sem largura, a barra fica invisível */
    height: 2px;
    background: #f03417;        /* Cor preta/grafite */
    border-radius: 2px;
    transition: 0.3s;        /* Para a animação de fechar (X) */
}

/* No desktop, escondemos o botão */
@media (min-width: 901px) {
    .nav-toggle {
        display: none;
    }
}
/* 1. A primeira barra desce e gira 45 graus */
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(20px) rotate(45deg);
}

/* 2. A barra do meio some */
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px); /* Dá um efeito de 'saída' para o lado */
}

/* 3. A terceira barra sobe e gira -45 graus */
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
@media (max-width:900px){

.nav{
display:none;
}


.header .btn-primary{
display:none;

}

.nav-toggle{
display:flex;
align-items:center;
justify-content:center;

}
}

@media (min-width:901px){

}
}

/* ===============================
BLOG
=============================== */

/* POST */

.post-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
}

.post-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.post-cover {
  width: 100%;
  border-radius: 16px;
  margin: 20px 0;
}

.post-content p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.post-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.like-btn {
  border: none;
  background: #eee;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.like-btn.liked {
  background: #F03417;
  color: white;
}
.share-btn {
  border: none;
  background: #F03417;
  color: black;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all .2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.blog-hero{
  position:relative;
  padding:120px 20px 80px;
  text-align:center;
  overflow:hidden;
}

.blog-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url('/images/blog/hero-blog.jpg') center/cover;
  z-index:0;
}

.blog-hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  max-width:700px;
}

.hero-eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
  opacity:.8;
}


.blog-hero p{
  font-size:16px;
  opacity:.9;
  margin-bottom:25px;
}

.blog-hero-search input{
  width:100%;
  max-width:500px;
  padding:14px 18px;
  border-radius:999px;
  border:none;
  font-size:14px;
}

.pagination{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:40px 0;
}

.pagination a{
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none;
  background:#eee;
  color:#333;
}

.pagination a.active{
  background:#F03417;
  color:#fff;
}

.blog-filters{
  display:flex;
  gap:15px;
  margin:30px auto;
  flex-wrap:wrap;
}

.blog-filters input,
.blog-filters select{
  padding:12px;
  border-radius:10px;
  border:1px solid #ddd;
}

/* GRID */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:32px;
  padding:60px 0;
}

/* CARD APPLE-LIKE */
.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  
  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 4px 20px rgba(0,0,0,0.04);
}

.blog-card:hover{
  transform: translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* IMAGEM */
.blog-card-image{
  overflow:hidden;
}

.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition: transform .5s ease;
}

.blog-card:hover img{
  transform: scale(1.05);
}

/* CONTEÚDO */
.blog-card-content{
  padding:22px;
}



.blog-card h3{
  font-size:18px;
  margin:10px 0 8px;
  line-height:1.4;
}

.blog-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

.blog-meta{
  font-size:12px;
  color:#9ca3af;
  margin-top:12px;
  margin:10px
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.blog-card.hidden{
  display:none;
}
.hero-actions{
  margin-top:20px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-secondary{
  border:1px solid #fff;
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
    color: inherit;                /* Ele assume a cor do texto do pai */

  }
  
/* CONTEÚDO */
.blog-card-content{
  padding:22px;
}

.blog-category{
  font-size:11px;
  font-weight:600;
  color:#F03417;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.blog-card h3{
  font-size:18px;
  margin:10px 0 8px;
  line-height:1.4;
}

.blog-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

.blog-meta{
  font-size:12px;
  color:#9ca3af;
  margin-top:12px;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.blog-card.hidden{
  display:none;
}

.hero-actions{
  margin-top:20px;
  display:flex;
  gap:12px;
  justify-content:left;
  flex-wrap:wrap;
}

.btn-secondary{
  border:1px solid #fff;
  color: inherit;                /* Ele assume a cor do texto do pai */
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;

}

.blog-hero{
  position:relative;
  padding:120px 20px 80px;
  text-align:center;
  overflow:hidden;
}

.blog-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url('/images/blog/hero-blog.jpg') center/cover;
  z-index:0;
}

.blog-hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  max-width:700px;
}


/* BLOG HERO */

.blog-hero{
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #000; /* Fundo preto caso o vídeo demore a carregar */
}

.blog-filters{
  display:flex;
  gap:15px;
  margin:30px auto;
  flex-wrap:wrap;
}


.blog-filters input,
.blog-filters select{
  padding:12px;
  border-radius:10px;
  border:1px solid #ddd;
}

.blog-hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  
  /* Ajuste de "Nitidez/Visibilidade" */
  opacity: 0.50; /* Deixa o ví­deo com 75% de presença (o fundo preto ou do container aparecerão¡ atrás) */
  filter: contrast(1.1) brightness(0.9); /* Opcional: melhora o contraste para parecer mais nítido */
  
  z-index: 1;

}

.blog-hero-overlay{
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

.blog-hero-content{
  position: relative;
  padding: 86px 0 42px;
  z-index:2;
  text-align:left;
  color:#fff;
  
}
.blog-hero__eyebrow {
    opacity: .85;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-hero__title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  margin: 0 0 12px;
  max-width: 18ch;
}

 .blog-hero__sub {
font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.blog-hero p{
  opacity:.9;
  margin-bottom:24px;
}
.btn-primary{
  background:#F03417;
  color:#fff;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  transition:.25s;
}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(240,52,23,.25);
}

.btn-secondary{
  border: 2px solid currentColor; /* Ele assume a cor do texto do pai */
  color: inherit;                /* Ele assume a cor do texto do pai */
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
}

.blog-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  text-decoration:none;
  color:#111;

  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 6px 24px rgba(0,0,0,0.04);

  transition:.3s;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.blog-card a{
  text-decoration:none;
  color:inherit;
}

.blog-title{
  font-size:18px;
  line-height:1.4;
}

.blog-excerpt{
  color:#6b7280;
  font-size:14px;
}

.blog-category{
  color:#F03417;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  
}

.blog-filters{
  display:flex;
  gap:12px;
  margin:40px 0;
  flex-wrap:wrap;
  border-radius:999px;
}

.blog-filters input,
.blog-filters select{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:#fff;
  font-size:14px;
  transition:.2s;
}

.blog-filters input{
  flex:1;
  min-width:220px;
}

.blog-filters select{
  min-width:180px;
  border-radius:999px;
}

.blog-filters input:focus,
.blog-filters select:focus{
  border-color:#F03417;
  outline:none;
}

.pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:60px 0;
}

.pagination a{
  text-decoration:none;
  color:#333;
  background:#eee;
  font-size:14px;
  padding:8px 14px;
  border-radius:999px;
  transition:.2s;
}

.pagination a:hover{
  color:#000;
}

.pagination a.active{
  background:#F03417;
  color:#fff;
}

.blog-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  pointer-events: none; /* Garante que o clique passe para os botão */
}

.blog-hero__content {
  pointer-events: auto; /* Devolve o clique para os textos e botão */
  max-width: 800px; /* Impede que o texto fique largo demais em telas gigantes */
}

/* BLOG POST */

.post-wrapper{
  padding:60px 20px;
}

.post-container{
  max-width:860px; /* 🔥 ESSENCIAL */
  margin:0 auto;
}

.post-header{
  margin-bottom:32px;
}

.post-header h1{
  font-size:40px;
  line-height:1.2;
  letter-spacing:-0.02em;
  margin-bottom:12px;
}

.post-meta{
  color:#6b7280;
  font-size:14px;
  display:flex;
  gap:8px;
}

.post-cover img{
  width:100%;
  border-radius:16px;
  margin:32px 0;
}

.post-content{
  font-size:18px;
  line-height:1.75;
  color:#1f2937;
}

/* parágrafos */
.post-content p{
  margin-bottom:20px;
}

/* títulos internos */
.post-content h2{
  font-size:26px;
  margin:40px 0 16px;
  line-height:1.3;
}

.post-content h3{
  font-size:22px;
  margin:32px 0 12px;
}

/* negrito elegante */
.post-content strong{
  color:#000;
  font-weight:600;
}

/* listas */
.post-content ul{
  padding-left:20px;
  margin-bottom:20px;
}

.post-content li{
  margin-bottom:8px;
}

.post-content p{
  max-width:720px;
}

.post-content > * + *{
  margin-top:16px;
}

.post-content p:first-of-type{
  font-size:20px;
  color:#374151;
}

@media (max-width:768px){

  .post-header h1{
    font-size:28px;
  }

  .post-content{
    font-size:16px;
  }
}

.post-actions{
  display:flex;
  gap:12px;
  margin-top:40px;
}

.post-actions button{
  border:none;
  background:#f5f5f5;
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
  font-size:14px;
  transition:.2s;
}

.post-actions button:hover{
  background:#eee;
}

.like-btn.active{
  background:#F03417;
  color:inherit;
}

.blog-home{
  padding:80px 0;
}

.blog-carousel{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:20px;
}

.blog-card-home{
  display:block;
  text-decoration:none;
  color:#111;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 40px rgba(0,0,0,0.05);
  transition:.3s;
}

.blog-card-home:hover{
  transform:translateY(-4px);
}

.blog-card-home.featured{
  grid-row:span 2;
}

.blog-card-image img{
  width:100%;
  height:200px;
  object-fit:cover;
}


.blog-card-content{
  padding:20px;
}

.blog-card-content h3{
  font-size:18px;
  margin:10px 0;
}

.blog-card-content p{
  font-size:14px;
  color:#6b7280;
}

.reviews-rating{
  margin-top:12px;
  margin-bottom:36px;
  font-size:16px;
  color:#444;
}

.reviews-stars{
  color:#F5A623;
  font-size:18px;
  margin-right:8px;
}

.reviews-score{
  font-weight:600;
  margin-right:6px;
}

.reviews-count{
  color:#777;
}
.reviews-rating{
  display:inline-block;
  margin-top:12px;
  margin-bottom:36px;
  font-size:16px;
  color:#444;
  text-decoration:none;
}

.reviews-rating:hover{
  opacity:0.85;
}


.section-diferenciais {
  padding: 35px 0 92px;
}

.diferenciais-shell {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.72));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.diferenciais-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(240, 52, 23, 0.06), transparent 28%);
  pointer-events: none;
}

.diferenciais-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.diferenciais-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F03417;
}

.section-diferenciais .section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #111;
}

.diferenciais-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 35px rgba(0,0,0,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
  border-color: rgba(240, 52, 23, 0.14);
}

.feature-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(240, 52, 23, 0.08);
  color: #F03417;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5f6368;
}

@media (max-width: 900px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .diferenciais-shell {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .feature-card {
    padding: 22px;
    border-radius: 22px;
  }
}

.s-services {
  position: relative;
  margin-top: 0;
  padding: 56px 0 110px;
  background: linear-gradient(180deg, #f7f7f8 0%, #f3f3f5 100%);
}

.s-services .container {
  position: relative;
  z-index: 2;
}

.s-services__intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.s-services__eyebrow {
    opacity: .85;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.s-services__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #111;
}

.s-services__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5f6368;
}

.s-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.s-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.s-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 52, 23, 0.04), transparent 42%);
  pointer-events: none;
}

.s-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.09);
  border-color: rgba(240, 52, 23, 0.16);
}

.s-card--featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  color: #111;
  border-color: rgba(240, 52, 23, 0.16);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.s-card--featured h3,
.s-card--featured p {
  color: #111;
}

.s-card--featured p {
  color: #5f6368;
}

.s-card--featured::before {
  background: linear-gradient(135deg, rgba(240, 52, 23, 0.08), transparent 48%);
}

.s-card--featured-soft {
  border-color: rgba(240, 52, 23, 0.14);
}

.s-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.s-card__icon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(240, 52, 23, 0.08);
  color: #F03417;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.s-card--featured .s-card__icon {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.s-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.s-card:not(.s-card--featured) .s-card__pill {
  background: rgba(240, 52, 23, 0.08);
  color: #F03417;
}

.s-card h3 {
  margin: 0 0 14px;
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111;
}

.s-card p {
  margin: 0 0 26px;
  color: #5f6368;
  font-size: 0.98rem;
  line-height: 1.75;
  flex-grow: 1;
}

.btn-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-s:hover {
  transform: translateY(-2px);
}

.btn-s-dark {
  background: #111;
  color: #fff;
}

.s-card--featured .btn-s-dark {
  background: #111;
  color: #fff;
}

.s-card--featured .s-card__icon {
  background: rgba(240, 52, 23, 0.08);
  color: #F03417;
}

.s-card--featured .s-card__pill {
  background: rgba(17, 17, 17, 0.06);
  color: #111;
}

.btn-s-light {
  background: #111;
  color: #fff;
}

.s-card--featured .btn-s-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-s-light,
.btn-s-light:visited {
  background: #111;
  color: #fff;
  border: 1px solid transparent;
}

.btn-s-light:hover,
.btn-s-light:focus,
.btn-s-light:active {
  background: #fff;
  color: #F03417;
  border-color: rgba(240, 52, 23, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.s-card--featured .btn-s-light {
  background: #111;
  color: #fff;
  border: 1px solid transparent;
}

.s-card--featured .btn-s-light:hover {
  background: #fff;
  color: #F03417;
  border-color: rgba(240, 52, 23, 0.18);
}

@media (max-width: 1100px) {
  .s-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .s-services {
    padding-bottom: 80px;
  }

  .s-services__intro {
    margin-bottom: 28px;
  }

  .s-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .s-card {
    padding: 22px;
    border-radius: 24px;
  }

  .s-card h3 {
    font-size: 1.25rem;
  }

  .btn-s {
    width: 100%;
  }
}

/* Responsividade HOME */
@media (max-width: 768px) {

  .hero-home,
  .home-hero {
    height: auto;
    min-height: unset;
    padding: 120px 0 80px;
  }

  .hero-home h1,
  .home-hero__title {
    font-size: 2.4rem;
  }

  .hero-home p,
  .home-hero__sub {
    font-size: 1rem;
  }

  .hero-cta,
  .home-hero__actions {
    flex-direction: column;
    width: 100%;

  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .home-hero__actions .btn-primary,
  .home-hero__actions .btn-secondary {
    width: 100%;
    text-align: column;
  }

  .home-quick__grid {
    grid-template-columns: 1fr;
  }

}

.blog-hero__actions {
     display: flex;
  gap: 15px;
  }

/* Responsividade BLOG */
@media (max-width: 768px) {

  .blog-hero {
    height: auto;
    min-height: unset;
    padding: 120px 0 80px;
  }

  .blog-hero__title {
    font-size: 2.5rem;
  }

  .blog-hero__sub {
    font-size: 1rem;
  }  
 
 .blog-cta,
  .blog-hero__actions {
    flex-direction: column;
    width: 100%;
   
  }
  .blog-hero__actions .btn-primary,
  .blog-hero__actions .btn-secondary {
    width: 100%;
    text-align: column;
    
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 160px;
  }

  .blog-filters {
    flex-direction: column;
  }

}

.container-full {
  width: 100%;
  padding: 0 40px;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;

}