/* ============================================================
   CashYa SpA — Global Stylesheet
   Shared by: index.html · privacidad.html
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:     #1a8c3a;
  --green-lt:  #26b84e;
  --green-dim: rgba(26, 140, 58, .12);
  --ink:       #0c1a10;
  --ink2:      #163320;
  --bg:        #f2faf4;
  --bg2:       #e4f5e8;
  --white:     #f8fdf9;
  --muted:     #4d7058;
  --border:    rgba(26, 140, 58, .14);
  --r:         20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .5;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, .nav-logo, .footer-logo {
  font-family: 'Fraunces', serif;
}


/* =============================================================
   SHARED NAVIGATION
   ============================================================= */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: rgba(242, 250, 244, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding .35s ease;
}

/* index.html: fixed nav */
nav.fixed-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
}

/* privacidad.html: sticky nav */
nav.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-leaf {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-logo span {
  color: var(--green);
}

/* Main nav links (index) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 16px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 100px;
  opacity: .6;
  transition: opacity .2s, background .2s;
}

.nav-links a:hover {
  opacity: 1;
  background: var(--green-dim);
}

.nav-links .pill {
  background: var(--ink);
  color: var(--green-lt) !important;
  opacity: 1 !important;
  padding: 10px 22px;
}

.nav-links .pill:hover {
  background: var(--green) !important;
  color: #fff !important;
}

/* Back link (privacidad) */
.nav-back {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}

.nav-back:hover {
  background: var(--bg2);
  color: var(--ink);
}


/* =============================================================
   SHARED FOOTER
   ============================================================= */

footer {
  background: var(--ink);
  color: #fff;
}

/* index footer */
footer.main-footer {
  padding: 58px 56px 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-logo span {
  color: var(--green-lt);
}

.flogo-leaf {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
}

.footer-desc {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .38);
}

.footer-col h4 {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 700;
  margin-bottom: 17px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, .44);
  text-decoration: none;
  font-size: .84rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--green-lt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: .76rem;
  color: rgba(255, 255, 255, .22);
  flex-wrap: wrap;
  gap: 10px;
}

/* privacidad footer */
footer.pp-footer {
  padding: 36px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

footer.pp-footer a {
  color: var(--green-lt);
  text-decoration: none;
}

footer.pp-footer a:hover {
  text-decoration: underline;
}


/* =============================================================
   SHARED BUTTONS
   ============================================================= */

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--green-lt);
  padding: 15px 28px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(12, 26, 16, .18);
  transition: background .25s, transform .2s;
}

.btn-s:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(12, 26, 16, .14);
  transition: border-color .25s, color .25s, transform .2s;
}

.btn-o:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .14);
  transition: background .2s, color .2s, transform .2s;
}

.btn-w:hover {
  background: var(--ink);
  color: var(--green-lt);
  transform: translateY(-2px);
}


/* =============================================================
   SHARED ANIMATIONS & REVEAL
   ============================================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(34px); }
  to   { opacity: 1; transform: none; }
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(1.6); }
}

@keyframes lineIn {
  to { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .58s ease, transform .58s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}


/* =============================================================
   INDEX PAGE — HERO
   ============================================================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
  padding: 118px 56px 80px;
  gap: 44px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -140px;
  top: 8%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 58, .12) 0%, transparent 68%);
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink2);
  color: var(--green-lt);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .5s ease both;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-lt);
  animation: blink 2.2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 560px;
  animation: fadeUp .6s .08s ease both;
}

.hero h1 .acc {
  color: var(--green);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero h1 .acc::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineIn .4s .9s ease forwards;
}

.hero-sub {
  margin-top: 20px;
  font-size: .975rem;
  line-height: 1.78;
  color: var(--muted);
  font-weight: 400;
  max-width: 460px;
  animation: fadeUp .6s .16s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
  animation: fadeUp .6s .24s ease both;
}

.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  flex-wrap: wrap;
  animation: fadeUp .6s .32s ease both;
}

.stat {
  border-left: 2px solid var(--green);
  padding-left: 14px;
}

.stat-n {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.stat-l {
  font-size: .73rem;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}


/* =============================================================
   INDEX PAGE — LOAN CALCULATOR CARD
   ============================================================= */

.hero-card {
  animation: slideLeft .7s .1s ease both;
  position: relative;
  z-index: 1;
}

.loan-card {
  background: var(--ink2);
  border-radius: 26px;
  padding: 36px 34px;
  color: var(--white);
  box-shadow: 0 30px 68px rgba(12, 26, 16, .3);
  position: relative;
  overflow: hidden;
}

.loan-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 58, .2) 0%, transparent 68%);
}

.lc-eyebrow {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 700;
  margin-bottom: 6px;
}

.lc-amt {
  font-family: 'Fraunces', serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.lc-amt sup {
  font-size: 1.15rem;
  color: var(--green-lt);
  vertical-align: super;
}

.lc-curr {
  color: rgba(255, 255, 255, .36);
  font-size: .78rem;
  margin-top: 4px;
}

.lc-approval {
  margin-top: 14px;
  background: rgba(26, 140, 58, .12);
  border: 1px solid rgba(26, 140, 58, .3);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lc-approval-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.lc-approval-text {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-lt);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.slider-wrap {
  margin: 22px 0 8px;
}

.slider-ends {
  display: flex;
  justify-content: space-between;
  font-size: .73rem;
  color: rgba(255, 255, 255, .36);
  margin-bottom: 9px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green-lt);
  cursor: pointer;
  box-shadow: 0 0 0 5px rgba(38, 184, 78, .22);
  transition: transform .2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.lc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}

.lc-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 13px;
  padding: 13px 15px;
}

.lci-label {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .33);
  margin-bottom: 5px;
}

.lci-val {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.lc-cta {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 13px;
  padding: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s, transform .2s;
}

.lc-cta:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
}


/* =============================================================
   INDEX PAGE — SECTIONS SHARED
   ============================================================= */

.section {
  padding: 92px 56px;
}

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 13px;
}

.sec-h {
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
}


/* =============================================================
   INDEX PAGE — FEATURES
   ============================================================= */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 34px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(12, 26, 16, .09);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink2);
  color: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -.01em;
}

.feat-card p {
  font-size: .855rem;
  line-height: 1.72;
  color: var(--muted);
}


/* =============================================================
   INDEX PAGE — CONÓCENOS
   ============================================================= */

.conocenos-bg {
  background: var(--ink);
}

.conocenos-bg .eyebrow {
  color: var(--green-lt);
}

.conocenos-bg .sec-h {
  color: #fff;
}

.conocenos-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

.conocenos-col {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r);
  padding: 40px 36px;
  transition: background .25s, border-color .25s;
}

.conocenos-col:hover {
  background: rgba(26, 140, 58, .07);
  border-color: rgba(26, 140, 58, .2);
}

.cc-title {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 700;
  margin-bottom: 18px;
}

.conocenos-col > p {
  font-size: .9rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 20px;
}

.ck-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ck-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.5;
}

.ck-list li::before {
  content: '✔';
  color: var(--green-lt);
  font-size: .72rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.of-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.of-item-title {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.of-item-title::before {
  content: '◆';
  font-size: .45rem;
}

.of-item p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .52);
  line-height: 1.62;
}


/* =============================================================
   INDEX PAGE — HOW IT WORKS
   ============================================================= */

.how-bg {
  background: var(--ink2);
}

.how-bg .eyebrow {
  color: var(--green-lt);
}

.how-bg .sec-h {
  color: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}

.step-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  transition: background .25s, border-color .25s;
}

.step-card:hover {
  background: rgba(26, 140, 58, .08);
  border-color: rgba(26, 140, 58, .22);
}

.step-n {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green);
  opacity: .28;
  line-height: 1;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: .975rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-body p {
  font-size: .855rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, .44);
}


/* =============================================================
   INDEX PAGE — REQUIREMENTS
   ============================================================= */

.req-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.req-card {
  background: var(--ink2);
  border-radius: 26px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.req-card::before {
  content: '';
  position: absolute;
  bottom: -90px;
  right: -90px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 58, .18), transparent 68%);
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: .94rem;
}

.chk {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(26, 140, 58, .18);
  color: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
}

.req-note {
  margin-top: 26px;
  background: rgba(26, 140, 58, .08);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 13px 17px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65;
  position: relative;
}

.req-text .sec-h {
  margin-bottom: 16px;
}

.req-text > p {
  font-size: .94rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 26px;
}

.badges {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg2);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: .77rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--border);
}

.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}


/* =============================================================
   INDEX PAGE — CONSIGUE TU CRÉDITO
   ============================================================= */

.consigue-bg {
  background: var(--ink);
  text-align: center;
}

.consigue-bg .sec-h {
  color: #fff;
  margin-bottom: 44px;
}

.consigue-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.c-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 18px 22px;
  width: 100%;
  transition: background .25s, border-color .25s;
  text-decoration: none;
}

.c-step:hover {
  background: rgba(26, 140, 58, .1);
  border-color: rgba(26, 140, 58, .3);
}

.c-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-lt);
  opacity: .45;
  flex-shrink: 0;
  width: 24px;
  text-align: left;
}

.c-text {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.c-arrow {
  margin-left: auto;
  color: var(--green-lt);
  font-size: .9rem;
  opacity: .5;
  transition: opacity .2s;
}

.c-step:hover .c-arrow {
  opacity: 1;
}


/* =============================================================
   INDEX PAGE — CTA STRIP
   ============================================================= */

.cta-strip {
  background: var(--green);
  border-radius: 24px;
  padding: 62px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.cta-strip::after {
  content: '';
  position: absolute;
  left: -50px;
  bottom: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .07);
}

.cta-strip h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
}


/* =============================================================
   PRIVACIDAD PAGE — HERO
   ============================================================= */

.pp-hero {
  background: var(--ink);
  padding: 80px 56px 64px;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 58, .18) 0%, transparent 68%);
  pointer-events: none;
}

.pp-eyebrow {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 700;
  margin-bottom: 14px;
}

.pp-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  max-width: 640px;
  margin-bottom: 16px;
}

.pp-meta {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-meta span {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
}


/* =============================================================
   PRIVACIDAD PAGE — CONTENT BODY
   ============================================================= */

.pp-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 56px 100px;
}

.pp-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
  margin-bottom: 56px;
}

.pp-toc-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
}

.pp-toc ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-toc ol li {
  font-size: .875rem;
  color: var(--muted);
}

.pp-toc ol li a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.pp-toc ol li a:hover {
  text-decoration: underline;
}

.pp-section {
  margin-bottom: 52px;
  scroll-margin-top: 80px;
}

.pp-section-num {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}

.pp-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

.pp-section p {
  font-size: .95rem;
  line-height: 1.8;
  color: #2a3d2e;
  margin-bottom: 14px;
}

.pp-section p:last-child {
  margin-bottom: 0;
}

.pp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0;
}

.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  line-height: 1.7;
  color: #2a3d2e;
}

.pp-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px;
}

.pp-definition {
  background: var(--bg2);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin: 10px 0;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--ink2);
}

.pp-definition strong {
  color: var(--ink);
}

.pp-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 52px;
}

.pp-accept-wrap {
  background: var(--ink2);
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
  margin-top: 56px;
}

.pp-accept-wrap p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pp-accept-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 6px 22px rgba(26, 140, 58, .3);
}

.pp-accept-btn:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1080px) {
  .hero                  { grid-template-columns: 1fr; padding: 108px 32px 60px; }
  .hero h1               { font-size: clamp(2rem, 6vw, 3.2rem); max-width: 100%; }
  .hero-card             { max-width: 500px; }
  .feat-grid             { grid-template-columns: 1fr 1fr; }
  .steps-grid            { grid-template-columns: 1fr; }
  .req-wrap              { grid-template-columns: 1fr; gap: 36px; }
  .conocenos-cols        { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  nav                    { padding: 13px 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .section               { padding: 60px 20px; }
  .hero                  { padding: 92px 20px 52px; }
  .feat-grid             { grid-template-columns: 1fr; }
  .cta-strip             { padding: 40px 26px; }
  .footer-grid           { grid-template-columns: 1fr; gap: 26px; }
  .hero-stats            { gap: 18px; }

  /* privacidad responsive */
  nav.sticky-nav         { padding: 14px 20px; }
  .pp-hero               { padding: 56px 20px 48px; }
  .pp-body               { padding: 40px 20px 72px; }
  .pp-toc                { padding: 24px 20px; }
  .pp-accept-wrap        { padding: 28px 20px; }
  footer.pp-footer       { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
}
