/* =====================================================================
   Bruna Cristina | Recrutamento & Talentos
   Tema: "Elegant Pink with subtle Rock attitude"
   ===================================================================== */

:root {
  /* Paleta */
  --rose:        #E14B7A;
  --rose-bright: #F5689A;
  --rose-deep:   #B5275A;
  --wine:        #6E1233;
  --rose-soft:   #FCE9F0;
  --rose-tint:   #FFF5F9;
  --gold:        #C9A86A;
  --gold-soft:   #EBD9B4;

  --ink:        #1C1018;
  --ink-2:      #3D2A33;
  --muted:      #6E5862;
  --muted-2:    #9A8690;

  --bg:         #FFFFFF;
  --bg-warm:    #FFF8FB;
  --bg-card:    #FFFFFF;
  --line:       rgba(110, 18, 51, 0.10);
  --line-soft:  rgba(110, 18, 51, 0.06);

  --grad-rose:  linear-gradient(135deg, #F5689A 0%, #E14B7A 45%, #B5275A 100%);
  --grad-dark:  linear-gradient(135deg, #2A0E1C 0%, #4A132F 55%, #6E1233 100%);
  --grad-soft:  linear-gradient(160deg, #FFF5F9 0%, #FCE9F0 100%);

  --shadow-sm:  0 2px 8px rgba(110, 18, 51, 0.06);
  --shadow:     0 12px 34px rgba(110, 18, 51, 0.10);
  --shadow-lg:  0 26px 60px rgba(110, 18, 51, 0.16);
  --shadow-rose:0 16px 40px rgba(225, 75, 122, 0.32);

  --radius:     20px;
  --radius-sm:  12px;
  --radius-lg:  28px;
  --radius-pill:999px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --header-h: 76px;
}

/* ───── Reset / base ───── */
*, *::before, *::after { 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-warm);
  line-height: 1.6;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); }
ul { list-style: none; }
:focus-visible { outline: 3px solid rgba(225,75,122,0.45); outline-offset: 2px; border-radius: 6px; }

/* ───── Tipografia ───── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-rose); border-radius: 2px; }
.text-grad {
  background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ───── Layout ───── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.bg-soft { background: var(--grad-soft); }
.bg-dark { background: var(--grad-dark); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }

/* ───── Botões ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .97rem; letter-spacing: .01em;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-rose); color: #fff; box-shadow: var(--shadow-rose); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(225,75,122,0.42); }
.btn-ghost { background: rgba(255,255,255,0.9); color: var(--rose-deep); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--rose); color: var(--rose-deep); box-shadow: var(--shadow); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--wine); }
.btn-light { background: #fff; color: var(--rose-deep); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ───── Header / Nav ───── */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 248, 251, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,248,251,0.94); }
.nav { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; filter: drop-shadow(0 4px 10px rgba(225,75,122,0.35)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); }
.brand-sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px; border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); background: var(--rose-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--bg-warm); padding: 24px 22px; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1); display: flex; flex-direction: column; gap: 6px;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a { padding: 15px 16px; border-radius: 14px; font-weight: 600; font-size: 1.12rem; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:hover { background: var(--rose-soft); color: var(--rose-deep); }
.mobile-menu .btn { margin-top: 16px; }

/* ───── Hero ───── */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(1100px 520px at 78% -10%, rgba(245,104,154,0.16), transparent 60%),
              radial-gradient(800px 480px at 5% 20%, rgba(201,168,106,0.12), transparent 55%),
              var(--bg-warm);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); margin: 18px 0 20px; }
.hero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .92rem; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); }
.hero-trust b { color: var(--ink); }

/* Hero visual card */
.hero-visual { position: relative; }
.talent-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative; overflow: hidden;
}
.talent-card::after {
  content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
  background: var(--grad-rose); filter: blur(48px); opacity: .22; border-radius: 50%;
}
.tc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.tc-avatar { width: 58px; height: 58px; border-radius: 50%; background: var(--grad-rose); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; box-shadow: var(--shadow-rose); }
.tc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.tc-role { color: var(--muted); font-size: .9rem; }
.tc-badge { margin-left: auto; font-size: .72rem; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(22,163,74,0.12); color: #16A34A; }
.tc-progress { height: 8px; border-radius: 8px; background: var(--rose-soft); overflow: hidden; margin: 8px 0 6px; }
.tc-progress span { display: block; height: 100%; background: var(--grad-rose); border-radius: 8px; width: 0; transition: width 1.4s cubic-bezier(.2,.7,.3,1); }
.tc-label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }
.tc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tc-float {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .88rem;
  border: 1px solid var(--line);
}
.tc-float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--rose-soft); color: var(--rose-deep); }
.tc-float.f1 { top: 8%; left: -34px; animation: floaty 5s ease-in-out infinite; }
.tc-float.f2 { bottom: 12%; right: -28px; animation: floaty 6s ease-in-out infinite .8s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Petals decor */
.petal { position: absolute; z-index: -1; opacity: .5; pointer-events: none; }

/* ───── Chips / Tags ───── */
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--rose-soft); color: var(--rose-deep); font-weight: 600; font-size: .85rem;
  border: 1px solid var(--line-soft);
}
.chip-gold { background: rgba(201,168,106,0.16); color: #97772f; }

/* Skills marquee */
.skills-band { padding: 40px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg); overflow: hidden; }
.marquee { display: flex; gap: 14px; width: max-content; animation: scrollx 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .chip { font-size: .95rem; padding: 10px 18px; white-space: nowrap; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ───── Steps (como funciona) ───── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: transparent; background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; line-height: 1; }
.step-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-soft); display: grid; place-items: center; color: var(--rose-deep); margin: 14px 0 16px; }
.step-ic svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }

/* ───── Vagas (cards) ───── */
.vagas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 24px; }
.vaga-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.vaga-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(225,75,122,0.4); }
.vaga-card.destaque { border-color: rgba(225,75,122,0.45); }
.vaga-card.destaque::before { content: "Destaque"; position: absolute; top: 16px; right: -34px; transform: rotate(40deg); background: var(--grad-rose); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .1em; padding: 5px 40px; text-transform: uppercase; }
.vaga-area { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-deep); }
.vaga-card h3 { font-size: 1.32rem; }
.vaga-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.vaga-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--ink-2); background: var(--bg-warm); border: 1px solid var(--line-soft); padding: 5px 11px; border-radius: var(--radius-pill); }
.vaga-tag svg { width: 14px; height: 14px; color: var(--rose); }
.vaga-desc { color: var(--muted); font-size: .95rem; flex: 1; }
.vaga-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.vaga-sal { font-weight: 700; color: var(--ink); font-size: .98rem; }
.vaga-sal small { color: var(--muted); font-weight: 500; }

/* ───── Stats ───── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; }
.stat .lbl { color: rgba(255,255,255,0.78); font-size: .95rem; }
.bg-dark .stat .num { background: linear-gradient(135deg, #fff, var(--gold-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ───── Trust / Sobre ───── */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); background: var(--grad-rose); aspect-ratio: 4/5; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; display: grid; place-items: center; }
.about-photo .mono { font-family: var(--font-display); font-size: 8rem; color: rgba(255,255,255,0.92); font-weight: 800; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 50%); }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.feature { display: flex; gap: 14px; }
.feature .fi { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: var(--rose-soft); color: var(--rose-deep); display: grid; place-items: center; }
.feature .fi svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.04rem; margin-bottom: 2px; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ───── CTA band ───── */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: 56px 44px; overflow: hidden; background: var(--grad-dark); color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; top: -60px; right: -20px; width: 280px; height: 280px; background: var(--grad-rose); filter: blur(70px); opacity: .4; border-radius: 50%; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.84); max-width: 560px; margin: 0 auto 26px; position: relative; }

/* ───── Forms ───── */
.form-wrap { max-width: 880px; margin: 0 auto; }
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 36px; }
.form-section { margin-bottom: 30px; }
.form-section-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.form-section-title .n { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: var(--grad-rose); color: #fff; display: grid; place-items: center; font-family: var(--font-body); font-weight: 700; font-size: .9rem; }
.form-section-sub { color: var(--muted); font-size: .92rem; margin: 0 0 18px 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink-2); }
.field label .req { color: var(--rose); }
.field .hint { font-size: .8rem; color: var(--muted-2); }
.control {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--bg-warm); transition: border-color .2s, box-shadow .2s, background .2s;
}
.control:focus { outline: none; border-color: var(--rose); background: #fff; box-shadow: 0 0 0 4px rgba(225,75,122,0.12); }
textarea.control { resize: vertical; min-height: 110px; }
select.control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B5275A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.field-error .control { border-color: #e11d48; }

/* Dropzone */
.dropzone {
  border: 2px dashed rgba(225,75,122,0.4); border-radius: var(--radius); background: var(--grad-soft);
  padding: 34px 24px; text-align: center; transition: border-color .25s, background .25s, transform .2s; cursor: pointer; position: relative;
}
.dropzone:hover, .dropzone.drag { border-color: var(--rose); background: var(--rose-soft); }
.dropzone .dz-ic { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 18px; background: #fff; display: grid; place-items: center; color: var(--rose-deep); box-shadow: var(--shadow-sm); }
.dropzone .dz-ic svg { width: 32px; height: 32px; }
.dropzone h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; }
.dropzone p { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.dropzone input[type=file] { display: none; }
.dz-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 14px; background: #fff; border: 1px solid var(--line); align-items: center; gap: 12px; text-align: left; }
.dz-status.show { display: flex; }
.dz-status .file-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--rose-soft); color: var(--rose-deep); display: grid; place-items: center; flex: 0 0 auto; }
.dz-status .file-info { flex: 1; min-width: 0; }
.dz-status .file-info b { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dz-status .file-info span { font-size: .82rem; color: var(--muted); }
.dz-status .file-x { color: var(--muted); padding: 6px; border-radius: 8px; }
.dz-status .file-x:hover { background: var(--rose-soft); color: var(--rose-deep); }
.dz-spinner { width: 22px; height: 22px; border: 3px solid var(--rose-soft); border-top-color: var(--rose); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.autofill-flag { display: none; align-items: center; gap: 8px; margin-top: 14px; padding: 12px 16px; border-radius: 12px; background: rgba(22,163,74,0.1); color: #15803d; font-weight: 600; font-size: .9rem; }
.autofill-flag.show { display: flex; }
.field.filled .control { border-color: rgba(22,163,74,0.5); background: rgba(22,163,74,0.04); }

/* Tag input (skills) */
.taginput { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-warm); transition: border-color .2s, box-shadow .2s; min-height: 52px; }
.taginput.focus { border-color: var(--rose); background: #fff; box-shadow: 0 0 0 4px rgba(225,75,122,0.12); }
.taginput .tag { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--grad-rose); color: #fff; font-weight: 600; font-size: .86rem; animation: pop .3s cubic-bezier(.2,.8,.3,1.2); }
.taginput .tag button { color: rgba(255,255,255,0.85); display: grid; place-items: center; line-height: 1; font-size: 1rem; }
.taginput .tag button:hover { color: #fff; }
.taginput input { flex: 1; min-width: 130px; border: none; background: transparent; outline: none; padding: 6px; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.skill-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.skill-suggest button { font-size: .83rem; padding: 6px 13px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line); color: var(--ink-2); font-weight: 600; transition: all .2s; }
.skill-suggest button:hover { border-color: var(--rose); color: var(--rose-deep); background: var(--rose-soft); transform: translateY(-2px); }
.skill-suggest button.added { opacity: .4; pointer-events: none; }

/* Consent box (LGPD) */
.consent-box { border: 1.5px solid rgba(225,75,122,0.3); background: var(--rose-tint); border-radius: var(--radius); padding: 20px 22px; }
.consent-row { display: flex; gap: 14px; align-items: flex-start; }
.consent-row input[type=checkbox] { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--rose); cursor: pointer; }
.consent-row label { font-size: .94rem; color: var(--ink-2); cursor: pointer; }
.consent-box .lgpd-note { margin-top: 12px; font-size: .82rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.consent-box .lgpd-note svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--rose-deep); margin-top: 2px; }

/* ───── Toasts / flash ───── */
.flash-stack { position: fixed; top: calc(var(--header-h) + 14px); right: 18px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px; border-radius: 14px; background: #fff; box-shadow: var(--shadow); border-left: 4px solid var(--rose); animation: slidein .4s cubic-bezier(.2,.7,.3,1); font-size: .92rem; }
.toast.ok { border-left-color: #16A34A; }
.toast.err { border-left-color: #e11d48; }
.toast .tx { flex: 1; }
@keyframes slidein { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ───── Footer ───── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 64px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.site-footer h5 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
.site-footer a { display: block; padding: 5px 0; color: rgba(255,255,255,0.72); transition: color .2s; }
.site-footer a:hover { color: var(--rose-bright); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .92rem; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
.footer-bottom a { display: inline; }

/* ───── Reveal animation ───── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ───── Page header (internal) ───── */
.page-hero { background: var(--grad-dark); color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -50px; right: 8%; width: 240px; height: 240px; background: var(--grad-rose); filter: blur(64px); opacity: .4; border-radius: 50%; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); position: relative; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 580px; margin-top: 12px; position: relative; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; position: relative; }
.breadcrumb a:hover { color: #fff; }

/* Filtros */
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.filters .control { width: auto; min-width: 170px; background: #fff; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state .es-ic { width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 24px; background: var(--grad-soft); display: grid; place-items: center; color: var(--rose-deep); }

/* Misc */
.divider-rose { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--rose); margin: 0 auto; }
.divider-rose::before, .divider-rose::after { content: ""; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--rose)); }
.note-card { background: var(--rose-tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--ink-2); margin-bottom: 10px; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose strong { color: var(--ink); }

/* ───── Responsivo ───── */
@media (max-width: 980px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .btn-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .form-card { padding: 24px 20px; }
  .cta-band { padding: 40px 24px; }
  .flash-stack { left: 14px; right: 14px; max-width: none; }
  body { font-size: 16px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions .btn { width: 100%; }
  .talent-card { padding: 20px; }
  .tc-float { display: none; }
}

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