/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #163b50;
  color: #e0e6f0;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --blue:      #163b50;
  --blue-dark: #0e2d3f;
  --accent:    #f6422e;
  --text:      #c8d5e8;
  --white:     #ffffff;
  --card-bg:   #0e2d3f;
  --card-border: rgba(255,255,255,.1);
  --max-w:     1200px;
  --radius:    14px;
}

/* ── UTILITIES ───────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.section   { padding: 80px 0; }
.tag       { display: inline-block; background: rgba(255,255,255,.12);
              border: 1px solid rgba(255,255,255,.35); color: #fff;
              font-size: .75rem; font-weight: 600; letter-spacing: .08em;
              text-transform: uppercase; padding: 4px 14px; border-radius: 30px; }
/* tag em seções claras */
.stats .tag, .challenges .tag, .method .tag {
  background: rgba(22,59,80,.1);
  border-color: var(--blue);
  color: var(--blue);
}
.divider   { width: 60px; height: 3px; background: var(--accent);
              border-radius: 2px; margin: 16px 0; }
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,59,80,.5); }
.btn-primary { background: #fff; color: var(--blue); }
.btn-primary:hover { background: #e8eef2; box-shadow: 0 8px 24px rgba(255,255,255,.2); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.12); box-shadow: none; }
.btn-accent { background: var(--accent); color: #fff; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.25; }
.section-title b { color: rgba(255,255,255,.85); }
.section-subtitle { font-size: 1rem; color: var(--text); margin-top: 12px; max-width: 600px; }

/* ── HEADER ────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22,59,80,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%; max-width: var(--max-w); margin: 0 auto;
}
.logo { width: 180px; }
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: color .2s;
}
nav a:hover, nav a.active { color: #fff; }
.nav-cta { background: #1a6fa8; color: #fff !important;
           padding: 9px 22px; border-radius: 7px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ── NAV DROPDOWN ───────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-arrow { font-size: .65rem; transition: transform .2s; line-height: 1; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-submenu {
  display: none;
  position: absolute; top: 100%; left: 0;
  padding-top: 14px;
  min-width: 320px;
  z-index: 200;
}
.nav-submenu-inner {
  background: rgba(22,59,80,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.nav-dropdown:hover .nav-submenu { display: block; }
.nav-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  transition: color .2s, background .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-submenu a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-submenu a:first-child { border-radius: 10px 10px 0 0; }
.nav-submenu a:last-child  { border-radius: 0 0 10px 10px; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--blue);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.04) 0%, transparent 65%);
}
.hero-text {
  padding: 60px 6%;
  z-index: 1;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text h1 b { color: #fff; }
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 520px; margin-bottom: 36px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, #163b50 0%, transparent 40%);
}

/* ── STATS SECTION ─────────────────────────────── */
.stats { background: #ffffff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: #f9fafc;
  border: 1px solid rgba(22,59,80,.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, border-color .3s;
  box-shadow: 0 2px 12px rgba(22,59,80,.06);
}
.stat-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 8px 24px rgba(22,59,80,.1); }
.stat-card img { width: 80px; margin: 0 auto 18px; }
.stat-card h3 { font-size: 1.1rem; color: var(--blue); font-weight: 600; margin-bottom: 12px; }
.stat-card p { font-size: .9rem; color: #4a6080; }

/* ── CAROUSEL ──────────────────────────────────── */
.carousel-section { background: var(--blue); padding: 40px 0; overflow: hidden; }
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex; gap: 16px;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-track img {
  width: 320px; height: 220px;
  object-fit: cover; border-radius: 10px;
  flex-shrink: 0;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CEO SECTION ───────────────────────────────── */
.ceo-section { background: var(--blue); }
.ceo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ceo-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.ceo-image img { width: 100%; height: 500px; object-fit: cover; }
.ceo-image-label {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--accent); color: #fff;
  font-size: .8rem; font-weight: 600; padding: 6px 14px;
  border-radius: 20px;
}
.ceo-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; line-height: 1.2; margin-bottom: 20px; }
.ceo-text h2 b { color: #fff; }
.ceo-text p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.course-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 10px 14px;
  font-size: .88rem; color: rgba(255,255,255,.8);
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.course-item:hover { border-color: #fff; background: rgba(255,255,255,.15); color: #fff; }
.course-item::before { content: '→'; color: #fff; font-weight: 700; flex-shrink: 0; }

/* ── CONTENT VISIBILITY (abaixo do fold) ────────── */
.challenges, .ceo-quote, .method, .testimonials, .story, .cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ── CHALLENGES ────────────────────────────────── */
.challenges { background: #ffffff; }
.challenges .section-title { color: var(--blue); }
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.challenge-card {
  background: #f9fafc;
  border: 1px solid rgba(22,59,80,.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s, border-color .3s;
  box-shadow: 0 2px 12px rgba(22,59,80,.06);
}
.challenge-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 8px 24px rgba(22,59,80,.1); }
.challenge-card img { width: 70px; margin: 0 auto 16px; }
.challenge-card h4 { font-size: 1.05rem; color: var(--blue); margin-bottom: 10px; }
.challenge-card p { font-size: .85rem; color: #4a6080; margin-bottom: 18px; }
.challenge-card .btn { font-size: .82rem; padding: 8px 18px; }
/* btn-outline em seção clara */
.challenges .btn-outline { color: var(--blue); border-color: var(--blue); }
.challenges .btn-outline:hover { background: var(--blue); color: #fff; }

/* ── CEO QUOTE ──────────────────────────────────── */
.ceo-quote { background: var(--blue-dark); }
.ceo-quote-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.shorts-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(246,66,46,.4);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(246,66,46,.15);
}
.shorts-wrapper iframe,
.shorts-wrapper .yt-facade { aspect-ratio: 9/16; }

/* ── YOUTUBE FACADE ──────────────────────────────── */
.yt-facade {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  display: block;
  width: 100%;
}
.yt-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.yt-facade:hover img { transform: scale(1.04); }
.yt-facade-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25);
  transition: background .2s;
}
.yt-facade:hover .yt-facade-play { background: rgba(0,0,0,.5); }
.yt-facade iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.video-wrapper .yt-facade { aspect-ratio: 16/9; }
.quote-mark {
  font-size: 7rem;
  line-height: 0.55;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  display: block;
}
.ceo-quote-text blockquote {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: #fff;
  font-weight: 500;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 36px;
  border: none;
  padding: 0;
}
.quote-author { display: flex; flex-direction: column; gap: 5px; }
.quote-line {
  width: 44px; height: 3px;
  background: var(--accent);
  border-radius: 2px; margin-bottom: 10px;
}
.quote-author strong { color: #fff; font-size: 1rem; font-weight: 700; }
.quote-author span   { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ── METHOD PILLARS ─────────────────────────────── */
.method { background: #ffffff; }
.method-header { text-align: center; margin-bottom: 56px; }
.method-header .tag { margin-bottom: 16px; }
.method-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--blue); }
.method-header h2 b { color: var(--blue); }
.challenges .section-title b { color: var(--blue); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: #f9fafc;
  border: 1px solid rgba(22,59,80,.1);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 12px rgba(22,59,80,.06);
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(22,59,80,.12); }
.pillar-number {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
}
.pillar img { width: 80px; margin: 0 auto 18px; }
.pillar h3 { color: var(--blue); font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { color: #4a6080; font-size: .9rem; }

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials { background: var(--blue); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.videos-grid--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-dark);
  border: 1px solid rgba(255,255,255,.1);
}
.video-wrapper iframe {
  width: 100%; aspect-ratio: 16/9;
  display: block; border: 0;
}

/* ── STORY / WHY ─────────────────────────────────── */
.story { background: var(--blue-dark); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.story-text h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); color: #fff; margin-bottom: 24px; }
.story-text h2 b { color: #fff; }
.story-text p { color: rgba(255,255,255,.75); margin-bottom: 16px; font-size: .97rem; }
.story-text p strong { color: #fff; }
.story-tabs { display: flex; flex-direction: column; justify-content: center; }

/* ── TABS ──────────────────────────────────────── */
.tabs { margin-top: 36px; }
.tabs-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.tab-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  padding: 9px 18px; border-radius: 6px;
  font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.tab-panel {
  display: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.tab-panel.active { display: block; }
.tab-panel p { color: rgba(255,255,255,.8); margin-bottom: 12px; }
.tab-panel ul { padding-left: 0; }
.tab-panel li {
  color: rgba(255,255,255,.75); font-size: .9rem; padding: 6px 0 6px 20px;
  position: relative; border-bottom: 1px solid rgba(255,255,255,.05);
}
.tab-panel li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

/* ── CAROUSEL 2 ───────────────────────────────── */
.carousel-section-2 { background: var(--blue); padding: 40px 0; overflow: hidden; }
.carousel-track-2 {
  display: flex; gap: 16px;
  animation: scroll2 50s linear infinite;
  width: max-content;
}
.carousel-track-2:hover { animation-play-state: paused; }
.carousel-track-2 img {
  width: 280px; height: 200px;
  object-fit: cover; border-radius: 10px; flex-shrink: 0;
}
@keyframes scroll2 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: var(--blue-dark);
  text-align: center;
  padding: 110px 5%;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
  pointer-events: none;
}
.cta-glow--left  { background: #fff;        top: -100px; left: -150px; }
.cta-glow--right { background: var(--accent); bottom: -100px; right: -150px; }
.cta-inner { position: relative; z-index: 1; }
.cta-tag {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin: 24px 0 20px;
  letter-spacing: -.02em;
}
.cta-title b { color: var(--accent); }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-btn-primary {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,255,255,.2);
}
.cta-btn-whatsapp {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  transition: background .2s, border-color .2s;
}
.cta-btn-whatsapp:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  box-shadow: none;
  transform: translateY(-3px);
}
.cta-note {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { width: 180px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-col li a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,.5); font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.8); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .challenges-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid    { grid-template-columns: 1fr 1fr; }
  .videos-grid     { grid-template-columns: 1fr; }
  .story-inner     { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .ceo-quote-inner { grid-template-columns: 1fr; }
  .ceo-quote-video { max-width: 280px; margin: 0 auto; }
  .ceo-quote-text  { text-align: center; }
  .quote-mark      { text-align: center; }
  .quote-line      { margin: 0 auto 10px; }
}

@media (max-width: 768px) {
  /* Geral */
  .section          { padding: 36px 0; }
  .section-title    { font-size: 1.35rem; }
  .btn              { padding: 11px 22px; font-size: .88rem; }

  /* Header */
  nav               { display: none; }
  .hamburger        { display: flex; }
  .logo             { width: 140px; }
  .header-inner     { padding: 10px 5%; }

  /* Hero */
  .hero             { grid-template-columns: 1fr; min-height: auto; }
  .hero-text        { padding: 32px 5% 20px; }
  .hero-text h1     { font-size: 1.6rem; margin-bottom: 12px; }
  .hero-text p      { font-size: .9rem; margin-bottom: 20px; }
  .hero-buttons     { flex-wrap: nowrap; gap: 8px; }
  .hero-buttons .btn { flex: 1; padding: 10px 8px; font-size: .78rem; white-space: nowrap; min-width: 0; }
  .hero-image       { height: 300px; }
  .hero-image img   { object-position: center 20%; }
  .hero-image::after { background: linear-gradient(to top, #163b50 0%, transparent 60%); }

  /* Stats — carrossel lateral */
  .stats-grid {
    display: flex !important;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 5% 16px;
    gap: 14px;
    margin: 0 -5%;
  }
  .stats-grid::-webkit-scrollbar { display: none; }
  .stat-card        { flex: 0 0 78vw; scroll-snap-align: start; padding: 20px 16px; }
  .stat-card img    { width: 52px; margin-bottom: 10px; }
  .stat-card h3     { font-size: .95rem; margin-bottom: 6px; }
  .stat-card p      { font-size: .82rem; }

  /* Carrossel */
  .carousel-section  { padding: 18px 0; }
  .carousel-track img { width: 200px; height: 135px; }
  .carousel-section-2 { padding: 18px 0; }
  .carousel-track-2 img { width: 180px; height: 125px; }

  /* CEO / História */
  .ceo-inner        { grid-template-columns: 1fr; gap: 20px; }
  .ceo-image img    { height: 220px; }
  .ceo-text h2      { font-size: 1.4rem; margin-bottom: 12px; }
  .ceo-text p       { margin-bottom: 14px; font-size: .88rem; }
  .course-grid      { grid-template-columns: 1fr; gap: 8px; }
  .course-item      { padding: 8px 12px; font-size: .82rem; }

  /* Desafios — carrossel lateral */
  .challenges-grid {
    display: flex !important;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 5% 16px;
    gap: 14px;
    margin: 24px -5% 0;
  }
  .challenges-grid::-webkit-scrollbar { display: none; }
  .challenge-card   { flex: 0 0 72vw; scroll-snap-align: start; padding: 18px 14px; }
  .challenge-card img { width: 48px; margin-bottom: 10px; }
  .challenge-card h4  { font-size: .92rem; margin-bottom: 6px; }
  .challenge-card p   { font-size: .78rem; margin-bottom: 12px; }
  .challenge-card .btn { font-size: .78rem; padding: 6px 14px; }

  /* CEO Quote */
  .ceo-quote-inner  { gap: 20px; }
  .ceo-quote-video  { max-width: 180px; }
  .quote-mark       { font-size: 3.5rem; margin-bottom: 8px; }
  .ceo-quote-text blockquote { font-size: .92rem; margin-bottom: 16px; line-height: 1.55; }
  .quote-author strong { font-size: .9rem; }
  .quote-author span   { font-size: .8rem; }

  /* Método / Pilares — carrossel lateral */
  .method-header    { margin-bottom: 30px; }
  .method-header h2 { font-size: 1.35rem; }
  .pillars-grid {
    display: flex !important;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 5% 16px;
    gap: 14px;
    margin: 0 -5%;
  }
  .pillars-grid::-webkit-scrollbar { display: none; }
  .pillar           { flex: 0 0 75vw; scroll-snap-align: start; padding: 32px 18px 24px; }
  .pillar img       { width: 52px; margin-bottom: 12px; }
  .pillar h3        { font-size: 1rem; margin-bottom: 6px; }
  .pillar p         { font-size: .82rem; }

  /* Depoimentos */
  .testimonials-header { margin-bottom: 24px; }

  /* A Origem */
  .story-inner      { gap: 24px; }
  .story-text h2    { font-size: 1.35rem; margin-bottom: 14px; }
  .story-text p     { font-size: .87rem; margin-bottom: 10px; }
  .story-tabs       { margin-top: 0; }
  .tabs             { margin-top: 16px; }
  .tab-btn          { padding: 7px 14px; font-size: .8rem; }
  .tab-panel        { padding: 14px 16px; }
  .tab-panel p      { font-size: .85rem; margin-bottom: 8px; }
  .tab-panel li     { font-size: .8rem; padding: 4px 0 4px 18px; }

  /* CTA */
  .cta-section       { padding: 52px 5%; }
  .cta-title         { font-size: 1.7rem; margin: 16px 0 14px; }
  .cta-buttons       { gap: 12px; }
  .cta-btn-primary,
  .cta-btn-whatsapp  { padding: 13px 26px; font-size: .92rem; width: 100%; text-align: center; }

  /* Footer */
  footer            { padding: 32px 0 18px; }
  .footer-inner     { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
  .footer-brand img { width: 140px; margin-bottom: 10px; }
  .footer-brand p   { font-size: .82rem; }
  .footer-col h4    { font-size: .88rem; margin-bottom: 10px; }
  .footer-col ul    { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  .footer-col li a  { font-size: .78rem; }
  .footer-bottom    { padding-top: 16px; font-size: .75rem; }
}

@media (max-width: 480px) {
  .section          { padding: 28px 0; }
  .challenges-grid  { grid-template-columns: 1fr; gap: 10px; }
  .hero-text h1     { font-size: 1.4rem; }
  .hero-image       { height: 260px; }
  .ceo-quote-video  { max-width: 150px; }
}
