/* ══════════════════════════════════════════
   VISASERVICERD — ESTILOS EJECUTIVOS
   Paleta: Azul Marino · Oro · Blanco Perla
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
    --navy:      #0C1F3F;
    --navy-mid:  #163160;
    --royal:     #1A5EAE;
    --sky:       #3B9ED0;
    --gold:      #C9A854;
    --gold-light:#E2C47A;
    --gold-dark: #A07C30;
    --white:     #FFFFFF;
    --pearl:     #F4F7FC;
    --border:    #D8E2F0;
    --text-dark: #0D1B35;
    --text-mid:  #3A4F6B;
    --text-light:#7A91B0;
    --success:   #1E8A5A;
    --error:     #C0392B;
    --warning:   #D4880A;
    --radius:    12px;
    --shadow-sm: 0 2px 8px rgba(12,31,63,.08);
    --shadow-md: 0 6px 24px rgba(12,31,63,.12);
    --shadow-lg: 0 12px 48px rgba(12,31,63,.18);
    --trans:     all .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
    font-family:'Inter', system-ui, sans-serif;
    line-height:1.6;
    color:var(--text-dark);
    background:var(--pearl);
    overflow-x:hidden;
}

/* ── CANVAS PARTÍCULAS ── */
#particleCanvas {
    position:fixed;
    top:0; left:0;
    pointer-events:none;
    z-index:0;
}

/* ── SCROLL REVEAL ── */
.reveal, .reveal-up {
    opacity:0;
    transform:translateY(32px);
    transition:opacity .7s ease, transform .7s ease;
}
.reveal-up { transition-delay:calc(var(--delay, 0s)); }
.reveal.revealed, .reveal-up.revealed { opacity:1; transform:none; }

/* ── LAYOUT ── */
.full-page { min-height:100vh; display:flex; flex-direction:column; }
.container  { max-width:1200px; margin:0 auto; background:var(--white); width:100%; }
.main-content { flex:1; }

.gold { color:var(--gold); }

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
    position:relative;
    background:linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--royal) 100%);
    color:var(--white);
    padding:7rem 2rem 5rem;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    z-index:1;
}

.hero-inner {
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:3rem;
    max-width:1200px;
    width:100%;
    margin:0 auto;
}

.hero-bg-shapes { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.shape {
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle, rgba(201,168,84,.15), transparent 70%);
}
.shape-1 { width:600px; height:600px; top:-200px; right:-150px; animation:float1 8s ease-in-out infinite; }
.shape-2 { width:400px; height:400px; bottom:-100px; left:-100px; animation:float2 10s ease-in-out infinite; }
.shape-3 { width:300px; height:300px; top:50%; left:50%; transform:translate(-50%,-50%); animation:float3 6s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-30px) rotate(10deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.15)} }

.hero-content { flex:1; text-align:left; max-width:600px; }

.hero-photo {
    flex-shrink:0;
    width:280px;
    height:360px;
}
.hero-photo img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    border-radius:16px;
    border:3px solid var(--gold);
    box-shadow:0 12px 40px rgba(0,0,0,.4);
}

.hero-contact-box {
    margin-top:1.5rem;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(201,168,84,.35);
    border-radius:14px;
    padding:1.2rem 1.5rem;
    backdrop-filter:blur(8px);
    display:inline-flex;
    flex-direction:column;
    gap:.65rem;
    min-width:260px;
}
.contact-box-title {
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.15em;
    color:var(--gold);
    text-transform:uppercase;
    margin-bottom:.2rem;
}
.contact-item {
    display:flex;
    align-items:center;
    gap:.65rem;
    color:rgba(255,255,255,.9);
    text-decoration:none;
    font-size:.9rem;
    font-weight:500;
    transition:var(--trans);
}
.contact-item:hover { color:var(--gold); transform:translateX(3px); }
.contact-icon {
    width:20px;
    height:20px;
    flex-shrink:0;
    color:rgba(255,255,255,.7);
    transition:var(--trans);
}
.contact-item:hover .contact-icon { color:var(--gold); }
.whatsapp-icon { color:#25D366 !important; }
.contact-item:hover .whatsapp-icon { color:#1ebe5c !important; }
.instagram-icon { color:#E1306C !important; }
.contact-item:hover .instagram-icon { color:#c0134f !important; }
.email-icon { color:var(--sky) !important; }
.contact-item:hover .email-icon { color:var(--gold) !important; }

.hero-badge {
    display:inline-block;
    border:1px solid var(--gold);
    color:var(--gold);
    padding:.4rem 1.2rem;
    border-radius:50px;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:.15em;
    margin-bottom:1.5rem;
    background:rgba(201,168,84,.08);
    backdrop-filter:blur(4px);
}

.hero-title {
    font-family:'Playfair Display', serif;
    font-size:clamp(2.5rem, 6vw, 4.5rem);
    font-weight:700;
    line-height:1.1;
    margin-bottom:.75rem;
    text-shadow:0 2px 20px rgba(0,0,0,.3);
}

.hero-subtitle {
    font-size:clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight:300;
    opacity:.9;
    margin-bottom:1rem;
    letter-spacing:.05em;
}

.hero-description {
    font-size:1.05rem;
    opacity:.8;
    max-width:580px;
    margin:0 0 2rem;
    line-height:1.7;
}

.hero-actions { display:flex; gap:1rem; justify-content:flex-start; flex-wrap:wrap; margin-bottom:1.5rem; }

.cta-button {
    display:inline-block;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    padding:.95rem 2.4rem;
    border-radius:50px;
    font-weight:700;
    font-size:1rem;
    text-decoration:none;
    transition:var(--trans);
    box-shadow:0 4px 20px rgba(201,168,84,.4);
    letter-spacing:.02em;
}
.cta-button:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(201,168,84,.6); }

.cta-outline {
    display:inline-block;
    border:2px solid rgba(255,255,255,.5);
    color:var(--white);
    padding:.95rem 2.4rem;
    border-radius:50px;
    font-weight:600;
    font-size:1rem;
    text-decoration:none;
    transition:var(--trans);
    backdrop-filter:blur(4px);
}
.cta-outline:hover { border-color:var(--white); background:rgba(255,255,255,.1); transform:translateY(-2px); }

.hero-stats { display:flex; justify-content:center; align-items:center; gap:0; flex-wrap:wrap; }
.hero-stat { text-align:center; padding:.75rem 2rem; }
.hero-stat span:first-child { font-family:'Playfair Display', serif; font-size:2.2rem; font-weight:700; color:var(--gold); display:block; }
.hero-stat span:last-of-type { color:var(--gold); font-weight:700; }
.hero-stat small { display:block; font-size:.78rem; opacity:.7; letter-spacing:.05em; margin-top:.2rem; }
.hero-stat-divider { width:1px; height:50px; background:rgba(255,255,255,.2); }

/* ══════════════════════
   SECTION HEADER
══════════════════════ */
.section-header { text-align:center; margin-bottom:3rem; padding:0 1rem; }
.section-tag {
    display:inline-block;
    color:var(--gold);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.18em;
    margin-bottom:.75rem;
    padding:.3rem 1rem;
    border:1px solid var(--gold-light);
    border-radius:50px;
    background:rgba(201,168,84,.06);
}
.section-header h2 {
    font-family:'Playfair Display', serif;
    font-size:clamp(1.8rem, 4vw, 2.8rem);
    color:var(--navy);
    margin-bottom:.5rem;
    font-weight:700;
}
.section-header p { color:var(--text-light); font-size:1.05rem; }

/* ══════════════════════
   SERVICIOS
══════════════════════ */
.servicios-section { padding:5rem 2rem; background:var(--pearl); }
.servicios-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:1.5rem;
    max-width:1200px;
    margin:0 auto;
}
.servicio-card {
    background:var(--white);
    padding:2rem 1.75rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    text-align:center;
    transition:var(--trans);
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
    transition-delay:var(--delay, 0s);
}
.servicio-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--gold-light); }
.servicio-card::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:3px;
    background:linear-gradient(90deg, var(--gold), var(--sky));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .4s ease;
}
.servicio-card:hover::before { transform:scaleX(1); }
.servicio-icon-wrap { margin-bottom:1.25rem; }
.servicio-icon { font-size:2.5rem; display:inline-block; filter:drop-shadow(0 4px 8px rgba(0,0,0,.1)); }
.servicio-card h3 { color:var(--navy); font-weight:600; margin-bottom:.5rem; font-size:1.05rem; }
.servicio-card p { color:var(--text-mid); font-size:.92rem; line-height:1.6; }
.card-hover-bar { display:none; }

/* ══════════════════════
   PAÍSES
══════════════════════ */
.paises-section { padding:5rem 2rem; background:var(--white); }
.paises-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:1.5rem;
    max-width:900px;
    margin:0 auto;
}
.pais-card {
    background:linear-gradient(135deg, rgba(26,94,174,.04), rgba(59,158,208,.04));
    padding:2rem;
    border-radius:var(--radius);
    border:1px solid var(--border);
    transition:var(--trans);
}
.pais-card:hover { border-color:var(--sky); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.pais-card h3 { color:var(--navy); margin-bottom:1.25rem; font-size:1.15rem; font-weight:600; }
.pais-card ul { list-style:none; }
.pais-card li {
    padding:.5rem 0;
    color:var(--text-mid);
    border-bottom:1px solid rgba(0,0,0,.05);
    font-size:.95rem;
}
.pais-card li::before { content:'→ '; color:var(--gold); font-weight:700; }
.pais-card li:last-child { border-bottom:none; }

/* ══════════════════════
   PROCESO
══════════════════════ */
.proceso-section { padding:5rem 2rem; background:var(--pearl); }
.proceso-steps {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0;
    flex-wrap:wrap;
    max-width:900px;
    margin:0 auto;
}
.step {
    background:var(--white);
    padding:2.5rem 2rem;
    border-radius:var(--radius);
    text-align:center;
    flex:1;
    min-width:220px;
    max-width:300px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border);
    transition:var(--trans);
}
.step:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--gold-light); }
.step-number {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:56px; height:56px;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    border-radius:50%;
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:1rem;
    box-shadow:0 4px 16px rgba(201,168,84,.35);
    font-family:'Playfair Display', serif;
}
.step h3 { color:var(--navy); margin-bottom:.5rem; font-weight:600; }
.step p { color:var(--text-mid); font-size:.92rem; }
.step-connector { display:flex; align-items:center; padding:0 1rem; }
.connector-line {
    width:60px; height:2px;
    background:linear-gradient(90deg, var(--gold), var(--sky));
    position:relative;
}
.connector-line::after {
    content:'›';
    position:absolute;
    right:-8px;
    top:-12px;
    color:var(--gold);
    font-size:1.5rem;
    font-weight:700;
}

/* ══════════════════════
   WHY — EXECUTIVE CARDS
══════════════════════ */
.why-section {
    padding:5rem 2rem;
    background:linear-gradient(160deg, #0A1929 0%, #0C1F3F 50%, #0F2847 100%);
    position:relative;
    overflow:hidden;
}
.why-section::before {
    content:'';
    position:absolute;
    top:-200px; right:-200px;
    width:600px; height:600px;
    background:radial-gradient(circle, rgba(201,168,84,.07), transparent 70%);
    pointer-events:none;
}
.why-section .section-header h2 { color:var(--white); }
.why-section .section-header p  { color:rgba(255,255,255,.55); }
.why-section .section-tag { color:var(--gold); border-color:rgba(201,168,84,.35); }

.why-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1.5rem;
    max-width:1100px;
    margin:0 auto;
    position:relative;
    z-index:1;
}

.why-card {
    position:relative;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:2.25rem 2rem;
    overflow:hidden;
    transition:var(--trans);
    cursor:default;
}
.why-card::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity:0;
    transition:opacity .4s ease;
}
.why-card:hover {
    background:rgba(255,255,255,.07);
    border-color:rgba(201,168,84,.3);
    transform:translateY(-6px);
    box-shadow:0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,84,.15);
}
.why-card:hover::before { opacity:1; }

/* Carta destacada (gold) */
.why-card--gold {
    background:linear-gradient(135deg, rgba(201,168,84,.12), rgba(201,168,84,.06));
    border-color:rgba(201,168,84,.3);
}
.why-card--gold::before { opacity:.6; }
.why-card--gold:hover { background:linear-gradient(135deg, rgba(201,168,84,.18), rgba(201,168,84,.1)); box-shadow:0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,84,.3); }

/* Número de fondo (decorativo) */
.why-card-bg-num {
    position:absolute;
    bottom:-20px; right:-10px;
    font-family:'Playfair Display', serif;
    font-size:7rem;
    font-weight:700;
    color:rgba(255,255,255,.03);
    line-height:1;
    pointer-events:none;
    user-select:none;
    transition:var(--trans);
}
.why-card:hover .why-card-bg-num { color:rgba(201,168,84,.06); }

/* Ícono circular */
.why-icon-circle {
    width:52px; height:52px;
    background:linear-gradient(135deg, rgba(201,168,84,.2), rgba(201,168,84,.08));
    border:1px solid rgba(201,168,84,.35);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:1.25rem;
    transition:var(--trans);
}
.why-icon-circle svg {
    width:22px; height:22px;
    stroke:var(--gold-light);
}
.why-card:hover .why-icon-circle {
    background:linear-gradient(135deg, rgba(201,168,84,.3), rgba(201,168,84,.15));
    border-color:var(--gold);
    box-shadow:0 4px 16px rgba(201,168,84,.25);
}

/* Número badge */
.why-num-badge {
    font-family:'Playfair Display', serif;
    font-size:.78rem;
    font-weight:700;
    color:var(--gold);
    letter-spacing:.12em;
    margin-bottom:.6rem;
    opacity:.8;
}

/* Título */
.why-card h3 {
    font-family:'Playfair Display', serif;
    color:var(--white);
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:.75rem;
    letter-spacing:.01em;
}

/* Línea divisora */
.why-divider {
    width:32px; height:2px;
    background:linear-gradient(90deg, var(--gold), transparent);
    margin-bottom:.85rem;
    border-radius:2px;
    transition:width .4s ease;
}
.why-card:hover .why-divider { width:56px; }

/* Descripción */
.why-card p {
    color:rgba(255,255,255,.55);
    font-size:.88rem;
    line-height:1.7;
    font-weight:400;
}

/* Responsive why-grid */
@media (max-width:900px) {
    .why-grid { grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px) {
    .why-grid { grid-template-columns:1fr; }
    .why-card-bg-num { font-size:5rem; }
}

/* ══════════════════════
   FORMULARIO WIZARD
══════════════════════ */
.booking-section { padding:5rem 2rem; background:var(--navy); }
.booking-header { margin-bottom:2.5rem; }
.booking-header .section-tag { color:var(--gold); border-color:var(--gold); }
.booking-header h2 { color:var(--white); }
.booking-header p { color:rgba(255,255,255,.65); }

.wizard-container {
    max-width:820px;
    margin:0 auto;
    background:var(--white);
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    overflow:hidden;
}

/* Step Indicators */
.step-indicators {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:2rem 2rem 0;
    gap:0;
}
.step-ind {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.4rem;
    cursor:default;
    position:relative;
}
.step-ind-circle {
    width:42px; height:42px;
    border-radius:50%;
    border:2px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:.9rem;
    color:var(--text-light);
    background:var(--white);
    transition:var(--trans);
}
.step-ind.active .step-ind-circle {
    border-color:var(--gold);
    background:var(--gold);
    color:var(--navy);
    box-shadow:0 4px 16px rgba(201,168,84,.4);
    transform:scale(1.1);
}
.step-ind.done .step-ind-circle {
    border-color:var(--success);
    background:var(--success);
    color:var(--white);
}
.step-ind.done .step-ind-circle span::before { content:'✓'; }
.step-ind.done .step-ind-circle span { font-size:0; }
.step-ind.done .step-ind-circle::before { content:'✓'; font-size:.9rem; }
.step-ind-label {
    font-size:.72rem;
    font-weight:600;
    color:var(--text-light);
    letter-spacing:.05em;
    text-transform:uppercase;
    white-space:nowrap;
}
.step-ind.active .step-ind-label { color:var(--gold); }
.step-ind.done .step-ind-label { color:var(--success); }
.step-ind-line {
    flex:1;
    height:2px;
    background:var(--border);
    min-width:40px;
    max-width:80px;
    margin-bottom:18px;
    transition:var(--trans);
}

/* Progress */
.progress-track {
    height:4px;
    background:var(--border);
    margin:1.5rem 2rem .5rem;
    border-radius:2px;
    overflow:hidden;
}
.progress-fill {
    height:100%;
    background:linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius:2px;
    transition:width .5s cubic-bezier(.4,0,.2,1);
}
.progress-label {
    text-align:center;
    font-size:.8rem;
    color:var(--text-light);
    margin-bottom:2rem;
    font-weight:500;
    letter-spacing:.02em;
}

/* Form Steps */
.form-step {
    display:none;
    padding:0 2.5rem 1.5rem;
    animation:stepIn .35s ease;
}
.form-step.active { display:block; }
.form-step.slide-out-left  { animation:slideOutLeft .25s ease forwards; }
.form-step.slide-out-right { animation:slideOutRight .25s ease forwards; }
.form-step.slide-in-right  { animation:slideInRight .35s ease; }
.form-step.slide-in-left   { animation:slideInLeft .35s ease; }

@keyframes stepIn       { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
@keyframes slideOutLeft { to{opacity:0;transform:translateX(-30px)} }
@keyframes slideOutRight{ to{opacity:0;transform:translateX(30px)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:none} }
@keyframes slideInLeft  { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:none} }
@keyframes shake        { 0%,100%{transform:none} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }

.step-title {
    display:flex;
    align-items:center;
    gap:.75rem;
    font-family:'Playfair Display', serif;
    font-size:1.4rem;
    color:var(--navy);
    font-weight:700;
    margin-bottom:1.25rem;
    padding-bottom:1rem;
    border-bottom:2px solid var(--pearl);
}
.step-num-badge {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px; height:36px;
    background:linear-gradient(135deg, var(--navy), var(--royal));
    color:var(--gold);
    border-radius:8px;
    font-size:.9rem;
    font-weight:700;
    font-family:'Inter', sans-serif;
    flex-shrink:0;
}

.step-desc { color:var(--text-light); font-size:.9rem; margin-bottom:1.5rem; line-height:1.6; }

/* Fields */
.fields-grid { display:grid; gap:1rem; margin-bottom:1rem; }
.two-col { grid-template-columns:1fr 1fr; }

.field-group { position:relative; }
.field-icon {
    position:absolute;
    top:38px; left:12px;
    font-size:1rem;
    pointer-events:none;
    z-index:1;
}

.field-group label, .q-label {
    display:block;
    font-size:.85rem;
    font-weight:600;
    color:var(--text-dark);
    margin-bottom:.4rem;
    letter-spacing:.01em;
}
.req { color:var(--gold); }

.field-group input,
.field-group select,
.field-group textarea,
.q-body input,
.q-body select,
.q-body textarea {
    width:100%;
    padding:.8rem 1rem .8rem 2.5rem;
    border:1.5px solid var(--border);
    border-radius:10px;
    font-size:.95rem;
    font-family:'Inter', sans-serif;
    color:var(--text-dark);
    background:var(--white);
    transition:var(--trans);
    -webkit-appearance:none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus,
.q-body input:focus,
.q-body select:focus,
.q-body textarea:focus {
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(201,168,84,.15);
}
.field-group.field-error input,
.field-group.field-error select { border-color:var(--error); }

input.field-error, select.field-error { border-color:var(--error) !important; box-shadow:0 0 0 3px rgba(192,57,43,.15) !important; }

/* Select arrow */
.field-group select, .q-body select {
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A854' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 1rem center;
    padding-right:2.5rem;
    cursor:pointer;
}

/* Inputs without left icon */
.q-body input, .q-body select, .q-body textarea { padding-left:1rem; }

/* ── QUESTION CARDS ── */
.question-card {
    display:flex;
    gap:1.25rem;
    background:var(--pearl);
    border:1.5px solid var(--border);
    border-radius:14px;
    padding:1.5rem;
    margin-bottom:1.25rem;
    transition:var(--trans);
}
.question-card:hover { border-color:var(--gold-light); box-shadow:var(--shadow-sm); }
.q-number {
    font-family:'Playfair Display', serif;
    font-size:1.8rem;
    font-weight:700;
    color:var(--gold-light);
    line-height:1;
    flex-shrink:0;
    width:40px;
    margin-top:.1rem;
}
.q-body { flex:1; }
.q-hint { font-size:.8rem; color:var(--text-light); margin-bottom:.75rem; margin-top:-.2rem; }

/* ── RADIO CARDS ── */
.radio-cards { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:.75rem; }
.radio-card {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.35rem;
    padding:.75rem 1.1rem;
    border:1.5px solid var(--border);
    border-radius:10px;
    cursor:pointer;
    transition:var(--trans);
    background:var(--white);
    min-width:90px;
    text-align:center;
}
.radio-card input { display:none; }
.rc-icon { font-size:1.3rem; }
.rc-text { font-size:.8rem; font-weight:600; color:var(--text-mid); }
.radio-card:hover { border-color:var(--gold-light); background:rgba(201,168,84,.05); }
.radio-card.selected {
    border-color:var(--gold);
    background:rgba(201,168,84,.1);
    box-shadow:0 0 0 2px rgba(201,168,84,.25);
}
.radio-card.selected .rc-text { color:var(--gold-dark); }

/* ── YES/NO TOGGLE ── */
.yn-toggle { display:flex; gap:.75rem; margin-top:.65rem; margin-bottom:.85rem; }
.yn-option {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:.6rem 2rem;
    border:1.5px solid var(--border);
    border-radius:8px;
    cursor:pointer;
    transition:var(--trans);
    font-weight:600;
    font-size:.95rem;
    background:var(--white);
    color:var(--text-mid);
    min-width:90px;
}
.yn-option input { display:none; }
.yn-option:hover { border-color:var(--gold-light); }
.yn-option.selected.yes { border-color:var(--success); background:rgba(30,138,90,.08); color:var(--success); }
.yn-option.selected.no  { border-color:var(--royal); background:rgba(26,94,174,.08); color:var(--royal); }
.group-error .yn-option { border-color:var(--error); }
.group-error .radio-card { border-color:var(--error); }

/* ── CONDITIONAL FIELDS ── */
.conditional-field {
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .4s ease, opacity .4s ease, margin .4s ease;
    margin-top:0;
}
.conditional-field.visible {
    max-height:200px;
    opacity:1;
    margin-top:.75rem;
}
.conditional-field label {
    font-size:.82rem;
    font-weight:600;
    color:var(--text-mid);
    display:block;
    margin-bottom:.4rem;
}
.conditional-field input, .conditional-field textarea {
    width:100%;
    padding:.7rem 1rem;
    border:1.5px solid var(--border);
    border-radius:8px;
    font-size:.9rem;
    font-family:'Inter', sans-serif;
    transition:var(--trans);
    background:var(--white);
}
.conditional-field input:focus, .conditional-field textarea:focus {
    outline:none;
    border-color:var(--royal);
    box-shadow:0 0 0 3px rgba(26,94,174,.12);
}

/* ── CHECKBOX CARDS ── */
.checkbox-cards { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:.75rem; }
.check-card {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.35rem;
    padding:.75rem 1.1rem;
    border:1.5px solid var(--border);
    border-radius:10px;
    cursor:pointer;
    transition:var(--trans);
    background:var(--white);
    min-width:90px;
    text-align:center;
    font-size:.8rem;
    font-weight:600;
    color:var(--text-mid);
}
.check-card input { display:none; }
.cc-icon { font-size:1.3rem; }
.check-card:hover { border-color:var(--gold-light); }
.check-card.selected { border-color:var(--gold); background:rgba(201,168,84,.1); color:var(--gold-dark); box-shadow:0 0 0 2px rgba(201,168,84,.25); }

/* ── NAVIGATION ── */
.wizard-nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:1.5rem 2.5rem;
    border-top:2px solid var(--pearl);
    background:var(--pearl);
    gap:1rem;
}
.step-counter { font-size:.82rem; color:var(--text-light); font-weight:500; flex:1; text-align:center; }

.btn-prev, .btn-next, .btn-submit-wizard {
    display:flex;
    align-items:center;
    gap:.5rem;
    padding:.75rem 1.75rem;
    border-radius:8px;
    font-weight:600;
    font-size:.9rem;
    cursor:pointer;
    border:none;
    transition:var(--trans);
    font-family:'Inter', sans-serif;
}
.btn-prev {
    background:var(--white);
    color:var(--text-mid);
    border:1.5px solid var(--border);
}
.btn-prev:hover { border-color:var(--navy); color:var(--navy); }
.btn-next {
    background:linear-gradient(135deg, var(--navy), var(--royal));
    color:var(--white);
    box-shadow:0 4px 16px rgba(12,31,63,.25);
}
.btn-next:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(12,31,63,.35); }
.btn-submit-wizard {
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    font-weight:700;
    box-shadow:0 4px 16px rgba(201,168,84,.4);
}
.btn-submit-wizard:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(201,168,84,.6); }

.form-privacy {
    text-align:center;
    font-size:.8rem;
    color:var(--text-light);
    padding:.75rem 2rem 1.5rem;
}

/* ── ALERTS ── */
.alert {
    display:flex;
    align-items:center;
    gap:.75rem;
    padding:1rem 1.5rem;
    border-radius:10px;
    margin:1.5rem 2rem;
    font-weight:500;
    font-size:.95rem;
    animation:stepIn .4s ease;
}
.alert-icon { font-weight:700; font-size:1.1rem; }
.alert-success { background:#D4EDDA; color:#145A32; border-left:4px solid var(--success); }
.alert-error   { background:#FDEDEC; color:#922B21; border-left:4px solid var(--error); }

/* ══════════════════════
   TESTIMONIOS
══════════════════════ */
.testimonios-section { padding:5rem 2rem; background:var(--pearl); }
.testimonios-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:1.5rem;
    max-width:1200px;
    margin:0 auto;
}
.testimonio-card {
    background:var(--white);
    padding:2rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border);
    position:relative;
    transition:var(--trans);
}
.testimonio-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--gold-light); }
.testimonio-card::before {
    content:'"';
    position:absolute;
    top:1rem; left:1.5rem;
    font-size:4rem;
    color:var(--gold-light);
    font-family:'Playfair Display', serif;
    line-height:1;
    opacity:.4;
}
.testimonio-stars { color:var(--gold); font-size:1.1rem; margin-bottom:1rem; letter-spacing:.1em; }
.testimonio-card p { color:var(--text-mid); font-style:italic; margin-bottom:1.5rem; line-height:1.7; font-size:.95rem; }
.testimonio-autor { display:flex; flex-direction:column; gap:.2rem; }
.testimonio-autor strong { color:var(--navy); font-weight:600; }
.testimonio-autor span { font-size:.82rem; color:var(--text-light); }

/* ══════════════════════
   FAQ
══════════════════════ */
.faq-section { padding:5rem 2rem; background:var(--white); }
.faq-container { max-width:760px; margin:0 auto; }
.faq-item {
    background:var(--white);
    margin-bottom:.75rem;
    border-radius:10px;
    border:1.5px solid var(--border);
    overflow:hidden;
    transition:var(--trans);
}
.faq-item:hover { border-color:var(--gold-light); }
.faq-item[open] { border-color:var(--gold); box-shadow:var(--shadow-sm); }
.faq-item summary {
    padding:1.25rem 1.5rem;
    cursor:pointer;
    font-weight:600;
    color:var(--navy);
    display:flex;
    justify-content:space-between;
    align-items:center;
    list-style:none;
    transition:var(--trans);
    font-size:.95rem;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; color:var(--gold); font-size:1.4rem; font-weight:300; flex-shrink:0; transition:var(--trans); }
.faq-item[open] summary::after { content:'−'; }
.faq-item[open] summary { color:var(--gold-dark); background:rgba(201,168,84,.04); }
.faq-item p { padding:1rem 1.5rem 1.25rem; color:var(--text-mid); font-size:.92rem; line-height:1.7; }

/* ══════════════════════
   CTA FINAL
══════════════════════ */
.cta-final {
    padding:5rem 2rem;
    background:linear-gradient(135deg, var(--navy), var(--navy-mid));
    text-align:center;
    position:relative;
    overflow:hidden;
}
.cta-final::before {
    content:'';
    position:absolute;
    top:-100px; left:50%;
    transform:translateX(-50%);
    width:600px; height:400px;
    background:radial-gradient(ellipse, rgba(201,168,84,.12), transparent 70%);
    pointer-events:none;
}
.cta-content { position:relative; z-index:1; }
.cta-final h2 { font-family:'Playfair Display', serif; font-size:2.5rem; color:var(--white); margin-bottom:.75rem; }
.cta-final p { color:rgba(255,255,255,.7); font-size:1.05rem; margin-bottom:2.5rem; }
.cta-button-large {
    display:inline-block;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    padding:1.1rem 3rem;
    border-radius:50px;
    font-weight:700;
    font-size:1.05rem;
    text-decoration:none;
    transition:var(--trans);
    box-shadow:0 4px 24px rgba(201,168,84,.45);
    letter-spacing:.03em;
}
.cta-button-large:hover { transform:translateY(-3px); box-shadow:0 8px 36px rgba(201,168,84,.65); }

/* ══════════════════════
   FOOTER
══════════════════════ */
.footer {
    background:var(--text-dark);
    color:rgba(255,255,255,.75);
    padding:3.5rem 2rem 0;
}
.footer-content {
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:2rem;
    margin-bottom:2.5rem;
}
.footer-section h4 { color:var(--white); margin-bottom:1.25rem; font-weight:600; font-size:1rem; }
.footer-section p { margin:.4rem 0; font-size:.9rem; line-height:1.6; }
.footer-section ul { list-style:none; }
.footer-section li { margin:.4rem 0; }
.footer-section a { color:var(--gold-light); text-decoration:none; font-size:.9rem; transition:color .2s; }
.footer-section a:hover { color:var(--white); }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:1.25rem 0;
    text-align:center;
    font-size:.82rem;
    opacity:.55;
}
.footer-bottom a { color:var(--gold-light); text-decoration:none; }

/* ══════════════════════
   ADMIN STYLES
══════════════════════ */
.admin-container { min-height:100vh; display:flex; flex-direction:column; background:var(--pearl); }
.admin-header {
    background:linear-gradient(135deg, var(--navy), var(--royal));
    color:var(--white);
    padding:1.5rem 2rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:var(--shadow-md);
}
.header-content h1 { font-size:1.6rem; font-family:'Playfair Display', serif; }
.header-content p { opacity:.75; font-size:.9rem; margin-top:.2rem; }
.header-user { display:flex; align-items:center; gap:1rem; font-size:.9rem; }
.btn-logout {
    background:rgba(255,255,255,.15);
    color:var(--white);
    padding:.5rem 1rem;
    border:1px solid rgba(255,255,255,.4);
    border-radius:6px;
    cursor:pointer;
    text-decoration:none;
    font-size:.85rem;
    transition:var(--trans);
}
.btn-logout:hover { background:rgba(255,255,255,.25); }
.admin-main { flex:1; padding:2rem; max-width:1400px; margin:0 auto; width:100%; }

/* Login */
.login-page { display:flex; justify-content:center; align-items:center; min-height:100vh; background:linear-gradient(140deg, var(--navy), var(--royal)); }
.login-box { background:var(--white); padding:2.5rem; border-radius:16px; box-shadow:var(--shadow-lg); width:100%; max-width:420px; }
.login-box h1 { text-align:center; color:var(--navy); margin-bottom:.5rem; font-family:'Playfair Display', serif; }
.login-box h2 { text-align:center; color:var(--gold); font-size:1.3rem; margin-bottom:2rem; font-weight:400; }
.login-form { margin-bottom:1.5rem; }
.login-hint { text-align:center; font-size:.85rem; color:var(--text-light); padding-top:1rem; border-top:1px solid var(--border); }

/* Stats */
.stats-section { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:1.25rem; margin-bottom:2rem; }
.stat-card {
    background:var(--white);
    padding:1.5rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    border-left:4px solid var(--royal);
    text-align:center;
    transition:var(--trans);
}
.stat-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.stat-card h3 { color:var(--text-light); font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.5rem; }
.stat-number { font-size:2.5rem; font-weight:700; color:var(--royal); font-family:'Playfair Display', serif; margin:0; }
.stat-card.pending { border-left-color:var(--warning); }
.stat-card.pending .stat-number { color:var(--warning); }
.stat-card.confirmed { border-left-color:var(--success); }
.stat-card.confirmed .stat-number { color:var(--success); }
.stat-card.cancelled { border-left-color:var(--error); }
.stat-card.cancelled .stat-number { color:var(--error); }

/* Table */
.citas-section { background:var(--white); padding:2rem; border-radius:var(--radius); box-shadow:var(--shadow-sm); margin-bottom:2rem; }
.citas-section h2 { color:var(--navy); margin-bottom:1.5rem; border-bottom:2px solid var(--gold); padding-bottom:.5rem; font-family:'Playfair Display', serif; }
.no-data { text-align:center; color:var(--text-light); padding:3rem; font-style:italic; }
.table-wrapper { overflow-x:auto; margin-bottom:2rem; border-radius:8px; border:1px solid var(--border); }
.citas-table { width:100%; border-collapse:collapse; background:var(--white); font-size:.88rem; }
.citas-table thead { background:var(--navy); }
.citas-table th { padding:.9rem 1rem; text-align:left; font-weight:600; color:var(--white); font-size:.8rem; letter-spacing:.05em; text-transform:uppercase; }
.citas-table td { padding:.85rem 1rem; border-bottom:1px solid var(--pearl); color:var(--text-mid); vertical-align:top; }
.citas-table tbody tr:hover { background:rgba(201,168,84,.04); }

.status { display:inline-block; padding:.3rem .8rem; border-radius:20px; font-size:.78rem; font-weight:600; letter-spacing:.02em; }
.status-pendiente  { background:#FEF3C7; color:#92400E; }
.status-confirmada { background:#D1FAE5; color:#065F46; }
.status-cancelada  { background:#FEE2E2; color:#991B1B; }

.actions { display:flex; gap:.4rem; flex-wrap:wrap; }
.btn-action {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:30px; height:30px;
    border-radius:6px;
    text-decoration:none;
    font-size:.9rem;
    cursor:pointer;
    transition:var(--trans);
    border:none;
}
.btn-action:hover { transform:scale(1.15); }
.btn-confirm { background:#D1FAE5; color:#065F46; }
.btn-cancel  { background:#FEF3C7; color:#92400E; }
.btn-delete  { background:#FEE2E2; color:#991B1B; }

/* Details / Notes */
.details-section { background:var(--pearl); padding:1.5rem; border-radius:var(--radius); border:1px solid var(--border); }
.details-section h2 { color:var(--navy); margin-bottom:1.5rem; font-size:1.2rem; font-family:'Playfair Display', serif; }
.notes-container { display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 1fr)); gap:1.25rem; }
.note-card {
    background:var(--white);
    padding:1.5rem;
    border-radius:var(--radius);
    border-left:4px solid var(--gold);
    box-shadow:var(--shadow-sm);
}
.note-card h4 { color:var(--navy); margin-bottom:.75rem; font-weight:600; }
.note-card p { margin:.4rem 0; font-size:.88rem; color:var(--text-mid); }
.note-card strong { color:var(--text-dark); }

/* Profile detail in admin */
.profile-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:1rem; margin-top:.75rem; }
.profile-item { background:var(--pearl); border-radius:8px; padding:.75rem 1rem; }
.profile-item .pi-label { font-size:.75rem; font-weight:700; color:var(--text-light); text-transform:uppercase; letter-spacing:.06em; margin-bottom:.25rem; }
.profile-item .pi-value { font-size:.9rem; color:var(--text-dark); font-weight:500; }
.pi-value.no-data-val { color:var(--text-light); font-style:italic; }

.admin-footer { background:var(--text-dark); color:rgba(255,255,255,.5); text-align:center; padding:1.25rem; font-size:.85rem; }

/* Login form inputs */
.login-form .form-group { margin-bottom:1.25rem; }
.login-form label { display:block; font-size:.85rem; font-weight:600; color:var(--text-dark); margin-bottom:.4rem; }
.login-form input {
    width:100%;
    padding:.8rem 1rem;
    border:1.5px solid var(--border);
    border-radius:8px;
    font-size:.95rem;
    font-family:'Inter', sans-serif;
    transition:var(--trans);
}
.login-form input:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,84,.15); }
.btn-submit {
    background:linear-gradient(135deg, var(--navy), var(--royal));
    color:var(--white);
    padding:.9rem 2rem;
    border:none;
    border-radius:8px;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    width:100%;
    transition:var(--trans);
    font-family:'Inter', sans-serif;
}
.btn-submit:hover { transform:translateY(-2px); box-shadow:0 4px 16px rgba(12,31,63,.3); }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width:768px) {
    .hero { padding:4rem 1.5rem 3rem; min-height:auto; }
    .hero-inner { flex-direction:column-reverse; align-items:center; gap:2rem; }
    .hero-content { text-align:center; max-width:100%; }
    .hero-actions { flex-direction:column; align-items:center; justify-content:center; }
    .hero-contact-box { width:100%; }
    .hero-photo { width:200px; height:260px; }
    .hero-stats { gap:0; }
    .hero-stat { padding:.5rem 1.2rem; }
    .hero-stat span:first-child { font-size:1.8rem; }
    .two-col { grid-template-columns:1fr; }
    .step-indicators { flex-wrap:wrap; gap:.5rem; padding:1.5rem 1rem 0; }
    .step-ind-line { display:none; }
    .form-step { padding:0 1.5rem 1rem; }
    .wizard-nav { padding:1.25rem 1.5rem; }
    .step-counter { display:none; }
    .proceso-steps { flex-direction:column; }
    .step-connector { transform:rotate(90deg); }
    .connector-line { width:30px; }
    .admin-header { flex-direction:column; gap:1rem; text-align:center; }
    .stats-section { grid-template-columns:1fr 1fr; }
    .question-card { flex-direction:column; gap:.75rem; }
    .q-number { width:auto; font-size:1.4rem; }
}

@media (max-width:480px) {
    .hero-title { font-size:2.2rem; }
    .hero-stat-divider { display:none; }
    .hero-stats { flex-direction:column; gap:.5rem; }
    .section-header h2 { font-size:1.6rem; }
    .wizard-container { border-radius:12px; }
    .booking-section { padding:3rem 1rem; }
    .step-indicators { gap:.25rem; }
    .step-ind-label { display:none; }
    .radio-cards, .checkbox-cards { gap:.5rem; }
    .radio-card, .check-card { min-width:75px; padding:.65rem .8rem; }
    .stats-section { grid-template-columns:1fr; }
    .citas-table { font-size:.8rem; }
    .citas-table th, .citas-table td { padding:.6rem .5rem; }
}

/* ══════════════════════
   NAV TABS BAR
══════════════════════ */
.nav-tabs-bar {
    position:sticky;
    top:0;
    z-index:100;
    background:var(--navy);
    border-bottom:2px solid rgba(201,168,84,.25);
    box-shadow:0 2px 16px rgba(12,31,63,.35);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 1rem;
}
.nav-tabs {
    display:flex;
    justify-content:center;
    gap:0;
    flex:1;
    overflow-x:auto;
    scrollbar-width:none;
}
.nav-tabs::-webkit-scrollbar { display:none; }
.nav-tab {
    padding:.9rem 1.4rem;
    background:none;
    border:none;
    color:rgba(255,255,255,.55);
    font-family:'Inter',sans-serif;
    font-size:.8rem;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    cursor:pointer;
    transition:var(--trans);
    white-space:nowrap;
    border-bottom:3px solid transparent;
    position:relative;
}
.nav-tab:hover { color:rgba(255,255,255,.9); border-bottom-color:rgba(201,168,84,.4); }
.nav-tab.active { color:var(--gold); border-bottom-color:var(--gold); }

/* Selector de idioma */
.lang-switcher {
    display:flex;
    align-items:center;
    gap:.3rem;
    flex-shrink:0;
    padding:.4rem 0;
}
.lang-btn {
    background:none;
    border:1px solid rgba(255,255,255,.2);
    color:rgba(255,255,255,.5);
    padding:.3rem .7rem;
    border-radius:6px;
    font-size:.75rem;
    font-weight:700;
    cursor:pointer;
    font-family:'Inter',sans-serif;
    transition:var(--trans);
    white-space:nowrap;
    letter-spacing:.03em;
}
.lang-btn:hover { border-color:rgba(201,168,84,.5); color:rgba(255,255,255,.85); }
.lang-btn.active {
    background:rgba(201,168,84,.15);
    border-color:var(--gold);
    color:var(--gold);
}
.lang-divider { color:rgba(255,255,255,.2); font-size:.8rem; }

/* ══════════════════════
   SERVICE CARDS (clickeable)
══════════════════════ */
.servicio-card {
    cursor:pointer;
    position:relative;
    overflow:hidden;
}
.servicio-card::after {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(201,168,84,.08), transparent);
    opacity:0;
    transition:opacity .3s ease;
    border-radius:var(--radius);
}
.servicio-card:hover::after { opacity:1; }
.servicio-card:hover { border-color:var(--gold); }
.card-cta {
    display:inline-block;
    margin-top:1rem;
    font-size:.82rem;
    font-weight:700;
    color:var(--gold);
    letter-spacing:.04em;
    transition:var(--trans);
    opacity:.8;
}
.servicio-card:hover .card-cta { opacity:1; letter-spacing:.08em; }

/* ══════════════════════
   MODAL DE SERVICIO
══════════════════════ */
.service-modal-overlay {
    position:fixed;
    inset:0;
    background:rgba(8,16,32,.75);
    backdrop-filter:blur(8px);
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1.5rem;
    opacity:0;
    pointer-events:none;
    transition:opacity .35s ease;
}
.service-modal-overlay.open {
    opacity:1;
    pointer-events:all;
}
.service-modal {
    background:var(--white);
    border-radius:20px;
    width:100%;
    max-width:860px;
    max-height:88vh;
    overflow-y:auto;
    box-shadow:0 24px 80px rgba(0,0,0,.4);
    transform:translateY(24px) scale(.97);
    transition:transform .35s cubic-bezier(.4,0,.2,1);
    position:relative;
    scrollbar-width:thin;
    scrollbar-color:var(--gold-light) var(--pearl);
}
.service-modal-overlay.open .service-modal {
    transform:none;
}
.service-modal::-webkit-scrollbar { width:5px; }
.service-modal::-webkit-scrollbar-track { background:var(--pearl); }
.service-modal::-webkit-scrollbar-thumb { background:var(--gold-light); border-radius:4px; }

.modal-close {
    position:sticky;
    top:1rem;
    float:right;
    margin:1rem 1rem 0 0;
    width:36px; height:36px;
    border-radius:50%;
    border:none;
    background:var(--pearl);
    color:var(--text-mid);
    font-size:1rem;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--trans);
    z-index:10;
}
.modal-close:hover { background:var(--navy); color:var(--white); }

.modal-header {
    display:flex;
    align-items:flex-start;
    gap:1.5rem;
    padding:2rem 2.5rem 1.5rem;
    border-bottom:2px solid var(--pearl);
    clear:both;
}
.modal-icon {
    font-size:3rem;
    width:70px; height:70px;
    background:linear-gradient(135deg, var(--navy), var(--royal));
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 8px 24px rgba(12,31,63,.25);
}
.modal-title {
    font-family:'Playfair Display',serif;
    font-size:1.7rem;
    color:var(--navy);
    margin-bottom:.4rem;
    font-weight:700;
}
.modal-intro { color:var(--text-mid); font-size:.95rem; line-height:1.65; }

.modal-body {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    padding:0 2.5rem 1.5rem;
}
.modal-col-steps { padding:1.5rem 1.5rem 1rem 0; border-right:1px solid var(--border); }
.modal-col-req   { padding:1.5rem 0 1rem 1.5rem; }

.modal-section-label {
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.1em;
    color:var(--text-light);
    text-transform:uppercase;
    margin-bottom:1rem;
    display:block;
}

/* Pasos del modal */
.modal-step {
    display:flex;
    gap:1rem;
    margin-bottom:1rem;
    opacity:0;
    transform:translateX(-12px);
}
.modal-step.step-animate {
    animation:mstepIn .45s ease forwards;
}
@keyframes mstepIn { to { opacity:1; transform:none; } }

.mstep-num {
    width:30px; height:30px;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.75rem;
    font-weight:700;
    flex-shrink:0;
    margin-top:.1rem;
}
.mstep-body { flex:1; }
.mstep-body strong { display:block; color:var(--navy); font-size:.9rem; margin-bottom:.2rem; }
.mstep-body span { color:var(--text-mid); font-size:.83rem; line-height:1.5; }

/* Requisitos del modal */
.modal-reqs {
    list-style:none;
    margin-bottom:1.5rem;
}
.modal-reqs li {
    padding:.45rem 0;
    color:var(--text-mid);
    font-size:.88rem;
    border-bottom:1px solid var(--pearl);
    display:flex;
    align-items:center;
    gap:.6rem;
}
.modal-reqs li::before {
    content:'✓';
    color:var(--success);
    font-weight:700;
    flex-shrink:0;
    font-size:.85rem;
}
.modal-reqs li:last-child { border-bottom:none; }

.modal-tiempo {
    background:linear-gradient(135deg, rgba(12,31,63,.05), rgba(201,168,84,.08));
    border:1px solid var(--gold-light);
    border-radius:10px;
    padding:.85rem 1rem;
    display:flex;
    align-items:center;
    gap:.6rem;
    flex-wrap:wrap;
}
.tiempo-label { font-size:.8rem; font-weight:600; color:var(--text-light); }
.tiempo-val { font-size:.95rem; font-weight:700; color:var(--gold-dark); }

.modal-footer {
    padding:1.25rem 2.5rem 2rem;
    border-top:2px solid var(--pearl);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
}
.modal-note { font-size:.82rem; color:var(--text-light); max-width:360px; line-height:1.5; }
.modal-cta {
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    border:none;
    padding:.9rem 2rem;
    border-radius:10px;
    font-weight:700;
    font-size:.95rem;
    cursor:pointer;
    font-family:'Inter',sans-serif;
    transition:var(--trans);
    box-shadow:0 4px 16px rgba(201,168,84,.4);
    white-space:nowrap;
}
.modal-cta:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(201,168,84,.6); }

/* ══════════════════════
   NOTICIAS USCIS
══════════════════════ */
.noticias-section { padding:5rem 2rem; background:var(--navy); }
.noticias-section .section-header h2 { color:var(--white); }
.noticias-section .section-header p  { color:rgba(255,255,255,.6); }
.noticias-section .section-tag { color:var(--gold); border-color:rgba(201,168,84,.4); }

.news-live-badge {
    display:inline-block;
    background:rgba(201,168,84,.12);
    border:1px solid rgba(201,168,84,.3);
    color:var(--gold-light);
    padding:.2rem .7rem;
    border-radius:20px;
    font-size:.72rem;
    font-weight:600;
    letter-spacing:.05em;
    vertical-align:middle;
}
.news-live-badge.live {
    background:rgba(220,60,60,.15);
    border-color:rgba(220,60,60,.3);
    color:#FF8080;
    animation:pulse-badge 2s ease infinite;
}
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.6} }

.noticias-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap:1.25rem;
    max-width:1200px;
    margin:0 auto 2.5rem;
}

.noticia-card {
    display:flex;
    flex-direction:column;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    padding:1.5rem;
    text-decoration:none;
    color:inherit;
    transition:var(--trans);
    transition-delay:var(--delay,0s);
    cursor:pointer;
    position:relative;
    overflow:hidden;
}
.noticia-card::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:3px;
    background:linear-gradient(90deg, var(--gold), var(--sky));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .4s ease;
}
.noticia-card:hover { background:rgba(255,255,255,.09); border-color:rgba(201,168,84,.4); transform:translateY(-5px); box-shadow:0 8px 32px rgba(0,0,0,.3); }
.noticia-card:hover::before { transform:scaleX(1); }

.noticia-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:.85rem;
    gap:.5rem;
}
.noticia-badge {
    background:rgba(201,168,84,.2);
    color:var(--gold-light);
    border:1px solid rgba(201,168,84,.3);
    padding:.2rem .65rem;
    border-radius:20px;
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.08em;
}
.noticia-fecha { font-size:.75rem; color:rgba(255,255,255,.4); }
.noticia-titulo {
    color:var(--white);
    font-size:.93rem;
    font-weight:600;
    line-height:1.45;
    margin-bottom:.65rem;
    flex:1;
}
.noticia-resumen { color:rgba(255,255,255,.5); font-size:.82rem; line-height:1.6; margin-bottom:1rem; flex:1; }
.noticia-leer {
    font-size:.78rem;
    font-weight:700;
    color:var(--gold);
    letter-spacing:.04em;
    margin-top:auto;
    transition:var(--trans);
}
.noticia-card:hover .noticia-leer { letter-spacing:.09em; }

.noticias-footer { text-align:center; }
.noticias-more-btn {
    display:inline-block;
    border:2px solid rgba(201,168,84,.5);
    color:var(--gold-light);
    padding:.8rem 2rem;
    border-radius:50px;
    font-weight:600;
    font-size:.9rem;
    text-decoration:none;
    transition:var(--trans);
    letter-spacing:.03em;
}
.noticias-more-btn:hover { background:rgba(201,168,84,.1); border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

/* ══════════════════════
   BOLETÍN DE VISAS
══════════════════════ */
.boletin-section { padding:5rem 2rem; background:var(--pearl); }

.boletin-mes-badge {
    display:inline-block;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.1em;
    padding:.25rem .9rem;
    border-radius:50px;
    vertical-align:middle;
}

.boletin-nota {
    display:flex;
    align-items:flex-start;
    gap:.6rem;
    background:rgba(26,94,174,.07);
    border:1px solid rgba(26,94,174,.2);
    border-left:4px solid var(--royal);
    border-radius:var(--radius);
    padding:1rem 1.25rem;
    max-width:820px;
    margin:0 auto 2.5rem;
    font-size:.88rem;
    color:var(--text-mid);
    line-height:1.6;
}
.boletin-nota svg { flex-shrink:0; color:var(--royal); margin-top:2px; }
.boletin-nota a { color:var(--royal); font-weight:600; text-decoration:none; }
.boletin-nota a:hover { text-decoration:underline; }

.boletin-tabla-wrap {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    margin-bottom:2rem;
    overflow:hidden;
}
.boletin-tabla-titulo {
    font-family:'Playfair Display', serif;
    font-size:1rem;
    font-weight:600;
    color:var(--white);
    background:linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding:.9rem 1.5rem;
    margin:0;
}
.boletin-tabla-scroll { overflow-x:auto; }
.boletin-tabla {
    width:100%;
    border-collapse:collapse;
    font-size:.85rem;
}
.boletin-tabla thead tr { background:rgba(12,31,63,.04); }
.boletin-tabla th {
    padding:.75rem 1rem;
    text-align:left;
    font-weight:700;
    font-size:.78rem;
    letter-spacing:.06em;
    color:var(--navy);
    border-bottom:2px solid var(--border);
    white-space:nowrap;
}
.boletin-tabla td {
    padding:.65rem 1rem;
    border-bottom:1px solid var(--border);
    color:var(--text-mid);
    white-space:nowrap;
}
.boletin-tabla tr:last-child td { border-bottom:none; }
.boletin-tabla tr:hover td { background:rgba(201,168,84,.05); }
.boletin-cat {
    font-weight:600;
    color:var(--text-dark) !important;
    white-space:normal !important;
    min-width:220px;
}
.boletin-vigente {
    color:var(--success) !important;
    font-weight:700;
}

.boletin-footer { text-align:center; margin-top:1.5rem; }

/* Columna RD resaltada */
.boletin-tabla td:nth-child(2),
.boletin-tabla th:nth-child(2) {
    background:rgba(201,168,84,.08);
    border-left:2px solid var(--gold);
    border-right:1px solid rgba(201,168,84,.3);
    font-weight:600;
    color:var(--navy);
}
.boletin-tabla th:nth-child(2) { color:var(--gold-dark); }

.boletin-nota-rd {
    border-left-color:var(--gold) !important;
    background:rgba(201,168,84,.06) !important;
    border-color:rgba(201,168,84,.25) !important;
}

/* ── Stripe Payment Button ── */
.contact-divider {
    height:1px;
    background:rgba(255,255,255,.15);
    margin:.4rem 0;
}
.stripe-pay-btn {
    display:flex;
    align-items:center;
    gap:.6rem;
    width:100%;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    border:none;
    border-radius:8px;
    padding:.7rem 1rem;
    font-size:.85rem;
    font-weight:700;
    cursor:pointer;
    transition:var(--trans);
    font-family:'Inter',sans-serif;
}
.stripe-pay-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(201,168,84,.4); }
.stripe-pay-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.stripe-pay-btn--secondary {
    background:rgba(255,255,255,.12);
    color:rgba(255,255,255,.9);
    border:1px solid rgba(255,255,255,.25);
}
.stripe-pay-btn--secondary:hover { background:rgba(255,255,255,.18); box-shadow:none; }
.stripe-secure-note {
    display:flex;
    align-items:center;
    gap:.35rem;
    font-size:.72rem;
    color:rgba(255,255,255,.45);
    margin-top:.1rem;
}

/* ── Stripe button en el formulario ── */
.stripe-form-pay {
    padding:1.25rem 2rem 0;
    border-top:1px solid var(--border);
    margin-top:.5rem;
}
.btn-stripe-form {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.7rem;
    width:100%;
    background:linear-gradient(135deg, var(--gold), var(--gold-light));
    color:var(--navy);
    border:none;
    border-radius:50px;
    padding:1rem 2rem;
    font-size:1.05rem;
    font-weight:700;
    cursor:pointer;
    transition:var(--trans);
    font-family:'Inter', sans-serif;
    box-shadow:0 4px 20px rgba(201,168,84,.35);
    letter-spacing:.02em;
}
.btn-stripe-form:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(201,168,84,.55); }
.btn-stripe-form:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.stripe-secure-note-form {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.35rem;
    font-size:.78rem;
    color:var(--text-light);
    margin-top:.75rem;
}

/* ── Responsive Modal ── */
@media (max-width:700px) {
    .modal-body { grid-template-columns:1fr; }
    .modal-col-steps { border-right:none; border-bottom:1px solid var(--border); padding:1rem 0; }
    .modal-col-req { padding:1rem 0 0; }
    .modal-header { flex-direction:column; padding:1.5rem; }
    .modal-footer { flex-direction:column; align-items:stretch; padding:1rem 1.5rem 1.5rem; }
    .modal-cta { text-align:center; }
    .noticias-grid { grid-template-columns:1fr; }
    .nav-tab { padding:.7rem .85rem; font-size:.72rem; letter-spacing:.03em; }
    .nav-tabs-bar { padding:0 .5rem; }
    .lang-btn { padding:.25rem .5rem; font-size:.7rem; }
}

/* Print */
@media print {
    #particleCanvas, .admin-header, .admin-footer, .actions, .btn-logout,
    .hero, .cta-final, .btn-prev, .btn-next, .btn-submit-wizard,
    .nav-tabs-bar, .service-modal-overlay { display:none !important; }
    .citas-table th, .citas-table td { border:1px solid #000; }
}
