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

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --dark: #1A1A1A;
  --green: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #D8F3DC;
  --gold: #C9A84C;
  --text-muted: #6B6B6B;
  --border: #E8E2D9;
  --red: #e74c3c;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--green);
  letter-spacing: -0.5px; cursor: pointer; user-select: none;
}
.logo span { color: var(--gold); }
nav a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color .2s; }
nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: white !important;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, #D8F3DC44, transparent),
              radial-gradient(ellipse 40% 50% at 10% 80%, #C9A84C11, transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
  width: 100%; position: relative;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12; letter-spacing: -1px; margin-bottom: 24px;
}
h1 em {
  font-style: normal; color: var(--green); position: relative;
}
h1 em::after {
  content: ''; position: absolute; left: 0; bottom: -4px; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px;
}
.hero-sub {
  font-size: 18px; line-height: 1.65; color: var(--text-muted);
  margin-bottom: 40px; font-weight: 300; max-width: 480px;
}
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: white;
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: all .2s; box-shadow: 0 4px 24px rgba(45,106,79,.25);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(45,106,79,.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--dark); padding: 16px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1.5px solid var(--border); transition: all .2s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.trust-row { display: flex; gap: 32px; margin-top: 52px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green); }
.trust-label { font-size: 13px; color: var(--text-muted); }

/* ===== HERO VISUAL CARDS ===== */
.hero-visual { display: flex; flex-direction: column; gap: 16px; animation: floatUp .8s ease both; animation-delay: .3s; }
@keyframes floatUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.card { background: white; border-radius: 20px; padding: 24px; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,.06); }
.caregiver-card { display: flex; align-items: center; gap: 16px; }
.avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.avatar-green { background: var(--green-pale); }
.avatar-gold { background: #FFF3D6; }
.card-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.card-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 100px; background: var(--green-pale); color: var(--green); }
.match-card { display: flex; align-items: center; gap: 14px; }
.match-score { width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 17px; flex-shrink: 0; }
.match-info p { font-size: 13px; color: var(--text-muted); font-weight: 300; margin-top: 3px; }
.match-info strong { font-size: 15px; font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,42px); line-height: 1.2; margin-bottom: 16px; max-width: 560px; }
.section-sub { font-size: 17px; color: var(--text-muted); font-weight: 300; max-width: 500px; line-height: 1.6; margin-bottom: 64px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step { padding: 36px 28px; border-radius: 20px; border: 1px solid var(--border); background: white; transition: box-shadow .2s, transform .2s; }
.step:hover { box-shadow: 0 8px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.step-num { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--green-pale); line-height: 1; margin-bottom: 16px; }
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ===== PANELS ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.panel { border-radius: 24px; padding: 52px 44px; }
.panel-family { background: var(--green); color: white; }
.panel-caregiver { background: var(--cream); border: 1px solid var(--border); }
.panel h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 16px; line-height: 1.2; }
.panel p { font-size: 15px; line-height: 1.7; margin-bottom: 32px; font-weight: 300; opacity: .85; }
.panel ul { list-style: none; margin-bottom: 40px; }
.panel ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.panel ul li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.panel-caregiver ul li::before { background: var(--green-pale); color: var(--green); }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--green); padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn-green { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: white; padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .2s; box-shadow: 0 4px 20px rgba(45,106,79,.2); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }

/* ===== FORM ===== */
.form-section { background: var(--cream); padding: 100px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.form-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.form-inner .section-title, .form-inner .section-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
.form-box { background: white; border-radius: 24px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,.06); margin-top: 48px; text-align: left; }
.tabs { display: flex; background: var(--cream); border-radius: 12px; padding: 4px; margin-bottom: 32px; }
.tab { flex: 1; padding: 10px; text-align: center; font-size: 14px; font-weight: 500; border-radius: 9px; cursor: pointer; color: var(--text-muted); transition: all .2s; border: none; background: transparent; }
.tab.active { background: white; color: var(--green); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.field { margin-bottom: 20px; }
label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 7px; color: var(--dark); }
input, select, textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark); background: var(--warm-white); outline: none; transition: border-color .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 90px; }
.submit-btn { width: 100%; padding: 16px; background: var(--green); color: white; border: none; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 4px 20px rgba(45,106,79,.25); margin-top: 8px; }
.submit-btn:hover { background: var(--green-light); transform: translateY(-2px); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 14px; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.success-msg { display: none; text-align: center; padding: 32px; }
.success-msg .icon { font-size: 48px; margin-bottom: 16px; }
.success-msg h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 8px; }
.success-msg p { color: var(--text-muted); font-size: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== WA FLOAT ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 22px; border-radius: 100px; text-decoration: none; font-size: 14px; font-weight: 600; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: all .2s; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 20px; height: 20px; fill: white; }

/* ===== FOOTER ===== */
footer { padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); }
footer p { font-size: 13px; color: var(--text-muted); }

/* ===== ADMIN PANEL ===== */
#admin-overlay { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); align-items: flex-start; justify-content: flex-end; }
#admin-overlay.open { display: flex; }
#admin-panel { width: 440px; height: 100vh; background: #111; color: #eee; overflow-y: auto; display: flex; flex-direction: column; box-shadow: -8px 0 48px rgba(0,0,0,.5); }
.admin-header { padding: 24px; border-bottom: 1px solid #222; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: #111; z-index: 10; }
.admin-header h2 { font-family: 'Playfair Display', serif; font-size: 20px; color: white; }
.admin-header span { font-size: 12px; color: #555; display: block; margin-top: 2px; }
#admin-close { background: none; border: none; color: #555; font-size: 22px; cursor: pointer; transition: color .2s; line-height: 1; padding: 4px; }
#admin-close:hover { color: white; }
.admin-tabs { display: flex; background: #1a1a1a; border-bottom: 1px solid #222; }
.admin-tab { flex: 1; padding: 12px 8px; text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .5px; cursor: pointer; color: #555; border: none; background: transparent; transition: all .2s; }
.admin-tab.active { color: var(--gold); border-bottom: 2px solid var(--gold); }
.admin-page { display: none; flex-direction: column; flex: 1; }
.admin-page.active { display: flex; }
.admin-section { padding: 20px 24px; border-bottom: 1px solid #1e1e1e; }
.admin-section h3 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.admin-field { margin-bottom: 14px; }
.admin-field label { display: block; font-size: 12px; color: #777; margin-bottom: 5px; }
.admin-field input, .admin-field textarea, .admin-field select { width: 100%; padding: 9px 12px; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px; color: #eee; font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none; transition: border-color .2s; }
.admin-field input:focus, .admin-field textarea:focus { border-color: var(--green); }
.admin-field textarea { resize: vertical; min-height: 70px; }
.admin-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.admin-save { margin: 20px 24px; padding: 14px; background: var(--green); color: white; border: none; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
.admin-save:hover { background: var(--green-light); }
.admin-save.saved { background: #27ae60; }
.admin-hint { font-size: 11px; color: #555; margin-top: 4px; line-height: 1.4; }
.lead-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; }
.lead-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: white; }
.lead-card p { font-size: 12px; color: #666; margin-bottom: 2px; }
.lead-badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; margin-top: 6px; }
.lead-badge.familia { background: var(--green-pale); color: var(--green); }
.lead-badge.cuidador { background: #FFF3D6; color: #8a6000; }
.leads-empty { text-align: center; padding: 48px 24px; color: #555; font-size: 14px; }
.clear-leads { margin: 0 24px 20px; padding: 10px; background: #1a1a1a; color: #e74c3c; border: 1px solid #2a2a2a; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 12px; cursor: pointer; width: calc(100% - 48px); transition: all .2s; }
.clear-leads:hover { background: #e74c3c; color: white; }

/* ===== LOGIN ===== */
#admin-login { padding: 40px 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
#admin-login h3 { font-family: 'Playfair Display', serif; color: white; font-size: 18px; text-align: center; }
#admin-login p { font-size: 13px; color: #555; text-align: center; }
#pw-input { width: 100%; padding: 12px 16px; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; color: #eee; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; }
#pw-input:focus { border-color: var(--green); }
#login-btn { width: 100%; padding: 13px; background: var(--green); color: white; border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; }
#login-btn:hover { background: var(--green-light); }
#login-error { color: var(--red); font-size: 12px; text-align: center; display: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--warm-white); border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid var(--border); position: relative; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--dark); font-weight: 300; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-bg { background: var(--cream); border-top: 1px solid var(--border); }
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--dark); cursor: pointer; text-align: left; gap: 16px; transition: background .15s; }
.faq-question:hover { background: var(--cream); }
.faq-icon { font-size: 18px; color: var(--green); flex-shrink: 0; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; line-height: 1.7; color: var(--text-muted); font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 200px; }

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
[data-anim].in { opacity: 1; transform: none; }
[data-anim][data-d="1"] { transition-delay: .1s; }
[data-anim][data-d="2"] { transition-delay: .22s; }
[data-anim][data-d="3"] { transition-delay: .34s; }
[data-anim][data-d="4"] { transition-delay: .46s; }
[data-anim][data-d="5"] { transition-delay: .58s; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
}

/* ===== HERO ORBS (animated mesh background) ===== */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(72px); pointer-events: none; will-change: transform;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(216,243,220,.75) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%);
  bottom: -80px; left: 8%;
  animation: orbFloat2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(45,106,79,.09) 0%, transparent 70%);
  top: 35%; left: 42%;
  animation: orbFloat1 17s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-36px) scale(1.07); }
  66%      { transform: translate(-18px,22px) scale(.94); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-26px,-18px) scale(1.09); }
}

/* ===== HERO ENTRY ANIMATIONS ===== */
.badge       { animation: slideInLeft .65s ease both .2s; }
.hero h1     { animation: fadeUp .85s ease both .32s; }
.hero-sub    { animation: fadeUp .85s ease both .46s; }
.cta-group   { animation: fadeUp .85s ease both .58s; }
.trust-row   { animation: fadeUp .85s ease both .70s; }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-16px); } to { opacity:1; transform:none; } }
@keyframes fadeUp      { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }

/* Hero cards: continuous float */
.hero-visual { animation: fadeUp .8s ease both .3s; }
.hero-visual .card:nth-child(1) { animation: fadeUp .65s ease both .5s, cardFloat 5s ease-in-out 1.2s infinite; }
.hero-visual .card:nth-child(2) { animation: fadeUp .65s ease both .65s, cardFloat 6.5s ease-in-out 1.8s infinite; }
.hero-visual .card:nth-child(3) { animation: fadeUp .65s ease both .80s, cardFloat 8s ease-in-out 2.4s infinite; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}

/* ===== SECTION LABEL ACCENT ===== */
.section-label {
  padding-left: 18px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 14px;
  background: var(--gold); border-radius: 2px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-block {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px; line-height: 1;
  color: var(--green); margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-block-suffix { font-size: 26px; color: var(--gold); }
.stat-block-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--dark);
  padding: 100px 48px;
}
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-label::before { background: var(--gold); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-sub { color: rgba(255,255,255,.5); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s;
}
.testi-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px; color: var(--green);
  line-height: .7; margin-bottom: 16px;
  opacity: .6;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,.75);
  font-weight: 300; font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: white; }
.testi-location { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ===== PANELS UPGRADED ===== */
.panel-family {
  background: linear-gradient(135deg, #2D6A4F 0%, #1a3d2e 100%);
  box-shadow: 0 24px 60px rgba(45,106,79,.28);
}
.panel-caregiver {
  background: linear-gradient(135deg, #FAF7F2 0%, white 60%);
}

/* ===== STEP CARDS HOVER ===== */
.step { position: relative; overflow: hidden; }
.step::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.step:hover::after { transform: scaleX(1); }

/* ===== SUBMIT BUTTON SHIMMER ===== */
.submit-btn { position: relative; overflow: hidden; }
.submit-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.submit-btn:hover::after { transform: translateX(100%); }

/* ===== WA FLOAT PULSE ===== */
.wa-float { animation: waPulse 3.2s ease-out infinite; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
  60%     { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; padding: 40px 20px; }
  .section { padding: 60px 20px; }
  .form-section { padding: 60px 20px; }
  .form-box { padding: 24px 20px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 20px; }
  .hero-visual { display: none; }
  #admin-panel { width: 100vw; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(1),.stat-block:nth-child(2) { border-bottom: 1px solid var(--border); }
  .testimonials-section { padding: 64px 20px; }
  .stats-section { padding: 0 20px; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--dark);
  padding: 18px 48px;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.trust-badge-icon { font-size: 15px; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-strip { padding: 14px 16px; }
  .trust-strip-inner { gap: 4px; justify-content: flex-start; }
  .trust-badge { padding: 4px 12px; font-size: 12px; }
  .trust-divider { display: none; }
}

/* ===== ABOUT / QUIÉNES SOMOS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.about-photo {
  width: 280px; height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { font-size: 80px; opacity: .4; }
.about-tag {
  background: var(--dark); color: white;
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px;
  letter-spacing: .5px;
}
.about-bio {
  font-size: 17px; line-height: 1.75;
  color: var(--text-muted); font-weight: 300;
  margin-bottom: 28px; max-width: 520px;
}
.about-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.about-role { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { width: 100%; height: 260px; }
}

/* ===== URGENCY SECTION ===== */
@media (max-width: 768px) {
  #urgency-grid { grid-template-columns: 1fr !important; }
}

/* ===== MOBILE FIX COMPLETO ===== */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 12px 16px;
    flex-wrap: nowrap;
    gap: 0;
  }
  nav .logo-wrap, nav a[id="logo-click"] {
    flex-shrink: 0;
  }
  /* Hide phone in nav on mobile */
  nav a[href^="tel"] { display: none !important; }
  /* Shrink nav CTA */
  .nav-cta { padding: 8px 14px !important; font-size: 13px !important; }
  /* Hide "Cómo funciona" on mobile */
  nav a[href="#como-funciona"] { display: none !important; }

  /* NAV LOGO text smaller */
  nav div[style*="font-size:22px"] { font-size: 18px !important; }
  nav div[style*="font-size:10px"] { display: none !important; }
  nav img[style*="height:44px"] { height: 36px !important; }

  /* FOOTER grid */
  footer div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  footer div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* FOOTER logo - fix overflow */
  footer img { max-width: 100% !important; }

  /* General overflow fix */
  body { overflow-x: hidden; }
  * { max-width: 100%; }

  /* Section titles */
  .section-title { font-size: 26px !important; }
}
