:root {
  --azul-marinho: #0E1B3D;
  --bege: #EEE5D8;
  --bege-champagne: #D7C8B3;
  --reed-inverno: #4E0000;
  
  --white: #ffffff;
  --bg-dark: var(--azul-marinho);
  --bg-light: var(--white);
  
  --border-dark: rgba(215, 200, 179, 0.2); /* bege-champagne opacity */
  --border-light: rgba(14, 27, 61, 0.1); /* azul-marinho opacity */
  
  --radius: 8px;
  --container: min(1160px, calc(100% - 48px));
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--azul-marinho);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 2em;
  height: 2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--reed-inverno);
  margin-bottom: 16px;
}

.section-dark .section-label {
  color: var(--white);
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(14, 27, 61, 0.7);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-dark .section-sub {
  color: rgba(238, 229, 216, 0.7);
}

/* ─── BUTTONS ─── */
.btn-primary, .btn-ghost, .btn-outline, .btn-whatsapp, .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 0 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--reed-inverno);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(78, 0, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #6a0000;
  box-shadow: 0 15px 40px rgba(78, 0, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-light);
  color: var(--azul-marinho);
}
.btn-ghost:hover {
  border-color: var(--azul-marinho);
}

.btn-outline {
  background: transparent;
  border-color: var(--azul-marinho);
  color: var(--azul-marinho);
}
.btn-outline:hover {
  background: rgba(14, 27, 61, 0.05);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe57;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.btn-block {
  display: flex;
  width: 100%;
}

.icon-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: transparent;
  color: var(--azul-marinho);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
}

.header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(14, 27, 61, 0.85); /* Azul marinho translúcido */
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  color: var(--white);
  animation: navFadeDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.brand span {
  display: grid;
}

.brand strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.brand small {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 46px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta {
  background: var(--white);
  color: var(--azul-marinho);
  min-height: 44px;
  padding: 0 24px;
}
.header-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-light {
  background: var(--bg-light);
}

.section-silk {
  background: var(--white);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  filter: saturate(0.85);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 27, 61, 0.95) 0%, rgba(14, 27, 61, 0.8) 40%, rgba(14, 27, 61, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  text-align: center;
}

.hero-copy {
  width: min(100%, 920px);
  display: grid;
  justify-items: center;
  margin: 0 auto;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-copy > * {
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy .hero-badge { animation-delay: 0.1s; }
.hero-copy h1 { animation-delay: 0.25s; }
.hero-copy .hero-text { animation-delay: 0.4s; }
.hero-copy .hero-actions { animation-delay: 0.55s; }

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bege-champagne);
  margin-bottom: 24px;
}

.hero-badge::before, .hero-badge::after {
  content: '✦';
  margin: 0 8px;
  color: var(--reed-inverno);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero-text {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
  color: rgba(238, 229, 216, 0.8);
  max-width: 760px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238, 229, 216, 0.6);
}
.hero-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── AUTO CAROUSEL ─── */
.auto-carousel {
  background: var(--reed-inverno);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.auto-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.strip-item {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.strip-item::after {
  content: '✦';
  color: var(--bege-champagne);
  font-size: 14px;
  font-style: normal;
}

/* ─── METODO B.O.A.R.O. SECTION ─── */
.section-boaro {
  background: var(--bg-light);
  padding: 100px 0;
  overflow: hidden;
}

.boaro-main-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(38px, 8vw, 84px);
  letter-spacing: 0.1em;
  color: var(--azul-marinho);
  margin-bottom: 24px;
  line-height: 1;
}

.boaro-arrows {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 20px;
}

.boaro-arrows svg {
  width: 100%;
  height: auto;
  display: block;
}

.boaro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 60px; /* spacing for vertical curve offset */
  align-items: start;
}

.boaro-card {
  position: relative;
  background: var(--azul-marinho);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 42px 20px 28px;
  box-shadow: 0 10px 30px rgba(14, 27, 61, 0.03);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.boaro-card.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.92);
}

.boaro-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delay for cards entrance */
.boaro-card:nth-child(1).reveal { transition-delay: 0ms; }
.boaro-card:nth-child(2).reveal { transition-delay: 150ms; }
.boaro-card:nth-child(3).reveal { transition-delay: 300ms; }
.boaro-card:nth-child(4).reveal { transition-delay: 450ms; }
.boaro-card:nth-child(5).reveal { transition-delay: 600ms; }

/* Arch layout offsets for desktop */
@media (min-width: 1025px) {
  .boaro-card {
    margin-top: 0;
  }
}

/* Hover pulse and lift effect */
.boaro-card:hover {
  transition-delay: 0ms !important;
  animation: boaroPulse 0.35s ease-out forwards;
  box-shadow: 0 15px 35px rgba(14, 27, 61, 0.08);
  border-color: rgba(215, 200, 179, 0.7);
}

@keyframes boaroPulse {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    transform: translateY(-6px) scale(1);
  }
}

/* Card frame and corners decoration */
.card-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 200, 179, 0.35);
  border-radius: 8px;
  pointer-events: none;
}

.card-frame .corner {
  position: absolute;
  width: 24px;
  height: 24px;
}
.card-frame .corner.tl { top: -1px; left: -1px; }
.card-frame .corner.tr { top: -1px; right: -1px; }
.card-frame .corner.bl { bottom: -1px; left: -1px; }
.card-frame .corner.br { bottom: -1px; right: -1px; }

/* Card contents */
.boaro-card-icon {
  color: var(--white);
  margin-bottom: 22px;
}

.boaro-card-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.boaro-card-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bege-champagne);
  margin-bottom: 14px;
  line-height: 1.3;
}

.boaro-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.65;
  color: var(--white);
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .boaro-arrows {
    display: none;
  }
  .boaro-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding-bottom: 40px;
  }
  .boaro-card {
    padding: 36px 12px 24px;
  }
  @media (min-width: 769px) {
    .boaro-card {
      margin-top: 0;
    }
  }
}

@media (max-width: 768px) {
  .section-boaro {
    padding: 72px 0;
  }
  .boaro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 0;
  }
  .boaro-card {
    margin-top: 0 !important;
    padding: 40px 24px 28px;
  }
}

/* ─── FEATURES / SERVICES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.3s;
}

.feature-card:hover {
  background: #fdfdfc;
}

.feature-icon {
  font-size: 32px;
  color: var(--reed-inverno);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(14, 27, 61, 0.7);
  line-height: 1.6;
}

/* ─── PLATFORM / BIO ─── */
.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.platform-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(14, 27, 61, 0.05);
}

.platform-image-wrap {
  height: 100%;
  min-height: 480px;
  background: #05080d;
}

.platform-image-container {
  width: 210px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}

.platform-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.platform-content {
  padding: 48px 48px 48px 0;
}

.platform-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--reed-inverno);
  margin-bottom: 16px;
}

.platform-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--azul-marinho);
  margin-bottom: 16px;
}

.platform-desc {
  font-size: 16px;
  color: rgba(14, 27, 61, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── IMPACTO / RESULTADOS ─── */
/* COMMUNITY */
.section-community {
  position: relative;
  overflow: hidden;
  background: #0E1B3D;
  color: var(--white);
  padding: 90px 0 100px;
}

.section-community::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(238, 229, 216, 0.05) 0 1px, transparent 1px 120px),
    radial-gradient(circle at 16% 24%, rgba(78, 0, 0, 0.32), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(238, 229, 216, 0.08), transparent 30%);
  opacity: 0.75;
  pointer-events: none;
}

.community-bg-word {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 229, 216, 0.08);
  font-size: clamp(62px, 12vw, 168px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.community-inner {
  position: relative;
  z-index: 1;
}

.community-hero {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.community-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.community-preview {
  position: relative;
  padding: 18px 18px 26px;
  background: linear-gradient(180deg, #15213c, #081020);
  border: 1px solid rgba(238, 229, 216, 0.2);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.community-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 74%;
  height: 20px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(238, 229, 216, 0.45), transparent);
  border-radius: 50%;
  filter: blur(6px);
}

.community-video-expanded {
  overflow: hidden;
}

body.community-video-expanded .community-hero.reveal,
body.community-video-expanded .community-hero.reveal.is-visible {
  transform: none !important;
}

.community-preview.is-expanded,
.community-preview:fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  padding: clamp(10px, 2vw, 24px);
  background: #020713;
  border: 0;
  border-radius: 0;
}

.community-preview.is-expanded::after,
.community-preview:fullscreen::after {
  display: none;
}

.community-preview.is-expanded .community-screen,
.community-preview:fullscreen .community-screen {
  width: min(calc(100vw - 32px), 150vh);
  max-height: 100%;
}

.community-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  background: #020713;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.community-video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.community-video-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.community-video-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--azul-marinho);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.community-video-button:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.community-video-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-screen span {
  margin-bottom: 8px;
  color: var(--bege-champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-screen strong {
  max-width: 360px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.community-screen p {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.community-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  color: var(--azul-marinho);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.community-play svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 16px;
  color: var(--azul-marinho);
  background: var(--white);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.community-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.community-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.community-details p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.community-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.community-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(238, 229, 216, 0.22);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.community-purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.community-price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 12px 18px;
  color: rgba(255, 225, 0, 0.856);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(238, 229, 216, 0.18);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.community-price strong,
.community-price b {
  font: inherit;
}

.community-price span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.community-price small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.community-buy {
  border-radius: 4px;
}

.community-buy svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.community-modules {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 66px;
  align-items: stretch;
}

.community-module-card {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(238, 229, 216, 0.12);
  border-radius: 8px;
}

.community-module-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  flex: 0 0 auto;
}

.community-module-card > div {
  flex: 1;
  min-height: 126px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.community-module-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 10px;
  color: var(--azul-marinho);
  background: var(--white);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-module-card strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
}

.community-module-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.community-module-card-text {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.2), rgba(7, 19, 38, 0.94)),
    linear-gradient(135deg, rgba(238, 229, 216, 0.12), transparent 42%);
}

.community-module-card-text > div {
  min-height: auto;
  padding: 0;
  background: transparent;
}

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

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
}

.result-item strong {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--bege-champagne);
  line-height: 1;
  margin-bottom: 12px;
}

.result-item span {
  font-size: 14px;
  color: rgba(238, 229, 216, 0.7);
}

/* ─── PROVA SOCIAL ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(14, 27, 61, 0.03);
}

.testi-card blockquote {
  margin: 0 0 24px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--azul-marinho);
  line-height: 1.4;
}

.testi-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reed-inverno);
}

/* ─── CONCIERGE FULLSCREEN ─── */
.section-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: var(--white);
}

.concierge-layout {
  width: 100%;
  max-width: 1160px;
}

.concierge-copy {
  margin-bottom: 40px;
}

.concierge-tool {
  background: var(--azul-marinho);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.mentorship-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: start;
}

.mentorship {
  display: grid;
  justify-items: start;
  gap: 28px;
  text-align: left;
  animation: fadeIn 0.4s ease forwards;
}

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

.mentorship-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.8;
}

.mentorship-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

.mentorship-benefits span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #fdfdfc;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  color: var(--azul-marinho);
}

.mentorship-benefits span::before {
  content: "✓";
  flex: 0 0 auto;
  margin-right: 12px;
  color: var(--reed-inverno);
  font-weight: 800;
}

.mentorship-benefits span:hover {
  border-color: var(--reed-inverno);
  background: #f7eaea;
  color: var(--reed-inverno);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.mentorship-investment {
  display: grid;
  justify-items: start;
  gap: 6px;
  width: min(100%, 420px);
  margin-top: 8px;
  padding: 28px 24px;
  background: #fdfdfc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  justify-self: center;
}

.mentorship-investment > span {
  color: var(--reed-inverno);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mentorship-investment strong {
  color: var(--azul-marinho);
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.mentorship-investment p {
  margin: 2px 0 0;
  color: rgba(14, 27, 61, 0.7);
  font-size: 15px;
  font-weight: 600;
}

.mentorship-investment small {
  margin-top: 8px;
  color: rgba(14, 27, 61, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mentorship-cta {
  margin-top: 4px;
}

.mentorship-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mentorship-note {
  max-width: 420px;
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
}

.mentorship-filter {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.mentorship-filter-label {
  color: var(--bege-champagne);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

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

.steps span {
  display: grid;
  place-items: center;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  color: transparent;
}

.steps span.is-active {
  background: var(--bege-champagne);
}

.quiz {
  display: grid;
  gap: 24px;
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.is-active {
  display: grid;
  gap: 14px;
  animation: fadeIn 0.4s ease forwards;
}

.quiz legend {
  width: 100%;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.quiz label {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #fdfdfc;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--azul-marinho);
  font-size: 14px;
  font-weight: 500;
}

.quiz label:hover {
  border-color: var(--reed-inverno);
  background: #f7eaea;
  color: var(--reed-inverno);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.quiz input {
  width: 16px;
  height: 16px;
  accent-color: var(--reed-inverno);
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.concierge-tool .quiz-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.concierge-tool .quiz-actions .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* ─── AGENDA ─── */
.section-agenda {
  padding-top: 0;
  padding-bottom: 100px;
}

.agenda-layout {
  max-width: 600px;
}

.booking {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(14, 27, 61, 0.05);
}

.booking-group {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-marinho);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 8px 0;
}

.time-grid label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fdfdfc;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
}

.time-grid label:hover {
  border-color: var(--reed-inverno);
}

.time-grid input {
  display: none;
}

.time-grid input:checked + label, .time-grid label:has(input:checked) {
  background: var(--azul-marinho);
  color: var(--white);
  border-color: var(--azul-marinho);
}

input[type="text"],
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fdfdfc;
  color: var(--azul-marinho);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
  border-color: var(--azul-marinho);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--azul-marinho);
  color: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
  color: var(--bege-champagne);
}

.footer-brand p {
  color: rgba(238, 229, 216, 0.7);
  font-size: 14px;
  max-width: 300px;
}

.site-footer nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(238, 229, 216, 0.7);
  transition: color 0.2s;
}

.site-footer nav a:hover {
  color: var(--bege-champagne);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #22c05c;
  color: white;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-block {
    grid-template-columns: 1fr;
  }
  .platform-image-wrap {
    min-height: 300px;
  }
  .platform-content {
    padding: 32px;
  }
  .community-content {
    grid-template-columns: 1fr;
  }
  .mentorship-shell {
    grid-template-columns: 1fr;
  }
  .mentorship,
  .mentorship-investment {
    justify-items: center;
    text-align: center;
  }
  .mentorship-intro {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 16px;
    border-radius: 0;
    margin: -16px -24px 0 -24px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links, .header-cta {
    display: none;
  }
  .icon-button {
    display: grid;
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
  }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--azul-marinho);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border-dark);
  }
  
  .hero {
    min-height: auto;
    padding: 140px 0 72px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.08;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-badge {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
  }
  .hero-text {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 36px;
  }
  .hero-actions {
    align-items: stretch;
    gap: 26px;
  }
  .hero-actions .btn-primary {
    width: 100%;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 10px;
    line-height: 1.5;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .result-grid, .testi-grid {
    grid-template-columns: 1fr;
  }
  .section-community {
    padding: 72px 0;
  }
  .community-bg-word {
    top: 18px;
    font-size: 58px;
  }
  .community-preview {
    padding: 12px 12px 20px;
  }
  .community-screen {
    min-height: 0;
  }
  .community-copy h2 {
    font-size: 29px;
  }
  .community-purchase {
    align-items: stretch;
  }
  .community-price,
  .community-buy {
    width: 100%;
  }
  .concierge-tool {
    padding: 32px 24px;
  }
  .mentorship-shell {
    gap: 34px;
  }
  .mentorship {
    gap: 22px;
  }
  .mentorship-benefits {
    grid-template-columns: 1fr;
  }
  .mentorship-benefits span {
    min-height: 54px;
    padding: 14px 16px;
  }
  .mentorship-investment {
    padding: 24px 18px;
  }
  .mentorship-cta {
    width: 100%;
  }
  .quiz-actions {
    flex-direction: column-reverse;
  }
  .quiz-actions .btn-ghost,
  .quiz-actions .btn-primary {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .site-footer nav {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .community-benefits span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SOBRE SECTION ─── */
.section-sobre {
  background: var(--bg-dark);
  padding: 100px 0;
  overflow: hidden;
}

.sobre-card {
  display: flex;
  background: var(--reed-inverno);
  background: linear-gradient(145deg, rgba(51, 0, 7, 0.9), rgba(61, 14, 16, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.sobre-content {
  flex: 0 0 60%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.sobre-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.sobre-text p {
  margin-bottom: 20px;
}

.sobre-text p:last-child {
  margin-bottom: 0;
}

.sobre-text strong {
  color: var(--white);
  font-weight: 700;
}

.sobre-image {
  flex: 0 0 40%;
  position: relative;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .sobre-card {
    flex-direction: column;
    border-radius: 16px;
  }
  .sobre-image {
    order: -1;
  }
  .sobre-image img {
    height: 450px;
  }
  .sobre-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .sobre-image img {
    height: 350px;
  }
  .sobre-content {
    padding: 30px 20px;
  }
  .sobre-title {
    font-size: clamp(30px, 8vw, 34px);
    margin-bottom: 20px;
  }
  .sobre-text {
    font-size: clamp(16px, 4vw, 17px);
  }
}

/* ─── FAQ SECTION ─── */
.faq-container {
  max-width: 1200px;
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--reed-inverno);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  color: var(--azul-marinho);
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--azul-marinho);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.faq-question:hover {
  opacity: 0.9;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  border-radius: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  border-radius: 2px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-wrapper {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-inner p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .faq-container {
    padding: 60px 0;
  }
  .faq-question {
    padding: 20px;
    font-size: 17px;
  }
  .faq-answer-inner {
    padding: 0 20px 20px 20px;
  }
  .faq-answer-inner p {
    font-size: 15px;
  }
}

/* ─── COMMUNITY RESPONSIVE FIXES ─── */
@media (max-width: 1024px) {
  .community-modules {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .community-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .community-preview {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .community-modules {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .community-modules {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    width: 100%;
  }

  .community-module-card {
    width: 100%;
    height: 100%;
  }

  /* Centraliza o último card quando houver quantidade ímpar */
  .community-module-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 8px);
  }
}
/* ─── ESPAÇAMENTO REDUZIDO O CURSO E FAQ ─── */
#servicos, #faq {
  padding-top: 60px !important;
}

.section-boaro, .section-sobre {
  padding-bottom: 0px !important;
}
