:root{
  --dark:#0F282E;
  --blue:#213F73;
  --beige:#F5F1E8;
  --beige-2:#ECE4D8;
  --gold:#C6A85A;
  --text:#373737;
  --text-soft:#5c5c5c;
  --text-light:#FAF9F6;
  --border:rgba(15,40,46,0.08);
  --shadow:0 18px 40px rgba(15,40,46,0.08);
  --shadow-soft:0 10px 22px rgba(15,40,46,0.05);
  --container:1180px;
  --header-h:84px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:var(--beige);
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.section{padding:92px 0}
.section-sm{padding:68px 0}

.section-light{
  background:var(--beige);
  color:var(--text);
}

.section-dark{
  background:var(--dark);
  color:var(--text-light);
}

.section-dark p,
.section-dark li{
  color:rgba(250,249,246,0.86);
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
}

h1,h2,h3{
  margin:0 0 18px;
  color:inherit;
}

h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(40px, 5vw, 64px);
  line-height:1.08;
  letter-spacing:-0.02em;
}

h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(30px, 3vw, 44px);
  line-height:1.12;
  letter-spacing:-0.01em;
}

h3{
  font-family:"Playfair Display",serif;
  font-size:24px;
  line-height:1.2;
}

p{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.78;
}

.lead{
  font-size:18px;
  line-height:1.8;
}

.text-center{text-align:center}
.max-860{max-width:860px}
.max-760{max-width:760px}
.mx-auto{margin-left:auto;margin-right:auto}

.divider{
  width:72px;
  height:1px;
  background:var(--gold);
  margin:18px 0 22px;
}

.divider.center{
  margin-left:auto;
  margin-right:auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border-radius:4px;
  border:1px solid transparent;
  font-size:15px;
  font-weight:700;
  transition:0.25s ease;
  gap:10px;
}

.btn-primary{
  background:var(--gold);
  color:var(--dark);
}

.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(0.98);
}

.btn-light{
  background:transparent;
  color:var(--text-light);
  border-color:rgba(255,255,255,0.24);
}

.btn-light:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.btn-outline{
  background:transparent;
  color:var(--dark);
  border-color:rgba(15,40,46,0.18);
}

.btn-outline:hover{
  border-color:var(--gold);
  color:var(--blue);
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:var(--header-h);
  backdrop-filter:blur(10px);
  background:rgba(245,241,232,0.96);
  border-bottom:1px solid var(--border);
}

.site-header.dark{
  background:rgba(15,40,46,0.94);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-wrap{
  height:100%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  min-width:0;
}

.brand-name{
  font-family:"Playfair Display",serif;
  font-size:28px;
  color:var(--blue);
}

.site-header.dark .brand-name{
  color:#f8f7f3;
}

.brand-sub{
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--dark);
  opacity:0.86;
  margin-top:4px;
}

.site-header.dark .brand-sub{
  color:rgba(248,247,243,0.84);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}

.nav a{
  font-size:14px;
  color:var(--dark);
  opacity:0.92;
}

.site-header.dark .nav a{
  color:rgba(248,247,243,0.88);
}

.nav a:hover,
.nav a.active{
  color:var(--blue);
}

.site-header.dark .nav a:hover,
.site-header.dark .nav a.active{
  color:var(--gold);
}

.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.social-icons{
  display:flex;
  align-items:center;
  gap:10px;
}

.social-icon{
  width:36px;
  height:36px;
  min-width:36px;
  min-height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(15,40,46,0.14);
  color:var(--dark);
  background:rgba(255,255,255,0.42);
  transition:0.2s ease;
}

.site-header.dark .social-icon{
  border-color:rgba(255,255,255,0.16);
  color:#f8f7f3;
  background:rgba(255,255,255,0.05);
}

.social-icon:hover{
  border-color:var(--gold);
  color:var(--blue);
  transform:translateY(-1px);
}

.site-header.dark .social-icon:hover{
  color:var(--gold);
}

.social-icon svg{
  width:16px;
  height:16px;
  flex-shrink:0;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(15,40,46,0.14);
  background:transparent;
  border-radius:4px;
  color:var(--dark);
  cursor:pointer;
  font-size:20px;
}

.site-header.dark .menu-toggle{
  border-color:rgba(255,255,255,0.14);
  color:#f8f7f3;
}

.mobile-nav{
  display:none;
  background:var(--beige);
  border-bottom:1px solid rgba(15,40,46,0.08);
}

.mobile-nav.dark{
  background:var(--dark);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open{display:block}

.mobile-nav .container{
  padding:14px 0 18px;
}

.mobile-nav a{
  display:block;
  padding:10px 0;
  color:var(--dark);
  border-bottom:1px solid rgba(15,40,46,0.06);
}

.mobile-nav.dark a{
  color:#f8f7f3;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

/* hero */
.hero-home{
  background:
    linear-gradient(90deg, rgba(8,21,25,0.90), rgba(8,21,25,0.58)),
    url("imagens/bussola-fundo-escuro-2.png") center/cover no-repeat;
  color:var(--text-light);
  padding:86px 0 100px;
  min-height:84vh;
  display:flex;
  align-items:center;
}

.hero-home .hero-content{
  max-width:820px;
}

.hero-home p{
  color:rgba(250,249,246,0.88);
}

.hero-highlight{
  font-family:"Playfair Display",serif;
  color:var(--gold);
  font-size:clamp(24px, 2.6vw, 36px);
  line-height:1.28;
  margin:22px 0 18px;
}

.page-hero{
  background:
    linear-gradient(90deg, rgba(8,21,25,0.90), rgba(8,21,25,0.62)),
    url("imagens/bussola-fundo-escuro-2.png") center/cover no-repeat;
  color:var(--text-light);
  padding:86px 0;
}

.page-hero p{
  color:rgba(250,249,246,0.88);
}

.hero{
  background:
    linear-gradient(90deg, rgba(8,21,25,0.92), rgba(8,21,25,0.62)),
    url("imagens/bussola-fundo-escuro-2.png") center/cover no-repeat;
  color:var(--text-light);
  padding:86px 0 94px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.06fr 0.94fr;
  gap:54px;
  align-items:center;
}

.hero p{
  color:rgba(250,249,246,0.88);
}

.hero-visual{
  display:grid;
  gap:18px;
}

.hero-visual-top{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:22px;
  box-shadow:var(--shadow);
}

.hero-visual-top img{
  width:100%;
  max-height:560px;
  object-fit:contain;
  object-position:center;
}

.hero-card{
  background:rgba(245,241,232,0.98);
  color:var(--text);
  border-radius:8px;
  padding:22px;
  max-width:320px;
  box-shadow:var(--shadow-soft);
}

.hero-card strong{
  display:block;
  font-size:13px;
  margin-bottom:8px;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:0.10em;
}

.hero-card p{
  margin:0;
  color:var(--text);
  font-size:14px;
  line-height:1.65;
}

/* sections */
.strip{
  background:var(--beige-2);
  border-top:1px solid rgba(15,40,46,0.06);
  border-bottom:1px solid rgba(15,40,46,0.06);
}

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

.strip-card{
  padding:24px 18px;
  text-align:center;
  font-weight:600;
  color:var(--dark);
  font-size:14px;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.content-card,
.offer-box,
.mini-card,
.lesson-card,
.exercise-card,
.value-card,
.strategic-card,
.product-card{
  background:rgba(255,255,255,0.86);
  border:1px solid var(--border);
  border-radius:10px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.image-frame{
  background:rgba(255,255,255,0.92);
  padding:14px;
  border-radius:10px;
  box-shadow:var(--shadow);
}

.image-frame img{
  width:100%;
  height:460px;
  object-fit:cover;
  object-position:center;
  border-radius:8px;
}

.special-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(280px, 1fr));
  justify-content:center;
  gap:28px;
  max-width:900px;
  margin:40px auto 0;
}

.special-card{
  background:#f3ede2;
  color:var(--text);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  min-height:100%;
}

.special-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center;
}

.special-card-body{
  padding:18px 18px 20px;
}

.special-card h3{
  font-size:19px;
  margin-bottom:10px;
  color:#2f2f2f;
}

.special-card p{
  font-size:14px;
  line-height:1.7;
  color:#4e4e4e;
  margin-bottom:0;
}

.strategic-wrap{
  display:grid;
  grid-template-columns:1.08fr 0.92fr;
  gap:34px;
  align-items:start;
}

.about-grid{
  display:grid;
  grid-template-columns:1.02fr 0.98fr;
  gap:48px;
  align-items:center;
}

.photo-frame{
  background:rgba(255,255,255,0.92);
  padding:12px;
  border-radius:10px;
  box-shadow:var(--shadow);
}

.photo-frame img{
  width:100%;
  height:500px;
  object-fit:cover;
  object-position:center;
  border-radius:8px;
}

.quote-box{
  background:rgba(255,255,255,0.80);
  border:1px solid var(--border);
  border-left:3px solid var(--gold);
  border-radius:8px;
  padding:22px;
  box-shadow:var(--shadow-soft);
  margin-top:22px;
}

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

.value-mark{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(198,168,90,0.16);
  color:var(--gold);
  margin-bottom:16px;
  border:1px solid rgba(198,168,90,0.18);
  font-weight:700;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(280px, 1fr));
  gap:28px;
  align-items:start;
}

.product-card img{
  width:100%;
  height:420px;
  object-fit:contain;
  object-position:center;
  background:#eef0f4;
  border-radius:8px;
  margin-bottom:18px;
}

.product-card .mini-note{
  color:var(--text-soft);
  font-size:14px;
}

.bullet-list{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:grid;
  gap:12px;
}

.bullet-list li{
  position:relative;
  padding-left:22px;
}

.bullet-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:-1px;
  color:var(--gold);
  font-size:20px;
  line-height:1;
}

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

.lesson-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:30px;
}

.lesson-number{
  font-family:"Playfair Display",serif;
  font-size:34px;
  color:var(--gold);
  line-height:1;
  margin-bottom:12px;
}

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

.offer-wrap{
  display:grid;
  grid-template-columns:0.98fr 1.02fr;
  gap:42px;
  align-items:center;
}

.price{
  font-family:"Playfair Display",serif;
  font-size:48px;
  color:var(--gold);
  line-height:1;
  margin:16px 0 8px;
}

.small-note{
  font-size:14px;
  color:var(--text-soft);
}

/* contato */
.contact-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:46px;
  align-items:start;
}

.tag-box{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:56px;
  padding:14px 18px;
  border-radius:8px;
  background:rgba(198,168,90,0.10);
  border:1px solid rgba(198,168,90,0.40);
  color:var(--blue);
  font-weight:600;
  margin:18px 0 26px;
}

.channel-large{
  display:flex;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,0.80);
  border:1px solid var(--border);
  border-radius:12px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  margin-bottom:22px;
}

.channel-large .icon-circle{
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(37,211,102,0.14);
  color:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-weight:700;
  font-size:12px;
}

.channel-large h3{
  margin:0 0 4px;
  font-size:18px;
  font-family:"Playfair Display",serif;
  color:var(--blue);
}

.channel-large p{
  margin:0;
  color:var(--text-soft);
  font-size:15px;
}

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

.channel-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,0.74);
  border:1px solid rgba(198,168,90,0.40);
  border-radius:10px;
  padding:18px 16px;
  box-shadow:var(--shadow-soft);
  transition:0.2s ease;
  min-height:72px;
}

.channel-card:hover{
  transform:translateY(-1px);
  border-color:var(--gold);
}

.channel-badge{
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(198,168,90,0.14);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
  flex-shrink:0;
}

.channel-card span{
  font-weight:600;
  color:var(--blue);
  font-size:16px;
}

.form-box{
  background:rgba(255,255,255,0.70);
  border:1px solid rgba(198,168,90,0.30);
  border-radius:18px;
  padding:36px;
  box-shadow:var(--shadow);
}

.form-box h2{
  color:var(--blue);
  margin-bottom:26px;
}

.form-grid{
  display:grid;
  gap:18px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  font-size:15px;
  font-weight:600;
  color:var(--blue);
}

.field input,
.field textarea{
  width:100%;
  border:1px solid rgba(198,168,90,0.42);
  border-radius:8px;
  background:rgba(255,255,255,0.56);
  padding:15px 14px;
  font:inherit;
  color:var(--text);
  outline:none;
  transition:0.2s ease;
}

.field input:focus,
.field textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(198,168,90,0.12);
}

.field textarea{
  min-height:140px;
  resize:vertical;
}

.form-note{
  font-size:14px;
  color:var(--text-soft);
  margin-top:6px;
}

/* footer */
.contact-band{
  background:#29436e;
  color:var(--text-light);
  padding:70px 0;
}

.contact-box{
  max-width:420px;
}

.contact-box p{
  color:rgba(250,249,246,0.88);
}

.contact-links{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:grid;
  gap:18px;
}

.contact-links li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:18px;
}

.contact-links a{
  color:#f8f7f3;
}

.contact-links a:hover{
  color:var(--gold);
}

.cta-band{
  background:#29436e;
  color:var(--text-light);
  padding:80px 0;
  text-align:center;
}

.cta-band p{
  color:rgba(250,249,246,0.88);
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.site-footer{
  background:var(--dark);
  color:rgba(248,247,243,0.86);
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,0.08);
}

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

.footer-title{
  font-family:"Playfair Display",serif;
  font-size:24px;
  color:#f8f7f3;
  margin-bottom:10px;
}

.footer-links{
  display:grid;
  gap:10px;
  font-size:14px;
}

.footer-links a:hover{
  color:var(--gold);
}

.footer-social-text{
  display:grid;
  gap:10px;
  font-size:14px;
}

.footer-social-text a:hover{
  color:var(--gold);
}

.footer-bottom{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:13px;
}

/* legal */
.legal-wrap{
  max-width:900px;
  margin:0 auto;
}

.legal-card{
  background:rgba(255,255,255,0.86);
  border:1px solid var(--border);
  border-radius:10px;
  padding:34px;
  box-shadow:var(--shadow-soft);
}

.legal-card h2{
  margin-top:28px;
  font-size:28px;
}

.legal-muted{
  color:var(--text-soft);
  font-size:14px;
}

.legal-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--blue);
  margin-bottom:24px;
  opacity:0.8;
  transition:0.2s ease;
}

.legal-back:hover{
  opacity:1;
  color:var(--gold);
}

/* whatsapp */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:#25D366;
  color:#ffffff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.20);
  z-index:1200;
  transition:transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 18px 34px rgba(0,0,0,0.24);
  filter:brightness(1.02);
}

.whatsapp-float svg{
  width:30px;
  height:30px;
  flex-shrink:0;
}

/* cookie banner */
.cookie-banner{
  position:fixed;
  bottom:-100%;
  left:0;
  right:0;
  background:var(--dark);
  color:rgba(248,247,243,0.9);
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  z-index:2000;
  transition:bottom 0.4s ease;
  border-top:1px solid rgba(255,255,255,0.08);
  flex-wrap:wrap;
}

.cookie-banner.show{
  bottom:0;
}

.cookie-text{
  font-size:14px;
  line-height:1.6;
  flex:1;
}

.cookie-text a{
  color:var(--gold);
  text-decoration:underline;
}

.cookie-actions{
  display:flex;
  gap:10px;
  flex-shrink:0;
  flex-wrap:wrap;
}

.cookie-btn{
  padding:10px 20px;
  border-radius:4px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}

.cookie-accept{
  background:var(--gold);
  color:var(--dark);
  border:none;
}

.cookie-accept:hover{
  filter:brightness(0.95);
}

.cookie-more{
  background:transparent;
  color:rgba(248,247,243,0.8);
  border:1px solid rgba(255,255,255,0.2);
}

.cookie-more:hover{
  border-color:var(--gold);
  color:var(--gold);
}

@media (max-width: 980px){
  .nav,
  .social-icons{
    display:none;
  }

  .menu-toggle{
    display:inline-grid;
    place-items:center;
  }

  .hero-grid,
  .two-col,
  .offer-wrap,
  .lesson-grid,
  .exercise-grid,
  .footer-grid,
  .audience-grid,
  .contact-grid,
  .about-grid,
  .values-grid,
  .strategic-wrap,
  .products-grid{
    grid-template-columns:1fr;
  }

  .special-grid{
    grid-template-columns:1fr;
    max-width:none;
  }

  .hero-card{
    max-width:none;
  }
}

@media (max-width: 640px){
  :root{ --header-h:76px; }

  .container{
    width:calc(100% - 28px);
  }

  .brand-name{
    font-size:24px;
  }

  .brand-sub{
    font-size:10px;
  }

  .section{
    padding:72px 0;
  }

  .section-sm{
    padding:56px 0;
  }

  .strip-grid,
  .channels-grid{
    grid-template-columns:1fr;
  }

  .content-card,
  .offer-box,
  .mini-card,
  .lesson-card,
  .exercise-card,
  .value-card,
  .form-box,
  .legal-card,
  .product-card{
    padding:22px;
  }

  .image-frame img{
    height:360px;
  }

  .photo-frame img{
    height:420px;
  }

  .special-card img{
    height:190px;
  }

  .cta-band{
    padding:64px 0;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
    right:16px;
    bottom:16px;
  }

  .cookie-banner{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 18px;
  }
}
