/* ==========================================================================
   DESENVOLVA VOCÊ — Design System
   Paleta extraída do portfólio de marca (Canva):
     --navy   #12214A  (fundo escuro, texto de destaque)
     --orange #E6821F  (ação, energia)
     --orange-light #EB9B54 (apoio, blobs secundários)
   Tipografia: Poppins (display/headlines) + Nunito Sans (corpo) — mesmas
   famílias usadas no material de marca em PDF.
   ========================================================================== */

:root {
  --navy: #12214A;
  --navy-800: #1A2C5C;
  --navy-700: #223874;
  --orange: #E6821F;
  --orange-600: #CF6F12;
  --orange-light: #EB9B54;
  --cream: #FCF9F5;
  --paper: #FFFFFF;
  --ink: #1B2036;
  --ink-soft: #4A5170;
  --line: #E7E2D9;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --container: 1160px;
  --radius-blob: 40% 60% 55% 45% / 45% 40% 60% 55%;
  --shadow-soft: 0 20px 45px -20px rgba(18, 33, 74, 0.35);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 0.6em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.7em;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 3px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(230, 130, 31, 0.65);
}
.btn-primary:hover { background: var(--orange-600); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ---------- Reveal on scroll (single orchestrated effect) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 6px 24px -12px rgba(18,33,74,0.25);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.site-header.is-scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 0.65em 1.3em; font-size: 0.9rem; }
.nav-cta-mobile { display: none; }
.site-header:not(.is-scrolled) .header-cta .btn-outline-navy {
  border-color: #fff; color: #fff;
}
.site-header:not(.is-scrolled) .header-cta .btn-outline-navy:hover { background: rgba(255,255,255,0.15); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: background 0.25s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  padding: 150px 0 110px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -12%; right: -10%;
  width: 560px; height: 560px;
  background: var(--orange);
  border-radius: var(--radius-blob);
  opacity: 0.9;
  filter: blur(0.5px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -18%; left: -8%;
  width: 320px; height: 320px;
  background: var(--orange-light);
  border-radius: 58% 42% 40% 60% / 55% 45% 55% 45%;
  opacity: 0.35;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 0.2em;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.15em;
}
.hero h1 span { color: var(--orange-light); }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.4em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: 50% 50% 46% 54% / 55% 55% 45% 45%;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 0.95;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--navy);
  border-radius: 18px;
  padding: 14px 26px;
  display: flex;
  gap: 26px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--orange); }
.hero-stats span { font-size: 0.72rem; color: var(--ink-soft); }

/* ==========================================================================
   SECTION HEADINGS (shared)
   ========================================================================== */
.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.about {
  padding: 110px 0 100px;
  background: var(--paper);
}
.about .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; order: 2; }
.about-media img {
  border-radius: 42% 58% 60% 40% / 48% 42% 58% 52%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.about-badge {
  position: absolute;
  top: -22px; left: -22px;
  background: var(--orange);
  color: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 14px 30px -14px rgba(230,130,31,0.6);
  line-height: 1.2;
}
.about-badge strong { display: block; font-size: 1.5rem; }
.about-badge span { font-size: 0.75rem; font-weight: 500; opacity: 0.95; }
.about-text p { color: var(--ink-soft); }
.about-text p strong { color: var(--navy); }
.about-mission {
  margin-top: 1.6em;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 4px 16px 16px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

/* ==========================================================================
   POR QUE VALE A PENA
   ========================================================================== */
.why {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  right: -14%; top: -20%;
  width: 480px; height: 480px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.why .container {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why h2 { color: #fff; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.9);
}
.why-list .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.why-list b { color: #fff; }
.why-media img {
  border-radius: 55% 45% 42% 58% / 50% 55% 45% 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.55);
}

/* ==========================================================================
   TREINAMENTOS
   ========================================================================== */
.trainings {
  padding: 110px 0 100px;
  background: var(--cream);
}
.trainings-intro {
  background: var(--navy);
  border-radius: 28px;
  padding: 56px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.trainings-intro::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: var(--orange);
  opacity: 0.85;
  border-radius: var(--radius-blob);
}
.trainings-intro-text { position: relative; z-index: 1; color: #fff; }
.trainings-intro-text .eyebrow { color: var(--orange-light); }
.trainings-intro-text h2 { color: #fff; margin-bottom: 0.3em; }
.trainings-intro-text p { color: rgba(255,255,255,0.8); max-width: 460px; }
.trainings-intro-media { position: relative; z-index: 1; }
.trainings-intro-media img {
  border-radius: 45% 55% 50% 50% / 55% 50% 50% 45%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.training-card {
  background: var(--paper);
  border-radius: 28px 28px 28px 8px;
  padding: 22px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.training-card:hover, .training-card:focus-within {
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.training-card-top { display: flex; gap: 16px; align-items: center; }
.training-thumb {
  flex: none;
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--orange-light);
}
.training-thumb img { width: 100%; height: 100%; object-fit: cover; }
.training-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.15em;
}
.training-tagline {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}
.training-toggle {
  margin-left: auto;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.training-card.is-open .training-toggle {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.training-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.training-detail-inner { overflow: hidden; }
.training-card.is-open .training-detail { grid-template-rows: 1fr; }
.training-detail-content {
  padding-top: 18px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.training-detail-content p { color: var(--ink-soft); font-size: 0.95rem; }
.training-detail-content ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.training-detail-content ul li {
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.training-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 9px;
  background: var(--orange);
  border-radius: 3px;
}
.training-ideal {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 4px 14px 14px 4px;
  border-left: 3px solid var(--orange);
}

/* ==========================================================================
   ESPECIALISTAS
   ========================================================================== */
.experts {
  padding: 110px 0;
  background: var(--paper);
}
.expert {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 90px;
}
.expert:last-child { margin-bottom: 0; }
.expert:nth-child(odd) .expert-media { order: 1; }
.expert:nth-child(even) .expert-media { order: 2; }
.expert:nth-child(even) .expert-text { order: 1; }
.expert-media img {
  border-radius: 46% 54% 58% 42% / 52% 46% 54% 48%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.expert-role { color: var(--orange); font-family: var(--font-display); font-weight: 600; margin-bottom: 0.2em; }
.expert-text h3 { font-size: 1.9rem; margin-bottom: 0.1em; }
.expert-text p { color: var(--ink-soft); }
.expert-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
  margin: 26px 0 10px;
}
.expert-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
}
.expert-stats div span { font-size: 0.78rem; color: var(--ink-soft); }
.expert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.expert-badges span {
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ==========================================================================
   CLIENTES
   ========================================================================== */
.clients {
  padding: 90px 0 110px;
  background: var(--cream);
  text-align: center;
}
.clients-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.clients-frame img { width: 100%; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact {
  padding: 110px 0 100px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  left: -10%; bottom: -25%;
  width: 480px; height: 480px;
  background: var(--orange);
  opacity: 0.9;
  border-radius: var(--radius-blob);
}
.contact .container { position: relative; z-index: 1; text-align: center; max-width: 680px; }
.contact h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.contact p.lead { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2em; }
.contact-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 2.4em; }
.contact-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
}
.contact-details div { text-align: left; }
.contact-details span.label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-light);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-details a { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.contact-details a:hover { color: var(--orange-light); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 38px; filter: brightness(0) invert(1); opacity: 0.9; }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.45);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero .container,
  .about .container,
  .why .container,
  .trainings-intro,
  .expert {
    grid-template-columns: 1fr;
  }
  .about-media, .why-media, .trainings-intro-media { order: -1; }
  .expert:nth-child(odd) .expert-media,
  .expert:nth-child(even) .expert-media,
  .expert:nth-child(even) .expert-text { order: -1; }
  .training-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 130px; }
  .hero-stats { position: static; transform: none; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .hero { padding-top: 120px; overflow: hidden; }
  .hero::before {
    width: 320px; height: 320px;
    top: -8%; right: -22%;
    opacity: 0.55;
  }
  .hero::after { width: 200px; height: 200px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { color: rgba(255,255,255,0.95); }

  .nav-links, .header-cta-desktop { display: none; }
  .header-cta.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 24px 26px;
    gap: 16px;
    box-shadow: 0 20px 30px -20px rgba(0,0,0,0.3);
  }
  .header-cta.is-open .nav-links a { color: var(--navy); }
  .nav-cta-mobile { display: block; margin-top: 6px; }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .training-grid { grid-template-columns: 1fr; }
  .expert-stats { grid-template-columns: repeat(2, auto); row-gap: 18px; }
  .trainings-intro { padding: 36px 24px; }
  .contact-details { gap: 28px; }
  .why::before { display: none; }
}
