/* ============================================
   Audácia Moviment — Fontes (self-hosted)
   ============================================ */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/fredoka-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/dmsans-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/caveat-variable.woff2') format('woff2');
}

/* ============================================
   Audácia Moviment — Design tokens
   ============================================ */
:root {
  --acai: #671243;
  --acai-dark: #4a0d30;
  --pink: #AF1258;
  --pink-light: #d84685;
  --green: #859A63;
  --salmao: #F3DFDA;
  --cream: #FBF4F1;
  --ink: #2A1420;
  --white: #ffffff;

  --font-display: 'Fredoka', ui-rounded, sans-serif;
  --font-accent: 'Caveat', cursive;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; line-height: 1.65; }
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--salmao); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--pink); color: var(--white); box-shadow: 0 10px 24px -8px rgba(175,18,88,.6); }
.btn-accent:hover { background: #c31564; }
.btn-primary { background: var(--acai); color: var(--white); }
.btn-primary:hover { background: var(--acai-dark); }
.btn-ghost { border-color: var(--acai); color: var(--acai); background: transparent; }
.btn-ghost:hover { background: var(--acai); color: var(--white); }
.btn-ghost-light { border-color: var(--salmao); color: var(--salmao); background: transparent; }
.btn-ghost-light:hover { background: var(--salmao); color: var(--acai); }
.btn-small { padding: 11px 22px; font-size: 14px; }

/* ============================================
   Topbar
   ============================================ */
.topbar {
  background: var(--acai);
  color: var(--salmao);
  text-align: center;
  font-size: 13px;
  padding: 9px 16px;
  letter-spacing: .01em;
}
.topbar-dot { color: var(--pink-light); margin: 0 4px; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 241, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(103,18,67,.08);
  transition: box-shadow .35s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px -8px rgba(42,20,32,.15);
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 22px 24px 14px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 108px; width: auto; transition: height .3s ease; }
.logo-light { display: none; }
.site-header.scrolled .header-brand-row { padding: 12px 24px 8px; }
.site-header.scrolled .brand-logo { height: 68px; }

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px 20px;
  border-top: 1px solid rgba(103,18,67,.08);
  transition: padding .3s ease;
}
.site-header.scrolled .header-nav-row { padding: 10px 24px 14px; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--acai);
  transition: color .2s;
  position: relative;
}
.main-nav a:hover { color: var(--pink); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - 38px);
  background: var(--acai);
  overflow: hidden;
}
.hero-panel { display: flex; align-items: center; order: 1; position: relative; z-index: 2; }
.hero-panel-inner { padding: 60px 64px 60px 56px; max-width: 620px; }
.hero-roseta { width: 140px; height: 140px; margin-bottom: 22px; opacity: .95; }
.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: var(--white);
}
.hero-lede {
  color: var(--salmao);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-ghost { border-color: var(--salmao); color: var(--salmao); }
.hero-actions .btn-ghost:hover { background: var(--salmao); color: var(--acai); }

.hero-media { position: relative; order: 2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.hero-media-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--acai) 0%, rgba(103,18,67,0) 22%);
}

@media (min-width: 901px) {
  .hero-media { position: absolute; inset: 0; left: 42%; }
  .hero { display: block; position: relative; }
  .hero-panel { position: relative; min-height: calc(100vh - 38px); }
}

/* ============================================
   Manifesto
   ============================================ */
.manifesto { padding: 120px 0; background: var(--cream); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
  align-items: center;
}
.manifesto-quote { position: relative; }
.quote-mark {
  font-family: var(--font-accent);
  font-size: 160px;
  color: var(--pink);
  opacity: .25;
  line-height: 1;
  margin: 0 0 -40px -8px;
}
.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--acai);
  font-weight: 700;
  line-height: 1.25;
}
.quote-text span { color: var(--pink); }
.manifesto-copy p { font-size: 17px; color: var(--ink); }
.manifesto-founder {
  padding-top: 18px;
  margin-top: 8px;
  border-top: 1px solid rgba(103,18,67,.15);
  font-size: 15px;
  color: var(--acai-dark);
}

/* ============================================
   Pillars
   ============================================ */
.pillars { padding: 40px 0 120px; background: var(--cream); }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--acai); }
.section-lede { font-size: 16.5px; color: var(--ink); opacity: .8; }
.section-head-light h2 { color: var(--white); }
.section-head-light .section-lede { color: var(--salmao); opacity: 1; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(103,18,67,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(103,18,67,.25); }
.pillar-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--pink);
  width: 34px; height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  margin-bottom: 20px;
}
.pillar-card h3 { color: var(--acai); font-size: 1.25rem; }
.pillar-card p { color: var(--ink); opacity: .82; font-size: 15px; margin: 0; }

/* ============================================
   Modalidades
   ============================================ */
.modalidades { background: var(--acai); padding: 110px 0; position: relative; }
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.mod-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(243,223,218,.18);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background .25s ease, transform .25s ease;
}
.mod-card:hover { background: var(--pink); transform: translateY(-4px); }
.mod-card h3 { color: var(--salmao); font-size: 1.2rem; }
.mod-card p { color: rgba(243,223,218,.85); font-size: 14.5px; margin: 0; }
.mod-card:hover p, .mod-card:hover h3 { color: var(--white); }
.mod-card p { margin-bottom: 4px; }

.mod-card-video { cursor: pointer; }
.mod-card-video:focus-visible { outline: 2px solid var(--salmao); outline-offset: 3px; }
.mod-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--salmao);
}
.mod-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--salmao);
  color: var(--acai);
  font-size: 9px;
  transition: background .25s ease, color .25s ease;
}
.mod-card-video:hover .mod-play-icon { background: var(--white); }

/* ============================================
   Video modal (modalidades)
   ============================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 6, 14, .85);
  backdrop-filter: blur(4px);
}
.video-modal-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-modal-title {
  color: var(--salmao);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 14px;
  text-align: center;
}
#videoModalPlayer {
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 9/16;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,.25); }

/* ============================================
   Estúdio
   ============================================ */
.estudio { padding: 120px 0; background: var(--cream); }
.estudio-gallery {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 640px;
}
.estudio-item { border-radius: var(--radius); overflow: hidden; }
.estudio-item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transition: transform .5s ease; }
.estudio-item img.pos-bottom { object-position: 65% 88%; }
.estudio-item:hover img { transform: scale(1.05); }
.estudio-item-tall { grid-row: span 2; }

/* ============================================
   Comunidade
   ============================================ */
.comunidade { padding: 110px 0 100px; background: var(--salmao); overflow: hidden; }
.comunidade-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 90px;
}
.comunidade-copy h2 { color: var(--acai); font-size: clamp(1.9rem, 3vw, 2.5rem); }
.comunidade-copy p { color: var(--ink); font-size: 17px; opacity: .85; }

.testimonial {
  margin: 32px 0 0;
  padding: 26px 28px;
  background: var(--white);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm);
  max-width: 560px;
}
.testimonial p {
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
  opacity: .9;
  margin: 0 0 12px;
}
.testimonial p:last-of-type { margin-bottom: 14px; }
.testimonial cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--acai);
  font-size: 14.5px;
}
.comunidade-reel {
  justify-self: center;
  width: 280px;
  aspect-ratio: 9/16;
  border-radius: 28px;
  overflow: hidden;
  border: 10px solid var(--acai);
  box-shadow: 0 30px 60px -20px rgba(103,18,67,.4);
}
.reel-video { width: 100%; height: 100%; object-fit: cover; }

.alunas-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.alunas-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .35s ease;
}
.alunas-gallery img:hover { transform: scale(1.03); }

/* ============================================
   Valores strip
   ============================================ */
.valores { background: var(--green); padding: 30px 0; }
.valores-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}
.valores-list li {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  font-size: 15px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.valores-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--salmao);
  display: inline-block;
}
.valores-list li:first-child::before { display: none; }

/* ============================================
   Contato
   ============================================ */
.contato {
  background: var(--acai);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contato-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.contato-roseta { width: 60px; margin: 0 auto 20px; }
.contato h2 { color: var(--white); font-size: clamp(2rem, 3.6vw, 3rem); }
.contato-lede { color: var(--salmao); font-size: 17px; max-width: 480px; margin: 0 auto 36px; }
.contato-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.contato-endereco { color: rgba(243,223,218,.6); font-size: 13.5px; margin: 0; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--acai-dark); padding: 44px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { height: 28px; opacity: .9; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { color: var(--salmao); font-size: 14px; opacity: .8; }
.footer-nav a:hover { opacity: 1; }
.footer-copy { color: rgba(243,223,218,.5); font-size: 13px; margin: 0; width: 100%; text-align: center; order: 3; padding-top: 20px; border-top: 1px solid rgba(243,223,218,.1); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .estudio-gallery { height: auto; grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .estudio-item-tall { grid-row: auto; grid-column: span 2; height: 320px; }
  .estudio-item { height: 260px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { position: relative; inset: auto; height: 60vh; order: 1; }
  .hero-panel { order: 2; min-height: auto; }
  .hero-panel-inner { padding: 48px 28px 64px; max-width: none; }
  .hero-media-fade { background: linear-gradient(0deg, var(--acai) 0%, rgba(103,18,67,0) 30%); }

  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .comunidade-grid { grid-template-columns: 1fr; gap: 48px; }
  .comunidade-reel { width: 240px; }
  .alunas-gallery { grid-template-columns: repeat(2, 1fr); }

  .header-brand-row { padding: 16px 24px; }
  .site-header.scrolled .header-brand-row { padding: 10px 24px; }
  .brand-logo { height: 74px; }
  .site-header.scrolled .brand-logo { height: 57px; }
  .header-nav-row { padding: 0; border-top: none; }
  .site-header.scrolled .header-nav-row { padding: 0; }

  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  }
  .nav-toggle span { width: 100%; height: 2px; background: var(--salmao); border-radius: 2px; }
  .site-header.scrolled .nav-toggle span { background: var(--acai); }

  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--acai); padding: 24px; gap: 18px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,.3);
  }
  .main-nav.open a { color: var(--salmao); font-size: 16px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .manifesto, .pillars, .modalidades, .estudio, .comunidade, .contato { padding-top: 72px; padding-bottom: 72px; }
  .quote-mark { font-size: 100px; }
  .mod-grid { grid-template-columns: 1fr; }
  .estudio-gallery { grid-template-columns: 1fr; }
  .estudio-item-tall { grid-column: span 1; }
  .alunas-gallery { grid-template-columns: repeat(2, 1fr); }
  .valores-list { justify-content: flex-start; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-nav { justify-content: center; }
}
