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

:root {
  /* ── Paleta Airbnb ─────────────────── */
  --forest:   #FF5A5F;   /* Rausch — rojo coral Airbnb */
  --forest-d: #e04045;   /* Rausch oscuro */
  --teal:     #00A699;   /* Babu — teal Airbnb */
  --teal-lt:  #00c4b4;   /* Babu claro */
  --gold:     #FF5A5F;   /* usar Rausch en lugar de gold */
  --gold-lt:  #ff7c80;   /* Rausch claro */
  --dark:     #0f0f0f;
  --charcoal: #1e1e1e;
  --gray:     #484848;   /* Hof — gris texto Airbnb */
  --lgray:    #767676;   /* Foggy — gris secundario Airbnb */
  --cream:    #FFFFFF;   /* Airbnb white */
  --white:    #ffffff;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --r:     12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600; font-size: .88rem;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,160,48,.35);
}

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: .85rem 2rem;
  border: 1.5px solid rgba(26,61,40,.2);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 500; font-size: .88rem;
  border-radius: 100px;
  transition: all .2s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.btn-outline-light {
  display: inline-flex; align-items: center;
  padding: .85rem 2rem;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500; font-size: .88rem;
  border-radius: 100px;
  transition: all .2s;
}
.btn-outline-light:hover { border-color: var(--gold); background: var(--gold); color: #000; }

.btn-primary-dark {
  display: inline-flex; align-items: center;
  padding: .9rem 2.2rem;
  background: var(--gold);
  color: #000;
  font-weight: 700; font-size: .88rem;
  font-family: var(--font-body);
  border-radius: 100px;
  transition: all .2s;
}
.btn-primary-dark:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost-dark {
  display: inline-flex; align-items: center;
  padding: .9rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  font-weight: 500; font-size: .88rem;
  font-family: var(--font-body);
  border-radius: 100px;
  transition: all .2s;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(248,246,241,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,61,40,.08);
  transition: padding .3s, box-shadow .3s;
}
.nav.scrolled { padding: .8rem 3rem; box-shadow: 0 4px 24px rgba(0,0,0,.07); }

.nav-logo { display: flex; align-items: baseline; gap: .15rem; }
.logo-rn {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--forest);
}
.logo-host {
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 300;
  color: var(--teal);
  letter-spacing: .05em;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--gray);
  transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links .nav-cta {
  padding: .55rem 1.4rem;
  background: #FF5A5F;
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.nav-links .nav-cta:hover { background: #e04045; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .3rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #FF5A5F; border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a { font-size: 1.5rem; font-family: var(--font-display); color: var(--forest); font-weight: 600; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 5rem;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(42,171,138,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,160,48,.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .03;
  background-image: linear-gradient(rgba(26,61,40,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26,61,40,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem 1rem;
  background: rgba(0,166,153,.08);
  border: 1px solid rgba(42,171,138,.25);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  color: var(--teal);
  width: fit-content;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--forest);
  font-weight: 700;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: .5rem;
}
.proof-item { text-align: center; }
.proof-item strong {
  display: block;
  font-size: 1.3rem; font-weight: 700;
  color: var(--forest);
  font-family: var(--font-display);
}
.proof-item span { font-size: .78rem; color: var(--lgray); }
.proof-divider { width: 1px; height: 36px; background: rgba(26,61,40,.15); }

.hero-image-col { position: relative; }
.hero-img-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.18);
}
.hero-img-frame img { transition: transform 6s ease; }
.hero-img-frame:hover img { transform: scale(1.04); }

.hero-img-tag {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(248,246,241,.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: .75rem; font-weight: 600;
  color: var(--forest);
}
.tag-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-strip {
  background: #FF5A5F;
  padding: .9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 2rem;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-track .mx { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADERS ─────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}
.section-tag.light { color: rgba(255,255,255,.6); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header h2 em { font-style: italic; color: var(--teal); }
.section-header p { color: var(--gray); font-size: .98rem; line-height: 1.7; }

/* ─── VALUE SECTION ───────────────────────────────── */
.value-section { padding: 7rem 0; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(26,61,40,.08);
  border-radius: var(--r);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  animation: fadeUp .5s both;
  animation-delay: calc(var(--i) * .08s);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,61,40,.1);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: .6rem;
}
.value-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

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

/* ─── PROOF SECTION ───────────────────────────────── */
.proof-section {
  background: #FF5A5F;
  padding: 7rem 0;
}
.proof-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.proof-text .section-header { text-align: left; margin: 0 0 2rem; }
.proof-text h2 { color: #fff; }
.proof-text h2 em { color: var(--gold-lt); }
.proof-text .section-tag { color: rgba(255,255,255,.5); }
.proof-text p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

.proof-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.proof-list li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.check { color: #00A699; font-weight: 700; }

.proof-card-col { display: flex; flex-direction: column; gap: 1.2rem; }
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1.5rem;
}
.stars { color: var(--gold-lt); font-size: .9rem; margin-bottom: .8rem; }
.review-card p { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .8rem; }
.reviewer-avatar {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: #fff; font-size: .88rem; }
.reviewer span { font-size: .75rem; color: rgba(255,255,255,.5); }

.managed-badge {
  display: flex; align-items: center; gap: .6rem;
  padding: .8rem 1.2rem;
  background: rgba(42,171,138,.12);
  border: 1px solid rgba(42,171,138,.25);
  border-radius: var(--r);
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.managed-badge a { color: var(--teal); font-weight: 600; }
.managed-badge a:hover { color: var(--teal-lt); }

/* ─── PROCESS ─────────────────────────────────────── */
.process-section { padding: 7rem 0; }
.steps {
  display: flex; align-items: flex-start;
  gap: 1rem;
}
.step {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(26,61,40,.08);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(26,61,40,.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); margin-bottom: .7rem; }
.step p { font-size: .9rem; color: var(--gray); line-height: 1.65; }
.step-arrow {
  font-size: 1.5rem; color: var(--gold);
  padding-top: 4rem;
  flex-shrink: 0;
}

/* ─── PRICING ─────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(135deg, var(--forest-d) 0%, var(--forest) 100%);
  padding: 7rem 0;
}
.pricing-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.pricing-text h2 { font-family: var(--font-display); font-size: 2.4rem; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.pricing-text h2 em { font-style: italic; color: var(--gold-lt); }
.pricing-text p { color: rgba(255,255,255,.7); font-size: .98rem; line-height: 1.7; margin-bottom: 2rem; }
.pricing-text .section-tag { color: rgba(255,255,255,.5); }

.pricing-cards { display: flex; gap: 1rem; }
.pricing-card {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 1.8rem 1.5rem;
}
.pricing-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}
.pricing-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .8rem;
}
.pricing-card.featured .pricing-label { color: rgba(0,0,0,.6); }
.pricing-pct {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.pricing-card.featured .pricing-pct { color: #000; }
.pricing-pct span { font-size: 1.5rem; }
.pricing-desc { font-size: .78rem; color: rgba(255,255,255,.5); margin: .4rem 0 1.2rem; }
.pricing-card.featured .pricing-desc { color: rgba(0,0,0,.5); }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pricing-card li { font-size: .82rem; color: rgba(255,255,255,.75); }
.pricing-card li::before { content: "✓  "; color: var(--teal); }
.pricing-card.featured li { color: rgba(0,0,0,.7); }
.pricing-card.featured li::before { color: var(--forest); }

/* ─── CTA SECTION ─────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  background: var(--cream);
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 1rem;
}
.cta-inner p { color: var(--gray); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo { display: flex; align-items: baseline; gap: .15rem; margin-bottom: 1rem; }
.footer-brand .logo-rn { color: #fff; font-size: 1.15rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: .8rem; line-height: 1.6; }
.footer-brand a { font-size: .85rem; color: var(--teal); }
.footer-brand a:hover { color: var(--teal-lt); }

.footer-links h4 { color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--teal); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; gap: 3rem; }
  .hero-image-col { display: none; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-inner, .pricing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: .8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .value-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding-top: 0; }
  .pricing-cards { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .hero-proof { flex-wrap: wrap; gap: 1rem; }
  .proof-divider { display: none; }
}

/* ─── SHARED PAGE STYLES ──────────────────────────── */
.page-hero {
  padding: 9rem 0 5rem;
  background: #FF5A5F;
  text-align: center;
}
.page-hero .section-tag { color: rgba(255,255,255,.5); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: .5rem 0 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.content-section { padding: 6rem 0; }

/* ─── LANGUAGE TOGGLE ─────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center;
  gap: 2px;
  background: rgba(26,61,40,.08);
  border-radius: 100px;
  padding: 3px;
  margin-left: .5rem;
}
.lang-btn {
  border: none; background: none; cursor: pointer;
  padding: .28rem .65rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em;
  color: var(--lgray);
  border-radius: 100px;
  transition: all .2s;
}
.lang-btn.active {
  background: #FF5A5F;
  color: #fff;
}

/* ─── TEAM CARDS ──────────────────────────────────── */
.team-section { padding: 7rem 0; background: #f7f7f7; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 860px; margin: 0 auto;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(26,61,40,.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,61,40,.1); }
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid rgba(42,171,138,.2);
  display: block;
}
.team-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--forest));
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem; color: #fff; font-weight: 700;
}
.team-role {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #FF5A5F;
  margin-bottom: .6rem;
}
.team-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); margin-bottom: .5rem; }
.team-card p { font-size: .85rem; color: var(--gray); line-height: 1.65; }
.team-airbnb {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .8rem;
  font-size: .75rem; color: var(--lgray);
  background: rgba(26,61,40,.05); border-radius: 100px;
  padding: .3rem .8rem;
}

@media(max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ─── COMPLIANCE / 180 DAYS ───────────────────────── */
.compliance-section {
  padding: 7rem 0;
  background: #fff;
}
.compliance-alert {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(220,53,69,.06);
  border: 1.5px solid rgba(220,53,69,.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 4rem;
  max-width: 640px;
}
.alert-icon { font-size: 1.5rem; }
.alert-text { display: flex; flex-direction: column; }
.alert-text strong { font-size: .88rem; color: #c0392b; font-weight: 700; }
.alert-text span { font-size: .82rem; color: var(--gray); }

.compliance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  margin-bottom: 4rem;
}
.compliance-text h2 {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--forest);
  line-height: 1.2; margin-bottom: 1rem;
}
.compliance-text h2 em { font-style: italic; color: #c0392b; }
.compliance-text p { color: var(--gray); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }

.compliance-cards { display: flex; flex-direction: column; gap: 1rem; }
.compliance-card {
  border-radius: 12px; padding: 1.5rem;
  border: 1.5px solid;
}
.compliance-card.bad {
  background: rgba(220,53,69,.04);
  border-color: rgba(220,53,69,.2);
}
.compliance-card.good {
  background: rgba(42,171,138,.05);
  border-color: rgba(42,171,138,.25);
}
.cc-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .8rem;
}
.compliance-card.bad .cc-label { color: #c0392b; }
.compliance-card.good .cc-label { color: var(--teal); }
.compliance-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.compliance-card li { font-size: .88rem; color: var(--gray); }
.compliance-card.good li { color: var(--forest); }

.compliance-counter {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  background: #FF5A5F;
  border-radius: 16px; padding: 3rem;
  margin-bottom: 1rem;
}
.counter-item { text-align: center; }
.counter-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.counter-num.gold { color: var(--gold-lt); }
.counter-num.teal { color: var(--teal-lt); }
.counter-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .4rem; max-width: 140px; line-height: 1.4; }
.counter-divider { width: 1px; height: 60px; background: rgba(255,255,255,.12); }
.counter-note { font-size: .75rem; color: var(--lgray); text-align: center; }

@media(max-width: 768px) {
  .compliance-grid { grid-template-columns: 1fr; gap: 2rem; }
  .compliance-counter { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .counter-divider { width: 60px; height: 1px; }
}

/* ─── COMPLIANCE / 180 DÍAS ────────────────────────── */
.compliance-section { padding: 7rem 0; background: #fff; }

.compliance-alert {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(220,53,69,.05);
  border: 1.5px solid rgba(220,53,69,.2);
  border-left: 4px solid #c0392b;
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 4rem;
  max-width: 660px;
}
.alert-icon { font-size: 1.4rem; line-height: 1; margin-top: 1px; }
.alert-text { display: flex; flex-direction: column; gap: .15rem; }
.alert-text strong { font-size: .88rem; color: #c0392b; font-weight: 700; }
.alert-text span { font-size: .82rem; color: var(--gray); }

.compliance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; margin-bottom: 4rem;
}
.compliance-text .section-tag { margin-bottom: .8rem; }
.compliance-text h2 {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--forest);
  line-height: 1.15; margin-bottom: 1.2rem;
}
.compliance-text h2 em { font-style: italic; color: #c0392b; }
.compliance-text p { color: var(--gray); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }

.compliance-cards { display: flex; flex-direction: column; gap: 1rem; }
.compliance-card { border-radius: 12px; padding: 1.5rem; border: 1.5px solid; }
.compliance-card.bad { background: rgba(220,53,69,.04); border-color: rgba(220,53,69,.18); }
.compliance-card.good { background: rgba(42,171,138,.05); border-color: rgba(42,171,138,.22); }
.cc-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.compliance-card.bad .cc-label { color: #c0392b; }
.compliance-card.good .cc-label { color: var(--teal); }
.compliance-card ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.compliance-card li { font-size: .88rem; color: var(--gray); }
.compliance-card.good li { color: var(--forest); font-weight: 500; }

.compliance-counter {
  display: flex; align-items: center; justify-content: center; gap: 4rem;
  background: #FF5A5F; border-radius: 20px; padding: 3rem 4rem;
  margin-bottom: 1rem;
}
.counter-item { text-align: center; }
.counter-num {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: .4rem;
}
.counter-num.gold { color: #f0c040; }
.counter-num.teal { color: #5fe3c8; }
.counter-label { font-size: .78rem; color: rgba(255,255,255,.45); max-width: 130px; line-height: 1.45; }
.counter-divider { width: 1px; height: 64px; background: rgba(255,255,255,.1); }
.counter-note { font-size: .73rem; color: var(--lgray); text-align: center; }

@media(max-width: 900px) {
  .compliance-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .compliance-counter { flex-direction: column; gap: 2rem; padding: 2rem; }
  .counter-divider { width: 50px; height: 1px; }
}
