/* =========================================================
   Prof. Marcelo Yoshida — Pré-candidatura
   Identidade: rosa #FF006B + verde #00FF55 · fundo creme
   Fontes: Archivo (títulos) · Inter (sub) · Montserrat (texto)
   Substituindo Heading Now / Helvetica Now / Jacques Pro.
   ========================================================= */

:root {
  /* Marca */
  --pink:     #ff006b;
  --pink-dk:  #d1005a;
  --green:    #00ff55;
  --green-dk: #00b23b;

  /* Arco-íris (secundário) */
  --red:#e63946; --orange:#ff7a29; --yellow:#ffce2e; --blue:#2a7de1; --purple:#8a4fff;
  --rainbow: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green-dk), var(--blue), var(--purple));
  --brand-grad: linear-gradient(100deg, var(--pink) 0%, #ff2f86 40%, #22d36b 100%);

  --ink:   #1a1726;
  --ink-2: #4c495e;
  --muted: #918da3;
  --line:  #ececf1;
  --bg:    #ffffff;   /* branco */
  --bg-2:  #f6f6fa;   /* cinza levíssimo p/ seções alternadas */
  --card:  #ffffff;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(26,23,38,.05);
  --shadow: 0 14px 40px -12px rgba(26,23,38,.16);
  --shadow-lg: 0 30px 70px -20px rgba(255,0,107,.28);

  --container: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Archivo', 'Inter', sans-serif; /* Heading Now */
  --font-sub: 'Inter', system-ui, sans-serif;      /* Helvetica Now Display */
  --font-body: 'Montserrat', system-ui, sans-serif; /* Jacques Pro / @ */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.inline-heart { display: inline-block; width: 15px; height: 15px; vertical-align: -2px; }

.rainbow-bar { height: 5px; background: var(--rainbow); background-size: 200% 100%; animation: slide 8s linear infinite; }
@keyframes slide { to { background-position: 200% 0; } }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: flex; align-items: center; }
.brand-logo { height: 54px; width: auto; transition: transform .3s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }

.nav-desktop { display: none; align-items: center; gap: 26px; }
.nav-desktop a { font-family: var(--font-sub); font-size: .95rem; font-weight: 600; color: var(--ink-2); position: relative; transition: color .2s; }
.nav-desktop a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--pink); border-radius: 2px; transition: width .3s var(--ease); }
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; border-radius: 999px; color: #fff !important; background: var(--pink); font-family: var(--font-sub); font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: grid; gap: 4px; padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); }
.nav-mobile.open { max-height: 400px; padding: 10px 22px 22px; }
.nav-mobile a { font-family: var(--font-sub); padding: 13px 6px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.nav-mobile a.nav-cta { margin-top: 10px; border: 0; color: #fff !important; background: var(--pink); text-align: center; border-radius: 12px; }

/* ============ BOTÕES ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-sub); font-weight: 700; font-size: 1rem; padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s; white-space: nowrap; }
.btn svg { transition: transform .25s var(--ease); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-heart { width: 22px; height: 22px; }
.btn-primary { color: #fff; background: var(--pink); box-shadow: 0 10px 26px -10px rgba(255,0,107,.6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--pink); color: var(--pink); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { transform: translateY(-3px); background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero { position: relative; padding: 34px 0 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .5; animation: float 15s ease-in-out infinite; }
.blob-pink { width: 340px; height: 340px; background: rgba(255,0,107,.34); top: -70px; right: -50px; }
.blob-green { width: 300px; height: 300px; background: rgba(0,255,85,.28); bottom: -70px; left: -70px; animation-delay: -5s; }
.blob-rainbow { width: 240px; height: 240px; background: rgba(138,79,255,.22); top: 45%; left: 42%; animation-delay: -9s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-30px) scale(1.06); } 66% { transform: translate(-16px,18px) scale(.96); } }

.hero-inner { position: relative; z-index: 1; display: grid; gap: 22px; align-items: center;
  grid-template-columns: 1fr; grid-template-areas: "top" "photo" "bottom"; }
.hero-top { grid-area: top; position: relative; z-index: 2; }
.hero-bottom { grid-area: bottom; position: relative; z-index: 2; }
.hero-photo { grid-area: photo; }

.badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sub); font-size: .82rem; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(255,0,107,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(255,0,107,0); } 100% { box-shadow: 0 0 0 0 rgba(255,0,107,0); } }

.hero-title { font-size: clamp(2.3rem, 8vw, 3.7rem); font-weight: 900; margin-bottom: 16px; }
.hero-sub { font-family: var(--font-sub); font-size: 1.08rem; color: var(--ink-2); max-width: 520px; margin-bottom: 26px; }

.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats .plus { font-family: var(--font-sub); font-size: .78rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .04em; }
.hero-stats strong { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1; color: var(--ink); }
.hero-stats .lbl { font-family: var(--font-sub); font-size: .82rem; color: var(--muted); margin-top: 4px; max-width: 130px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Foto recortada */
.hero-photo { position: relative; z-index: 1; justify-self: center; width: min(90%, 420px); aspect-ratio: 3/4; display: grid; place-items: end center; }
.photo-blob { position: absolute; inset: 4% 2% 0; border-radius: 46% 54% 50% 50% / 58% 58% 42% 42%; background: var(--brand-grad); opacity: .16; filter: blur(6px); animation: morph 12s ease-in-out infinite; }
.photo-ring { position: absolute; inset: 6% 6% 2%; border-radius: 46% 54% 50% 50% / 58% 58% 42% 42%; background: var(--brand-grad); animation: morph 12s ease-in-out infinite, spin 30s linear infinite; }
@keyframes morph { 0%,100% { border-radius: 46% 54% 50% 50% / 58% 58% 42% 42%; } 50% { border-radius: 54% 46% 52% 48% / 52% 54% 46% 48%; } }
@keyframes spin { to { transform: rotate(360deg); } }
.photo-cut { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 26px 34px rgba(255,0,107,.28)); animation: bob 6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============ SEÇÕES ============ */
.section { padding: 66px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.eyebrow { display: inline-block; font-family: var(--font-sub); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.eyebrow.light { color: #fff; opacity: .95; }
.section-head h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.section-lead { font-family: var(--font-sub); color: var(--ink-2); margin-top: 10px; }

/* ============ MANIFESTO ============ */
.manifesto { background: var(--bg-2); }
.manifesto-body { max-width: 720px; margin: 0 auto; }
.manifesto-body p { font-size: 1.09rem; color: var(--ink-2); margin-bottom: 22px; }
.manifesto-body .lead { font-size: 1.2rem; color: var(--ink); }
.dropcap { float: left; font-family: var(--font-display); font-size: 3.4rem; line-height: .82; font-weight: 900; padding: 4px 12px 0 0; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.manifesto-body blockquote { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.36; color: var(--ink); padding: 8px 0 8px 24px; margin: 6px 0 28px; border-left: 4px solid var(--pink); }
.manifesto-call { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--pink); margin-top: 6px; }
.signature { display: flex; flex-direction: column; margin-top: 24px; }
.signature .grad-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; }
.signature small { font-family: var(--font-sub); color: var(--muted); font-size: .9rem; }
.manifesto-cta { text-align: center; margin-top: 40px; }

/* ============ ASSINAR ============ */
.assinar { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.assinar::before { content: ''; position: absolute; top: -40%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,0,107,.4), transparent 65%); }
.assinar::after { content: ''; position: absolute; bottom: -40%; left: -20%; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(0,255,85,.28), transparent 65%); }
.assinar-grid { position: relative; z-index: 1; display: grid; gap: 34px; }
.assinar-intro h2 { color: #fff; margin-bottom: 14px; }
.assinar-intro p { font-family: var(--font-sub); color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 22px; }
.assinar-list { list-style: none; display: grid; gap: 12px; }
.assinar-list li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-sub); font-size: .96rem; color: rgba(255,255,255,.92); }
.assinar-list svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

.assinar-form { background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }

/* Confirmação pós-assinatura */
.assinou { background: #fff; border-radius: var(--radius-lg); padding: 38px 26px; box-shadow: var(--shadow-lg); text-align: center; animation: pop .45s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(8px); } to { opacity: 1; transform: none; } }
.assinou-ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green-dk); box-shadow: 0 12px 30px -10px rgba(0,178,59,.7); }
.assinou-ic svg { width: 30px; height: 30px; }
.assinou h3 { font-size: 1.5rem; margin-bottom: 8px; }
.assinou p { font-family: var(--font-sub); color: var(--ink-2); margin-bottom: 22px; }
.assinou-acoes { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.assinou-hint { font-family: var(--font-sub); font-size: .82rem; color: var(--muted); margin: 16px 0 0; min-height: 1.1em; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
.field label { font-family: var(--font-sub); font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea { font-family: var(--font-sub); font-size: 1rem; color: var(--ink); padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg); transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 4px rgba(255,0,107,.13); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(230,57,70,.12); }

/* Como você quer ajudar? (multi-seleção) */
.help-group { margin: 4px 0 18px; }
.help-label { display: block; font-family: var(--font-sub); font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; }
.help-cards { display: grid; gap: 10px; grid-template-columns: 1fr; }
.help-card { position: relative; display: flex; align-items: flex-start; gap: 11px; padding: 13px 34px 13px 14px; border: 1.5px solid var(--line); border-radius: 14px; background: var(--bg-2); cursor: pointer; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.help-card:hover { border-color: var(--pink); transform: translateY(-2px); }
.help-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.help-ic { color: var(--ink-2); flex-shrink: 0; display: grid; place-items: center; transition: color .2s; }
.help-ic svg { width: 22px; height: 22px; }
.help-txt { display: flex; flex-direction: column; min-width: 0; }
.help-txt strong { font-family: var(--font-sub); font-size: .95rem; font-weight: 700; color: var(--ink); }
.help-txt small { font-family: var(--font-sub); font-size: .78rem; color: var(--muted); line-height: 1.35; }
.help-check { position: absolute; top: 11px; right: 11px; width: 20px; height: 20px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: opacity .2s, transform .2s var(--ease); }
.help-check svg { width: 12px; height: 12px; }
.help-card.on { border-color: var(--pink); background: rgba(255,0,107,.06); }
.help-card.on .help-ic { color: var(--pink); }
.help-card.on .help-check { opacity: 1; transform: scale(1); }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 20px; font-family: var(--font-sub); font-size: .86rem; color: var(--ink-2); cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--pink); flex-shrink: 0; }
.consent a { color: var(--pink); font-weight: 600; text-decoration: underline; }

.btn-spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.loading .btn-label { opacity: .6; }
.loading .btn-spinner { display: inline-block; }
.form-msg { margin-top: 14px; font-family: var(--font-sub); font-size: .92rem; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-msg.ok { color: var(--green-dk); }
.form-msg.err { color: var(--red); }

/* ============ BANDEIRAS ============ */
.bandeiras { background: linear-gradient(160deg, var(--pink), var(--pink-dk)); position: relative; overflow: hidden; }
.bandeiras::before { content: ''; position: absolute; top: -30%; right: -8%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); }
.bandeiras::after { content: ''; position: absolute; bottom: -32%; left: -8%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(0,255,85,.22), transparent 60%); }
.bandeiras .container { position: relative; z-index: 1; }
.bandeiras .eyebrow { color: #fff; opacity: .92; }
.bandeiras .section-head h2 { color: #fff; }
.pillars { display: grid; gap: 18px; grid-template-columns: 1fr; }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.pillar-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; transition: transform .35s var(--ease); }
.pillar:nth-child(1) .pillar-icon { background: var(--pink); }
.pillar:nth-child(2) .pillar-icon { background: linear-gradient(135deg, var(--green-dk), var(--blue)); }
.pillar:nth-child(3) .pillar-icon { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.pillar:nth-child(4) .pillar-icon { background: linear-gradient(135deg, var(--pink), var(--red)); }
.pillar:hover .pillar-icon { transform: scale(1.1) rotate(-6deg); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.pillar p { font-family: var(--font-sub); font-size: .96rem; color: var(--ink-2); }

/* ============ ANIME (divertido) ============ */
.anime-section { position: relative; overflow: hidden; padding: 56px 0; background: var(--bg-2); }
.anime-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.anime-bg .blob { filter: blur(46px); opacity: .42; }
.anime-bg .blob-pink { width: 180px; height: 180px; top: 8%; left: -3%; }
.anime-bg .blob-green { width: 160px; height: 160px; bottom: 6%; right: -2%; }
.anime-bg .blob-rainbow { width: 120px; height: 120px; top: 52%; left: 58%; }
.anime-inner { position: relative; z-index: 1; display: grid; gap: 22px; align-items: center; }
.anime-art { position: relative; width: min(70%, 290px); justify-self: center; aspect-ratio: 3/4; display: grid; place-items: end center; }
.anime-ring { position: absolute; inset: 10% 12% 6%; border-radius: 46% 54% 50% 50% / 58% 58% 42% 42%; background: var(--brand-grad); opacity: .85; animation: morph 11s ease-in-out infinite, spin 28s linear infinite; }
.anime-img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 20px 28px rgba(255,0,107,.3)); animation: bob 6s ease-in-out infinite; }
.anime-text { text-align: center; }
.anime-text h2 { font-size: clamp(1.7rem, 5.5vw, 2.7rem); margin-bottom: 14px; }
.anime-text p { font-family: var(--font-sub); color: var(--ink-2); font-size: 1.06rem; margin: 0 auto 24px; max-width: 440px; }

@media (min-width: 900px) {
  .anime-section { padding: 40px 0; }
  .anime-inner { grid-template-columns: .82fr 1.18fr; gap: 52px; }
  .anime-art { width: 100%; max-width: 360px; }
  .anime-text { text-align: left; }
  .anime-text p { margin-left: 0; }
}

/* ============ SOBRE / ME CONHEÇA ============ */
.sobre-inner { display: block; }
.sobre-text { max-width: 720px; margin: 0 auto; min-width: 0; }
.sobre-text .eyebrow { margin-bottom: 12px; }
.sobre-text h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); margin-bottom: 18px; }
.sobre-text p { font-family: var(--font-sub); color: var(--ink-2); font-size: 1.04rem; margin-bottom: 16px; }
.sobre-text p:first-of-type { font-size: 1.14rem; color: var(--ink); }
.sobre-cta-wrap { text-align: center; }

/* min-width:0 é essencial: sem isso o trilho de 26 fotos estica e esmaga o texto */
.sobre-carousel { position: relative; min-width: 0; max-width: 560px; margin: 40px auto 0; }
.car-viewport { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--bg-2); }
.car-track { display: flex; transition: transform .55s var(--ease); }
.car-slide { position: relative; min-width: 100%; margin: 0; aspect-ratio: 4/5; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-slide figcaption { position: absolute; inset: auto 0 0 0; padding: 46px 18px 16px; color: #fff; font-family: var(--font-sub); font-weight: 600; font-size: .96rem; background: linear-gradient(transparent, rgba(0,0,0,.75)); }

.car-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), background .2s; z-index: 2; }
.car-nav:hover { background: #fff; }
.car-prev { left: 12px; } .car-prev:hover { transform: translateY(-50%) scale(1.08); }
.car-next { right: 12px; } .car-next:hover { transform: translateY(-50%) scale(1.08); }
.car-nav svg { width: 20px; height: 20px; }

.car-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.car-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: transform .2s var(--ease), background .2s; }
.car-dot.active { background: var(--pink); transform: scale(1.35); }

@media (min-width: 900px) {
  .sobre-carousel { max-width: 620px; }
}

/* ============ DEPOIMENTOS (Orkut vibes) ============ */
.depoimentos { background: var(--bg-2); }
.depo-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 40px; align-items: stretch; }
.depo-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px 14px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; overflow: hidden; }
.depo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--c, var(--pink)); }
.depo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.depo-quote { position: absolute; top: 12px; right: 14px; font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--c, var(--pink)); opacity: .14; }

/* cabeçalho: foto grande à esquerda + nome/cargo, separados do texto por uma linha */
.depo-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
.depo-avatar { width: 68px; height: 68px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; background: var(--c, var(--pink)); flex-shrink: 0; overflow: hidden; }
.depo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.depo-name { font-family: var(--font-display); font-weight: 800; font-size: .96rem; line-height: 1.25; color: var(--ink); }
.depo-prof { font-family: var(--font-sub); font-size: .76rem; line-height: 1.3; color: var(--muted); margin-top: 3px; }
.depo-text { font-family: var(--font-body); font-size: .87rem; line-height: 1.55; color: var(--ink-2); position: relative; z-index: 1; }

/* Botão de like (só efeito visual) — fica no rodapé, alinhado em todos os cards */
.depo-like { position: relative; align-self: flex-end; margin-top: auto; padding-top: 10px;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: transparent; cursor: pointer; display: grid; place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease); }
.depo-like img { width: 20px; height: 20px; filter: grayscale(1); opacity: .45; transition: filter .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease); }
.depo-like:hover { background: rgba(255,0,107,.08); }
.depo-like:hover img { opacity: .8; transform: scale(1.12); }
.depo-like.liked img { filter: none; opacity: 1; transform: scale(1.1); }
.depo-like.pop img { animation: likePop .45s var(--ease); }
@keyframes likePop {
  0% { transform: scale(1); }
  35% { transform: scale(1.6) rotate(-8deg); }
  60% { transform: scale(.92) rotate(4deg); }
  100% { transform: scale(1.1) rotate(0); }
}
.depo-like.pop::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--pink); animation: likeRing .55s var(--ease) forwards; }
@keyframes likeRing { from { transform: scale(.6); opacity: .7; } to { transform: scale(1.7); opacity: 0; } }

.opt { color: var(--muted); font-weight: 400; }
.char-count { align-self: flex-end; font-family: var(--font-sub); font-size: .74rem; color: var(--muted); margin-top: 5px; }
.char-count.near { color: var(--pink); font-weight: 600; }
.file-drop { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border: 1.5px dashed var(--line); border-radius: 12px; background: var(--bg); cursor: pointer; transition: border-color .2s; }
.file-drop:hover { border-color: var(--pink); }
.file-hint { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sub); font-size: .92rem; color: var(--ink-2); font-weight: 600; }
.file-preview { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
/* Chamada evidente pra deixar depoimento */
.depo-cta { display: grid; gap: 16px; align-items: center; text-align: center; background: #fff; border: 2px solid var(--pink);
  border-radius: var(--radius-lg); padding: 26px 24px; margin-bottom: 22px; box-shadow: 0 14px 40px -16px rgba(255,0,107,.45); }
.depo-cta h3 { font-size: 1.35rem; margin-bottom: 6px; }
.depo-cta p { font-family: var(--font-sub); font-size: .95rem; color: var(--ink-2); }
.depo-cta .btn { justify-self: center; }
@media (min-width: 720px) {
  .depo-cta { grid-template-columns: 1fr auto; text-align: left; padding: 26px 30px; }
}

.depo-form-wrap { text-align: center; }
.depo-form { max-width: 620px; margin: 0 auto 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); text-align: left; }
.sobre-cta { margin-top: 26px; }
.nav-desktop a.ativo { color: var(--pink); }
.nav-desktop a.ativo::after { width: 100%; }
.depo-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.depo-note { font-family: var(--font-sub); font-size: .82rem; color: var(--muted); }

/* ============ BLOG ============ */
.blog-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16/9; background: var(--bg-2); position: relative; overflow: hidden; }
.post-thumb::after { content: ''; position: absolute; inset: 0; background: var(--brand-grad); opacity: .12; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-date { font-family: var(--font-sub); font-size: .78rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.post-title { font-size: 1.18rem; font-weight: 800; margin-bottom: 8px; line-height: 1.25; }
.post-excerpt { font-family: var(--font-sub); font-size: .94rem; color: var(--ink-2); flex: 1; }
.post-more { margin-top: 16px; font-family: var(--font-sub); font-weight: 700; font-size: .9rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.post-more svg { transition: transform .25s var(--ease); }
.post-card:hover .post-more svg { transform: translateX(4px); }
.blog-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 40px 0; font-family: var(--font-sub); }
.blog-mais { text-align: center; margin-top: 34px; }

/* ============ CTA FINAL ============ */
.cta-final { padding: 36px 0 74px; }
.cta-card { position: relative; overflow: hidden; text-align: center; color: #fff; background: var(--brand-grad); border-radius: var(--radius-lg); padding: 56px 28px; box-shadow: var(--shadow-lg); }
.cta-card h2 { color: #fff; font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 12px; position: relative; }
.cta-card p { font-family: var(--font-sub); color: rgba(255,255,255,.92); max-width: 480px; margin: 0 auto 26px; position: relative; }
.cta-card .btn { position: relative; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: #fff; padding: 44px 0 30px; }
.footer-inner { display: grid; gap: 28px; text-align: center; align-items: center; }
.footer-logo { height: 66px; width: auto; margin: 0 auto; }
.footer-brand p { font-family: var(--font-sub); color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 10px; }
.socials { display: flex; justify-content: center; gap: 12px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: transform .25s var(--ease), background .25s; }
.socials a:hover { transform: translateY(-4px); }
.socials a[data-link="instagram"]:hover { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.socials a[data-link="facebook"]:hover { background: var(--blue); }
.socials a[data-link="tiktok"]:hover { background: #000; }
.socials a[data-link="youtube"]:hover { background: var(--red); }
.socials a[data-link="whatsapp"]:hover { background: var(--green-dk); }
.socials a svg { width: 22px; height: 22px; }
.footer-pt { height: 54px; width: auto; margin: 0 auto; }
.footer-meta { display: flex; flex-direction: column; gap: 8px; align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-family: var(--font-sub); font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-meta a { color: rgba(255,255,255,.8); font-weight: 600; }

/* Assinatura raphael.art.br */
.footer-credit { display: flex; flex-direction: column; align-items: center; gap: 9px; margin-top: 18px; font-family: var(--font-sub); font-size: .74rem; color: rgba(255,255,255,.4); text-align: center; }
.footer-credit a { display: inline-flex; opacity: .55; transition: opacity .25s var(--ease); }
.footer-credit a:hover { opacity: 1; }
.credit-logo { height: 15px; width: auto; display: block; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; } .reveal { opacity: 1; transform: none; } }

/* ============ RESPONSIVO ============ */
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .assinar-form .field-row:nth-of-type(2) { grid-template-columns: 1.6fr .6fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr auto 1fr; }
  .footer-brand { text-align: left; }
  .footer-logo { margin: 0; }
  .footer-pt { margin: 0 0 0 auto; }
}
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .hero { padding: 54px 0 80px; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; grid-template-areas: "photo top" "photo bottom"; column-gap: 48px; row-gap: 16px; }
  .hero-photo { justify-self: start; width: 100%; max-width: 540px; align-self: center; }
  .pillars { grid-template-columns: repeat(4, 1fr); }
  .depo-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .assinar-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .section { padding: 88px 0; }
}
