:root {
  --rose: #c97777;
  --rose-dark: #a75f63;
  --rose-soft: #efd1cd;
  --blush: #f9e9e6;
  --blush-2: #fff5f2;
  --cream: #fffdfb;
  --white: #ffffff;
  --charcoal: #2f2b2b;
  --muted: #746c6c;
  --line: rgba(173, 104, 105, 0.17);
  --shadow: 0 18px 50px rgba(94, 57, 57, 0.10);
  --shadow-sm: 0 10px 30px rgba(94, 57, 57, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--charcoal); color: #fff; padding: 10px 16px; border-radius: 10px; transition: .2s; }
.skip-link:focus { top: 16px; }

h1,h2,h3 { font-family: var(--font-display); line-height: 1.05; font-weight: 600; }
h1 { font-size: clamp(3.8rem, 7vw, 6.5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(3rem, 5vw, 4.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.65rem; }
p { color: var(--muted); }
.section { padding: 96px 0; }
.soft-section { background: linear-gradient(180deg, #fff 0%, var(--blush-2) 100%); }

/* HEADER */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(121,79,79,.08);
  transition: .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(60,35,35,.08); }
.header-inner { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 215px; height: 76px; object-fit: contain; mix-blend-mode: multiply; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { font-size: .92rem; font-weight: 600; color: #4f4949; position: relative; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--rose); transition: width .25s ease; }
.desktop-nav a:hover::after { width: 100%; }
.header-btn { padding: 12px 18px !important; font-size: .86rem; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--charcoal); transition: .25s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 24px; border-radius: 10px; font-weight: 700; border: 1px solid transparent; transition: .25s ease; }
.btn svg { font-size: 1.25rem; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--rose-dark), #df8a7f); box-shadow: 0 14px 30px rgba(188,111,109,.27); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(188,111,109,.35); }
.btn-outline { border-color: rgba(193,116,114,.45); color: var(--rose-dark); background: rgba(255,255,255,.62); }
.btn-outline:hover { background: #fff; transform: translateY(-2px); }

/* HERO */
.hero { position: relative; min-height: 760px; padding: 150px 0 120px; background: radial-gradient(circle at 86% 20%, rgba(228,151,143,.12), transparent 24%), linear-gradient(180deg, #fff 0%, #fffaf8 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; padding: 8px 18px; border-radius: 8px; background: var(--blush); color: var(--rose-dark); text-transform: uppercase; font-weight: 700; letter-spacing: .13em; font-size: .79rem; margin-bottom: 24px; }
.hero h1 { color: var(--charcoal); max-width: 620px; }
.hero h1 span { display: block; color: var(--rose); }
.hero-text { max-width: 580px; margin-top: 24px; font-size: 1.07rem; }
.hero-text strong { color: #5a5050; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 46px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; line-height: 1.35; color: #7c7272; }
.trust-item strong { color: #514949; }
.trust-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--rose); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.trust-icon svg { width: 21px; height: 21px; }
.hero-visual { min-height: 520px; display: grid; place-items: center; }
.portrait-rings { position: relative; width: min(520px, 92vw); aspect-ratio: 1; display: grid; place-items: center; }
.hero-photo { width: 76%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; position: relative; z-index: 3; box-shadow: 0 24px 65px rgba(75,45,45,.16); border: 8px solid #fff; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 31%; transform: scale(1.02); }
.ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(186,113,113,.38); z-index: 1; }
.ring-a { width: 82%; height: 82%; transform: rotate(6deg); }
.ring-b { width: 90%; height: 90%; border-style: dashed; opacity: .8; }
.ring-c { width: 98%; height: 98%; opacity: .34; border-width: 1px; }
.portrait-rings::before,.portrait-rings::after { content: ''; position: absolute; width: 8px; height: 8px; background: var(--rose); border-radius: 50%; box-shadow: 25px -8px 0 -2px #dca29d, 55px 8px 0 -3px #b46d6d, 80px -2px 0 -2px #e9b6ae, 16px 25px 0 -3px #d49891, 42px 38px 0 -2px #ba7070; opacity: .75; }
.portrait-rings::before { top: 6%; right: 18%; }
.portrait-rings::after { bottom: 6%; left: 12%; transform: rotate(180deg); }
.butterfly { position: absolute; right: 2%; top: 46%; z-index: 5; color: var(--rose); font-size: 2rem; transform: rotate(25deg); text-shadow: 0 6px 16px rgba(178,93,93,.25); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.orb-one { width: 260px; height: 260px; right: -70px; top: 170px; background: radial-gradient(circle, rgba(229,174,168,.28), transparent 68%); }
.orb-two { width: 220px; height: 220px; left: -90px; bottom: 30px; background: radial-gradient(circle, rgba(229,174,168,.2), transparent 68%); }
.wave-divider { position: absolute; left: -5%; right: -5%; bottom: -42px; height: 92px; background: #fff; border-radius: 50% 50% 0 0 / 70% 70% 0 0; transform: rotate(-1.7deg); box-shadow: 0 -10px 0 #fae9e5; }

/* ABOUT */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 68px; }
.about-image-wrap { position: relative; max-width: 500px; }
.about-image-wrap img { width: 100%; height: 610px; object-fit: cover; object-position: center 35%; border-radius: 26px; box-shadow: var(--shadow); }
.about-dot { position: absolute; border-radius: 50%; background: var(--rose-soft); }
.dot-1 { width: 18px; height: 18px; left: -12px; top: 11%; }
.dot-2 { width: 9px; height: 9px; right: -12px; top: 24%; background: var(--rose); }
.dot-3 { width: 12px; height: 12px; right: 18%; bottom: -14px; }
.section-kicker { font-family: var(--font-display); color: var(--rose-dark); font-size: 1.5rem; line-height: 1; margin-bottom: 4px; }
.about-content h2 { color: var(--rose); margin-bottom: 24px; }
.about-content > p { margin-bottom: 13px; font-size: .98rem; }
.about-content strong { color: #544a4a; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mini-card { display: flex; gap: 15px; align-items: flex-start; background: linear-gradient(180deg,#fff,#fff9f7); border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.mini-icon { color: var(--rose); flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--rose-soft); display: grid; place-items: center; }
.mini-icon svg { width: 24px; height: 24px; }
.mini-card h3 { font-family: var(--font-body); font-size: .95rem; margin-bottom: 3px; }
.mini-card p { font-size: .82rem; line-height: 1.5; }

/* SECTION HEADINGS */
.section-heading { margin-bottom: 48px; }
.section-heading.center { text-align: center; }
.section-heading.center .section-kicker { color: #7a6f6f; font-size: 1.1rem; }
.section-heading h2 { color: var(--charcoal); }
.heading-line { display: block; width: 34px; height: 2px; background: var(--rose); margin: 14px auto 0; }

/* CARDS */
.cards-grid { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card,.benefit-card,.program-card { background: rgba(255,255,255,.88); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.feature-card { min-height: 255px; padding: 34px 28px; border-radius: 16px; text-align: center; }
.feature-card h3 { font-family: var(--font-body); font-size: 1.12rem; margin: 17px 0 12px; }
.feature-card p { font-size: .86rem; }
.feature-icon { display: inline-grid; place-items: center; width: 62px; height: 62px; color: var(--rose); }
.feature-icon svg { width: 50px; height: 50px; }
.feature-card:hover,.benefit-card:hover,.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(190,111,111,.3); }
.feature-card,.benefit-card,.program-card { transition: .28s ease; }

/* PROGRAM */
.program { background: #fff; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.program-card { min-height: 118px; border-radius: 14px; padding: 22px; display: flex; align-items: center; gap: 18px; }
.program-card > span { width: 50px; height: 50px; color: var(--rose); display: grid; place-items: center; flex: 0 0 auto; }
.program-card svg { width: 33px; height: 33px; }
.program-card p { font-size: .88rem; line-height: 1.45; color: #615858; }

/* BENEFITS + DIFFERENTIALS */
.benefit-card { min-height: 245px; padding: 28px 22px; border-radius: 15px; text-align: center; }
.round-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 15px; display: grid; place-items: center; background: var(--blush); color: var(--rose); }
.round-icon svg { width: 36px; height: 36px; }
.benefit-card h3 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 10px; line-height: 1.35; }
.benefit-card p { font-size: .82rem; }
.differentials { background: linear-gradient(180deg, #fff 0%, #fffaf8 100%); }

/* CTA */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(100deg, #ebc2bd 0%, #f4d8d2 52%, #f8e7e1 100%); padding: 58px 0; border-top: 1px solid rgba(181,107,107,.15); }
.cta-grid { display: grid; grid-template-columns: 160px 1fr auto; gap: 34px; align-items: center; position: relative; z-index: 2; }
.cta-logo img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; mix-blend-mode: multiply; box-shadow: 0 16px 30px rgba(121,69,69,.13); }
.cta-copy h2 { font-size: clamp(2.3rem,4vw,3.8rem); max-width: 600px; }
.cta-copy h2 span { color: var(--rose-dark); }
.cta-copy p { margin-top: 10px; max-width: 570px; font-size: .92rem; }
.cta-actions { text-align: center; min-width: 230px; }
.cta-actions .btn-light { min-width: 220px; }
.cta-actions p { margin-top: 12px; font-size: .82rem; color: #645959; }
.cta-pattern { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); width: 320px; height: 320px; }
.pattern-left { left: -160px; top: -130px; }
.pattern-right { right: -120px; bottom: -170px; }

/* FOOTER */
.footer { background: #fff; }
.footer-top { min-height: 136px; display: grid; grid-template-columns: 270px 1fr; gap: 30px; align-items: center; border-bottom: 1px solid rgba(115,82,82,.11); }
.footer-brand img { width: 220px; height: 90px; object-fit: contain; mix-blend-mode: multiply; }
.footer-info { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.footer-info > div,.footer-info > a { display: flex; align-items: center; gap: 9px; font-size: .78rem; color: #6d6464; }
.footer-info svg { color: var(--rose); flex: 0 0 20px; width: 20px; height: 20px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; min-height: 72px; }
.footer-bottom p { font-size: .75rem; }
.footer-bottom p:last-child { text-align: right; }
.footer-heart { color: var(--rose); }

/* FLOAT BUTTON */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--rose-dark), #dd837a); box-shadow: 0 14px 30px rgba(162,91,91,.33); transition: .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; stroke: none; }

/* ANIMAÇÕES */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVO */
@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .header-btn { display: none; }
  .hero-grid { gap: 35px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 130px 1fr; }
  .cta-actions { grid-column: 2; text-align: left; }
  .footer-info { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 840px) {
  .header-inner { height: 78px; }
  .brand img { width: 185px; height: 66px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; left: 0; right: 0; top: 78px; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 22px; display: grid; gap: 18px; transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .28s ease; }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a:not(.btn) { font-weight: 600; }
  .hero { padding-top: 120px; }
  .hero-grid,.about-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions,.hero-trust { justify-content: center; }
  .hero-visual { min-height: 450px; }
  .about-image-wrap { max-width: 620px; margin-inline: auto; }
  .cards-3 { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: repeat(2,1fr); }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-logo { margin-inline: auto; }
  .cta-copy h2,.cta-copy p { margin-inline: auto; }
  .cta-actions { grid-column: auto; text-align: center; }
  .footer-top { grid-template-columns: 1fr; padding: 26px 0; }
  .footer-brand { display: flex; justify-content: center; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 110px 0 95px; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.7rem, 12vw, 3.6rem); }
  .hero-text { font-size: .96rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px; max-width: 290px; margin-inline: auto; }
  .trust-item { text-align: left; }
  .hero-visual { min-height: 380px; }
  .portrait-rings { width: 390px; max-width: 100%; }
  .about-image-wrap img { height: 500px; }
  .about-cards { grid-template-columns: 1fr; }
  .program-grid,.cards-4 { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; padding: 18px 0; gap: 8px; }
  .footer-bottom p:last-child { text-align: center; }
  .footer-heart { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* FORMAÇÃO & CURSOS */
.credentials {
  position: relative;
  background:
    radial-gradient(circle at 8% 16%, rgba(201,119,119,.08), transparent 20%),
    radial-gradient(circle at 92% 84%, rgba(239,209,205,.42), transparent 22%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
  overflow: hidden;
}
.credentials::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201,119,119,.12);
  border-radius: 50%;
  top: -230px;
  right: -120px;
  box-shadow: 0 0 0 34px rgba(201,119,119,.025), 0 0 0 70px rgba(201,119,119,.018);
  pointer-events: none;
}
.credentials-intro {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: .95rem;
}
.credentials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
}
.credential-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 180px;
  padding: 28px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.credential-card::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(201,119,119,.11);
  right: -35px;
  bottom: -42px;
}
.credential-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(190,111,111,.3);
}
.credential-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: linear-gradient(145deg, #fff, var(--blush));
  border: 1px solid var(--rose-soft);
  box-shadow: 0 10px 24px rgba(151,86,86,.08);
}
.credential-icon svg { width: 31px; height: 31px; }
.credential-type {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 700;
}
.credential-card h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.3;
  color: #4c4444;
  margin-bottom: 9px;
}
.credential-card p {
  font-size: .84rem;
  line-height: 1.6;
}
.credential-main {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(249,233,230,.72));
}

@media (max-width: 760px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .credential-card { min-height: auto; }
}

@media (max-width: 460px) {
  .credential-card { grid-template-columns: 52px 1fr; gap: 14px; padding: 22px 18px; }
  .credential-icon { width: 50px; height: 50px; }
  .credential-icon svg { width: 25px; height: 25px; }
}
