/* ============================================================
   ESPECIALISTA ADN — style.css
   ============================================================ */

:root {
  --navy:   #0b1d35;
  --navy2:  #132a4a;
  --navy3:  #1c3a60;
  --gold:   #b8985a;
  --gold2:  #d4b87a;
  --gold3:  #f0daa0;
  --light:  #f5f2ec;
  --white:  #ffffff;
  --text:   #2a2a2a;
  --text2:  #555555;
  --border: #ddd5c4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVEGACIÓN ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(11,29,53,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,152,90,0.2);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px; width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(184,152,90,0.3));
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold2); font-weight: 300; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .82rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold2); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 6px 18px; border-radius: 3px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
#inicio {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  overflow: hidden; position: relative;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(184,152,90,.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(28,58,96,.6) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5% 5rem 8%;
}
.hero-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,152,90,.12);
  border: 1px solid rgba(184,152,90,.3);
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem,5vw,4.2rem); font-weight: 300;
  line-height: 1.12; color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease .15s both;
}
.hero-title strong { font-weight: 600; color: var(--gold2); display: block; }
.hero-title em { font-style: italic; color: rgba(255,255,255,.6); }
.hero-desc {
  font-size: .95rem; line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp .8s ease .3s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s ease .45s both;
}
.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .8s ease .6s both;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold2); line-height: 1;
}
.stat-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 4px;
}
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 8% 5rem 3rem;
}
.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-img {
  width: min(380px, 90%);
  filter: drop-shadow(0 8px 40px rgba(184,152,90,.25));
  animation: fadeUp .8s ease .2s both;
}

/* ── BOTONES ── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 13px 28px; border: none; border-radius: 3px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 3px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

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

/* ── SECCIONES ── */
section { padding: 90px 8%; }
.section-tag {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 400;
  line-height: 1.2; color: var(--navy); margin-bottom: 1rem;
}
.section-lead {
  font-size: .95rem; line-height: 1.8;
  color: var(--text2); max-width: 560px; font-weight: 300;
}
.divider-gold {
  width: 48px; height: 2px;
  background: var(--gold); margin: 1.5rem 0;
}

/* ── POR QUÉ ── */
#por-que { background: var(--light); }
.porque-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 4rem;
}
.porque-feature { display: flex; gap: 1.25rem; align-items: flex-start; margin-top: 2rem; }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 36px;
}
.feature-body h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.feature-body p  { font-size: .85rem; line-height: 1.7; color: var(--text2); font-weight: 300; }
.porque-callout {
  background: var(--navy); border-radius: 8px;
  padding: 3rem; color: var(--white); position: relative; overflow: hidden;
}
.porque-callout::before {
  content: '⚖'; position: absolute; right: 2rem; top: 2rem;
  font-size: 5rem; opacity: .06;
}
.porque-callout blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 300; font-style: italic;
  line-height: 1.6; color: rgba(255,255,255,.85); margin-bottom: 1.5rem;
}
.porque-callout p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.5rem; }
.porque-callout cite { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ── CONÓCENOS ── */
#conocenos { background: var(--white); }
.conocenos-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 5rem; align-items: start; margin-top: 4rem;
}
.profile-card {
  background: var(--navy); border-radius: 8px;
  padding: 2.5rem; text-align: center;
  position: sticky; top: 90px;
}
.profile-logo {
  width: 120px; height: 120px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(184,152,90,.3));
}
.profile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: .3rem;
}
.profile-sub { font-size: .75rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.profile-badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.badge {
  font-size: .68rem; font-weight: 500; padding: 4px 10px;
  background: rgba(184,152,90,.15); border: 1px solid rgba(184,152,90,.3);
  border-radius: 2px; color: var(--gold2); letter-spacing: .05em;
}
.conocenos-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--navy); margin-bottom: 1rem;
}
.conocenos-content p { font-size: .9rem; line-height: 1.85; color: var(--text2); font-weight: 300; margin-bottom: 1.2rem; }
.acad-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.acad-list li { display: flex; gap: .7rem; font-size: .88rem; color: var(--text2); font-weight: 300; }
.acad-list li span { color: var(--gold); font-weight: 600; flex-shrink: 0; }
.timeline {
  margin-top: 2.5rem; border-left: 2px solid var(--border);
  padding-left: 2rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.6rem; top: 4px;
  width: 10px; height: 10px; background: var(--gold);
  border-radius: 50%; border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.timeline-role { font-size: .9rem; font-weight: 500; color: var(--navy); margin-bottom: .2rem; }
.timeline-place { font-size: .82rem; color: var(--text2); font-weight: 300; }

/* ── SERVICIOS ── */
#servicios { background: var(--light); }
.servicios-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem; align-items: end;
}
.planes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.plan-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem 2rem; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,29,53,.1); }
.plan-card.featured {
  background: var(--navy); border-color: var(--gold);
  transform: translateY(-8px); box-shadow: 0 24px 60px rgba(11,29,53,.2);
}
.plan-card.featured:hover { transform: translateY(-14px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.plan-card.featured .plan-name { color: var(--gold2); }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600; line-height: 1;
  color: var(--navy); margin-bottom: .25rem;
}
.plan-card.featured .plan-price { color: var(--white); }
.plan-price .currency { font-size: 1rem; font-family: 'Outfit', sans-serif; font-weight: 400; }
.plan-ref { font-size: .72rem; color: var(--text2); margin-bottom: 1.5rem; font-weight: 300; }
.plan-card.featured .plan-ref { color: rgba(255,255,255,.45); }
.plan-desc {
  font-size: .85rem; line-height: 1.7; color: var(--text2);
  font-weight: 300; margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.plan-card.featured .plan-desc { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.1); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--text2); line-height: 1.5; }
.plan-card.featured .plan-features li { color: rgba(255,255,255,.7); }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.plan-cta {
  display: block; text-align: center; padding: 11px;
  border-radius: 4px; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: .2s; cursor: pointer;
}
.plan-cta-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.plan-cta-outline:hover { background: var(--navy); color: var(--white); }
.plan-cta-gold { background: var(--gold); color: var(--navy); border: 1.5px solid var(--gold); }
.plan-cta-gold:hover { background: var(--gold2); }

/* ── PROCESO ── */
#proceso { background: var(--white); }
.proceso-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; margin-top: 4rem; position: relative;
}
.proceso-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, var(--border), var(--gold), var(--border));
}
.step { text-align: center; position: relative; padding-top: 1rem; }
.step-circle {
  width: 72px; height: 72px; background: var(--navy);
  border: 2px solid var(--gold); border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: transform .3s;
}
.step:hover .step-circle { transform: scale(1.1); }
.step-icon { font-size: 1.5rem; }
.step h4 { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.step p  { font-size: .8rem; line-height: 1.7; color: var(--text2); font-weight: 300; }
.confidencial-band {
  background: var(--navy); border-radius: 8px;
  padding: 2.5rem 3rem;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: center; margin-top: 4rem;
}
.conf-icon { font-size: 2.5rem; }
.confidencial-band h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: .3rem;
}
.confidencial-band p { font-size: .85rem; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.6; }

/* ── CONTACTO ── */
#contacto { background: var(--navy); }
#contacto .section-title { color: var(--white); }
#contacto .section-lead   { color: rgba(255,255,255,.55); }
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; margin-top: 4rem; align-items: start;
}
.contacto-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 2rem;
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(184,152,90,.15); border: 1px solid rgba(184,152,90,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact-value { font-size: .9rem; color: rgba(255,255,255,.8); }
.contact-value a { color: rgba(255,255,255,.8); text-decoration: none; }
.contact-value a:hover { color: var(--gold2); }
.docs-note {
  margin-top: 2rem; padding: 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,152,90,.15); border-radius: 6px;
}
.docs-note strong { color: var(--gold); display: block; margin-bottom: .4rem; font-size: .8rem; }
.docs-note p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* FORM */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,152,90,.2);
  border-radius: 8px; padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
input, select, textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px; padding: 10px 14px;
  font-family: 'Outfit', sans-serif; font-size: .88rem;
  color: var(--white); outline: none; transition: border-color .2s; width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
select option { background: var(--navy2); color: var(--white); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .75rem; color: rgba(255,255,255,.35); margin: .5rem 0 1.5rem; line-height: 1.6; }

/* Mensajes de estado del formulario */
.form-msg {
  display: none; padding: 12px 16px; border-radius: 4px;
  font-size: .85rem; margin-bottom: 1rem; text-align: center;
}
.form-msg.success { background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.3); color: #7fffb0; display: block; }
.form-msg.error   { background: rgba(255,80,80,.15);  border: 1px solid rgba(255,80,80,.3);  color: #ffaaaa; display: block; }

.btn-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; border-radius: 4px; padding: 13px;
  font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .2s;
}
.btn-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── FOOTER ── */
footer {
  background: #070f1c; padding: 3rem 8%;
  border-top: 1px solid rgba(184,152,90,.15);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; align-items: start;
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); }
.footer-brand span { color: var(--gold); }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: .3rem; }
.footer-center { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.footer-nav a { font-size: .75rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--gold2); }
.footer-social { display: flex; gap: .75rem; }
.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: .2s; text-decoration: none;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-right { text-align: right; }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.25); line-height: 1.6; margin-bottom: .75rem; }
.footer-contact { font-size: .78rem; }
.footer-contact a { color: rgba(255,255,255,.4); text-decoration: none; line-height: 1.8; display: block; }
.footer-contact a:hover { color: var(--gold2); }

/* ── WHATSAPP FLOTANTE ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; transition: transform .3s, box-shadow .3s;
  animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; }
.wa-tooltip {
  position: absolute; right: 68px;
  background: var(--navy); color: var(--white);
  font-size: .78rem; font-weight: 500; padding: 6px 14px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
  border: 1px solid rgba(184,152,90,.2);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.08); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .planes-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
}
@media (max-width: 900px) {
  #inicio { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 5rem 6% 4rem; }
  .hero-stats { gap: 2rem; }
  .porque-grid,
  .conocenos-grid,
  .servicios-intro,
  .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-card { position: static; }
  .proceso-steps { grid-template-columns: 1fr 1fr; }
  .proceso-steps::before { display: none; }
  .confidencial-band { grid-template-columns: 1fr; text-align: center; }
  .conf-icon { display: none; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy2); padding: 1.5rem 5%; gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 60px 6%; }
}
@media (max-width: 560px) {
  .proceso-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .footer-center { align-items: flex-start; }
}
