/* =========  V8 =================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #071a35 0%, #0b2447 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* ================================
   LAYOUT BASE
================================ */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--soft {
  padding: 70px 0;
  background: linear-gradient(180deg, #0b2547 0%, #0f2e55 100%);
}

.section__head {
    margin-bottom: 40px;
}

.section__sub {
    color: #cfd8e3;
    margin-top: 10px;
}

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

.brand__dot {
    width: 8px;
    height: 8px;
    background: #f5c542;
    border-radius: 50%;
}
/* =========================
   TOPBAR
========================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, #071a34 0%, #0b2547 100%);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__text {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
}

.topbar__cta {
  background: linear-gradient(135deg, #f6d365, #e9c24f);
  color: #111;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(233, 194, 79, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap; /* evita quebrar linha */
}

.topbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(233, 194, 79, 0.35);
}

/* ================================
   HERO
================================ */
.hero {
  padding: 100px 0 80px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin: 15px 0;
}

.hl {
    color: #f5c542;
}

.sub {
    color: #cfd8e3;
    margin-bottom: 20px;
}

.bullets {
    list-style: none;
    margin-bottom: 25px;
}

.bullets li {
    margin-bottom: 10px;
}

.hero__visual {
    position: relative;
    text-align: center;
}

.hero__img {
    max-width: 100%;
    height: auto;
}

/* ================================
   BUTTONS (PADRÃO UNIFICADO)
================================ */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #f5c542, #e0b02f);
    color: #000;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

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

.btn--xl {
    padding: 18px 40px;
    font-size: 18px;
}

/* Centralização padrão CTA */
.center {
    text-align: center;
    margin-top: 35px;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ================================
   URGENCY (CONTADOR MELHORADO)
================================ */
.urgency {
   text-align: center;
     font-size: 14px;
    margin-top: 15px;
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
}

.microtrust {
    margin-top: 10px;
    font-size: 14px;
    color: #cfd8e3;
}

/* ================================
   GRID 2 COLUNAS
================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-2--reverse {
    align-items: center;
}

/* ================================
   CARDS
================================ */
.card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
}

.card--highlight {
    background: rgba(255,255,255,0.08);
}

.card--highlight .center {
  margin-top: 25px;
}

.card--highlight .btn {
  width: 100%;
  max-width: 320px;
}


.checks {
    margin-top: 20px;
    list-style: none;
}

.checks li {
    margin-bottom: 10px;
}

/* Mini cards (Instalações etc) */
.cards {
    margin: 25px 0;
}

.mini {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 4px solid #f5c542;
}

/* ================================
   STACK PROFESSOR
================================ */
.stack__item {
    margin-bottom: 15px;
}

.media__img {
    width: 100%;
    border-radius: 15px;
}

.media__caption {
    margin-top: 10px;
    text-align: center;
    color: #cfd8e3;
}

/* ================================
   LEARN GRID (DESTACADO)
================================ */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.learn {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.learn:hover {
    background: rgba(255,255,255,0.08);
}

/* ================================
   PHOTOS
================================ */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.photo img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* ================================
   FAQ
================================ */
.faq details {
    background: rgba(255,255,255,0.05);
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
}

.faq p {
    margin-top: 10px;
    color: #cfd8e3;
}

/* ================================
   Video
================================ */
.video-card {
  margin-top: 50px;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.depo-cta {
  margin-top: 30px;
}

/* ================================
   STICKY CTA (MOBILE)
================================ */
.sticky-cta {
    display: none;
}

/* ================================
   FOOTER
================================ */
.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #cfd8e3;
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
    .hero__grid,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
     .hero__visual {
    order: -1;
    margin-bottom: 20px;
  }

  .hero__img {
    max-height: 340px;
    width: auto;
    object-fit: contain;
  }

     .section {
    padding: 60px 0;
  }

  .hero {
    padding-bottom: 40px;
  }

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

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

    .sticky-cta {
        display: none !important;
        position: fixed;
        bottom: 15px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 999;
    }

    .btn--sticky {
        width: 90%;
        max-width: 400px;
    }
   
   .topbar__cta {
       font-size: 14px;
       padding: 10px 16px;
       white-space: nowrap;
     }
   
    .grid-2--reverse {
    display: flex;
    flex-direction: column;
  }

  .grid-2--reverse .media {
    order: -1;
    margin-bottom: 25px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {

  .hero {
    padding: 40px 0;
  }

  .hero__img {
    max-height: 260px;
  }

}

