/* ═══════════════════════════════════════════════════════════════
   ARMARIOS A MEDIDA HENARES — style.css v3 (clean rebuild)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:    #1B2B4B;
  --navy2:   #243459;
  --gold:    #B8923A;
  --gold2:   #D4A84B;
  --cream:   #F8F5F0;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --gray-lt: #F2F0EC;
  --text:    #1E2635;
  --border:  #E2DDD6;
  --shadow:  0 4px 24px rgba(27,43,75,.10);
  --shadow2: 0 8px 40px rgba(27,43,75,.14);
  --r:  8px;
  --r2: 14px;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,.75); font-size: 13px; padding: 8px 0; }
.topbar-inner { max-width: 1100px; margin: auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.75); text-decoration: none; }
.topbar a:hover { color: var(--gold2); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(27,43,75,.07); }
.nav-inner { max-width: 1100px; margin: auto; padding: 0 24px; height: 68px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--ff-head); font-size: 20px; color: var(--navy); text-decoration: none; letter-spacing: -.2px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; padding: 6px 12px; border-radius: var(--r); transition: background .18s, color .18s; }
.nav-links a:hover { background: var(--gray-lt); color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; border-radius: var(--r) !important; padding: 8px 18px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ── HERO (home) ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #2E4070 100%); padding: 70px 24px 60px; position: relative; overflow: hidden; min-height: 600px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; position: relative; z-index: 1; min-height: 480px; }
.hero-left { display: flex; flex-direction: column; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,146,58,.18); border: 1px solid rgba(184,146,58,.4); color: var(--gold2); font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 40px; margin-bottom: 24px; align-self: flex-start; }
.hero h1 { font-family: var(--ff-head); font-size: clamp(26px,4vw,46px); font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.78); margin-bottom: 28px; font-weight: 300; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px; }
.hero-stat { padding: 0 24px; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--ff-head); font-size: 28px; font-weight: 700; color: var(--gold2); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; }

/* ── HERO FORM ── */
.hero-form-box { background: var(--white); border-radius: var(--r2); padding: 32px 28px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.hero-form-box h3 { font-family: var(--ff-head); font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.hero-form-box > p { font-size: 13px; color: var(--gray); margin-bottom: 20px; }

/* ── FORMS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea { width: 100%; padding: 10px 13px; border: 1px solid var(--border); border-radius: var(--r); font-family: var(--ff-body); font-size: 14px; color: var(--text); background: var(--white); transition: border-color .18s, box-shadow .18s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,58,.12); }
.form-group textarea { resize: vertical; min-height: 80px; }
.req { color: var(--gold); }
.file-upload { border: 2px dashed var(--border); border-radius: var(--r); padding: 14px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; position: relative; }
.file-upload:hover { border-color: var(--gold); background: #fdf9f3; }
.file-upload input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-upload-label { font-size: 13px; color: var(--gray); line-height: 1.5; }
.file-upload-label strong { color: var(--gold); display: block; margin-bottom: 2px; }
.file-list { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.file-chip { background: var(--gray-lt); border-radius: 20px; padding: 3px 10px; font-size: 11px; color: var(--navy); display: flex; align-items: center; gap: 5px; }
.file-chip button { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 13px; line-height: 1; padding: 0; }
.form-success { display: none; text-align: center; padding: 32px 20px; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--ff-head); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--gray); }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--white); font-family: var(--ff-body); font-size: 15px; font-weight: 600; padding: 13px 28px; border: none; border-radius: var(--r); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 4px 16px rgba(184,146,58,.35); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,146,58,.45); }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--white); font-family: var(--ff-body); font-size: 15px; font-weight: 500; padding: 13px 24px; border: 1px solid rgba(255,255,255,.3); border-radius: var(--r); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, border-color .2s; }
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.btn-full { width: 100%; justify-content: center; padding: 14px; }

/* ── SECTIONS ── */
section { padding: 80px 24px; }
section.alt { background: var(--cream); }
.section-inner { max-width: 1100px; margin: auto; }
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { font-family: var(--ff-head); font-size: clamp(24px,3.5vw,38px); font-weight: 700; color: var(--navy); line-height: 1.22; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--gray); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 2px; margin-bottom: 20px; }

/* ── HOME SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 32px 28px; transition: box-shadow .25s, transform .2s, border-color .25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.service-card h3 { font-family: var(--ff-head); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.service-card > p { font-size: 14.5px; color: var(--gray); line-height: 1.68; margin-bottom: 16px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: 13.5px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.service-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.service-note { margin-top: 14px; padding: 10px 14px; background: var(--gray-lt); border-radius: 6px; font-size: 13px; color: var(--gray); font-style: italic; line-height: 1.5; border-left: 3px solid var(--gold); }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; transition: gap .2s, color .18s; }
.service-card-link::after { content: '→'; }
.service-card-link:hover { gap: 10px; color: var(--gold2); }

/* ── PROCESO ── */
.proceso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.proceso-grid::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); z-index: 0; }
.proceso-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: var(--white); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: var(--gold); box-shadow: 0 0 0 6px var(--cream); }
.proceso-step h3 { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.proceso-step p { font-size: 13.5px; color: var(--gray); line-height: 1.65; }
.proceso-note { margin-top: 48px; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--r); padding: 18px 24px; font-size: 14.5px; color: var(--gray); font-style: italic; display: flex; align-items: flex-start; gap: 12px; }
.proceso-note::before { content: '⏱'; font-size: 20px; flex-shrink: 0; font-style: normal; }

/* ── ZONA ── */
.zona-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.zona-text p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.zona-note { font-size: 14px; color: var(--gold); font-weight: 500; margin-top: 8px; }
.zona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.zona-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 14px; font-size: 14px; color: var(--navy); font-weight: 500; display: flex; align-items: center; gap: 8px; transition: border-color .2s, background .2s; }
.zona-item:hover { border-color: var(--gold); background: #fdf9f3; }
.zona-item::before { content: '📍'; font-size: 13px; flex-shrink: 0; }

/* ── PRECIOS ── */
.precio-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.precio-tab { padding: 8px 20px; border: 1px solid var(--border); border-radius: 40px; font-size: 14px; font-weight: 500; color: var(--gray); background: var(--white); cursor: pointer; transition: all .2s; font-family: var(--ff-body); }
.precio-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.precio-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.precio-panel { display: none; }
.precio-panel.active { display: block; }
.precio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.precio-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px 24px; transition: box-shadow .2s, transform .2s; position: relative; }
.precio-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.precio-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.precio-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 6px; }
.precio-gama { font-family: var(--ff-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.precio-range { font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 14px; font-family: var(--ff-head); }
.precio-desc { font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.precio-badge { position: absolute; top: -1px; right: 16px; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 0 0 6px 6px; text-transform: uppercase; letter-spacing: .5px; }
.precio-footer { margin-top: 28px; padding: 16px 20px; background: var(--navy); border-radius: var(--r); color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.precio-footer::before { content: '💡'; font-size: 18px; flex-shrink: 0; }

/* ── TESTIMONIOS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; transition: box-shadow .2s; }
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14.5px; color: var(--gray); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-text::before { content: '"'; font-family: var(--ff-head); font-size: 32px; color: var(--gold); line-height: .5; display: block; margin-bottom: 6px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #4A6FA5); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px; flex-shrink: 0; font-family: var(--ff-head); }
.testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-meta { font-size: 12px; color: var(--gray); margin-top: 2px; }
.testi-note { margin-top: 32px; text-align: center; font-size: 13.5px; color: var(--gray); font-style: italic; }

/* ── CONTACTO + MAPA ── */
.contact-section { padding: 80px 24px; background: var(--navy); }
.contact-inner { max-width: 1100px; margin: auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.contact-info { color: var(--white); }
.contact-info .section-label { color: var(--gold2); }
.contact-info .section-label::before { background: var(--gold2); }
.contact-info .section-title { color: var(--white); }
.contact-info .section-sub { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; padding: 16px 18px; background: rgba(255,255,255,.06); border-radius: var(--r); border: 1px solid rgba(255,255,255,.08); transition: background .2s; }
.contact-item:hover { background: rgba(255,255,255,.1); }
.contact-icon { width: 40px; height: 40px; background: rgba(184,146,58,.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.45); margin-bottom: 3px; font-weight: 600; }
.contact-item-value { font-size: 15px; color: var(--white); font-weight: 500; }
.contact-item-value a { color: var(--white); text-decoration: none; transition: color .18s; }
.contact-item-value a:hover { color: var(--gold2); }
.map-box { border-radius: var(--r2); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.3); height: 100%; min-height: 380px; }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 380px; }

/* ── FORM SECTION ── */
.form-section { padding: 80px 24px; background: var(--cream); }
.form-section-inner { max-width: 720px; margin: auto; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 48px 40px; box-shadow: var(--shadow); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--ff-body); font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.4; transition: background .18s; }
.faq-q:hover { background: var(--cream); }
.faq-q.open { background: var(--cream); color: var(--gold); }
.faq-chevron { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; transition: transform .3s, background .2s; color: var(--navy); }
.faq-q.open .faq-chevron { transform: rotate(180deg); background: var(--gold); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 16px 22px 20px; font-size: 14.5px; color: var(--gray); line-height: 1.75; border-top: 1px solid var(--border); }
.faq-a-inner ul { margin: 12px 0 12px 20px; }
.faq-a-inner li { margin-bottom: 6px; }
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--navy); }

/* ── CTA FINAL ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { max-width: 620px; margin: auto; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--ff-head); font-size: clamp(24px,4vw,38px); color: var(--white); margin-bottom: 16px; line-height: 1.25; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-contact-info { margin-top: 32px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-contact-info a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 7px; transition: color .18s; }
.cta-contact-info a:hover { color: var(--gold2); }

/* ── STICKY CALL (mobile) ── */
.sticky-call { display: none; position: fixed; bottom: 24px; right: 20px; z-index: 300; }
.sticky-call a { display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--white); width: 58px; height: 58px; border-radius: 50%; font-size: 24px; text-decoration: none; box-shadow: 0 6px 24px rgba(184,146,58,.5); transition: transform .2s; animation: pulse 2.5s infinite; }
.sticky-call a:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100%{box-shadow:0 6px 24px rgba(184,146,58,.5);}50%{box-shadow:0 6px 24px rgba(184,146,58,.5),0 0 0 10px rgba(184,146,58,.12);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);} }

/* ── FOOTER ── */
footer { background: #111827; color: rgba(255,255,255,.55); padding: 0; font-size: 13px; }
.footer-inner { max-width: 1100px; margin: auto; padding: 48px 24px 32px; display: grid; grid-template-columns: 2fr 1.2fr 1fr; gap: 40px; }
.footer-brand { }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-logo { font-family: var(--ff-head); font-size: 22px; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-contact p { margin-bottom: 6px; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-contact strong { color: rgba(255,255,255,.8); display: block; margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; text-align: center; }
.footer-contact a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .18s; }
.footer-contact a:hover { color: var(--gold2); }
.footer-links strong { color: rgba(255,255,255,.8); display: block; margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; text-align: center; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; transition: color .18s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; color: var(--gold); font-size: 11px; }
.footer-links a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,.3); }

/* ── SERVICE PAGES HERO ── */
.service-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #2E4070 100%); padding: 56px 24px 64px; position: relative; overflow: hidden; }
.service-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.service-hero-inner { max-width: 860px; margin: auto; text-align: center; position: relative; z-index: 1; }
.service-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; flex-wrap: wrap; }
.service-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s; }
.service-breadcrumb a:hover { color: var(--gold2); }
.service-breadcrumb span { color: rgba(255,255,255,.3); }
.service-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,146,58,.18); border: 1px solid rgba(184,146,58,.4); color: var(--gold2); font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 40px; margin-bottom: 20px; }
.service-hero h1 { font-family: var(--ff-head); font-size: clamp(26px,4vw,46px); font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 18px; }
.service-hero-sub { font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 32px; max-width: 680px; margin-left: auto; margin-right: auto; }
.service-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.service-hero-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.service-hero-trust span { font-size: 13px; color: rgba(255,255,255,.65); }

/* ── SERVICE PAGES TWO-COL LAYOUT ── */
.svc-wrap { max-width: 1100px; margin: auto; padding: 0 24px; }
.svc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.svc-two-col > div > p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

/* ── SERVICE FEATURE BOX ── */
.svc-feature-box { display: flex; flex-direction: column; gap: 16px; }
.svc-feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); transition: box-shadow .2s, border-color .2s; }
.svc-feature-item:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.svc-fi-icon { font-size: 20px; flex-shrink: 0; min-width: 44px; width: 44px; height: 44px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: var(--r); display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.svc-fi-text { flex: 1; }
.svc-fi-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; font-family: var(--ff-body); }
.svc-fi-text p { font-size: 13px; color: var(--gray); line-height: 1.55; margin: 0; }

/* ── SERVICE CARDS GRID ── */
.svc-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px 24px; transition: box-shadow .25s, transform .2s, border-color .25s; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.svc-card h3 { font-family: var(--ff-head); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.svc-card > p { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.svc-card .service-list { margin: 0; }

/* ── COOKIE BANNER ── */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #111827; border-top: 3px solid var(--gold); box-shadow: 0 -4px 32px rgba(0,0,0,.35); transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); }
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: 1100px; margin: auto; padding: 20px 24px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cookie-text { display: flex; align-items: flex-start; gap: 14px; }
.cookie-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.cookie-text-body p { font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0 0 4px; }
.cookie-text-body p strong { color: var(--white); font-size: 14px; }
.cookie-text-body a { color: var(--gold2); text-decoration: none; font-size: 12px; }
.cookie-text-body a:hover { text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.cookie-btn { padding: 10px 20px; border-radius: var(--r); font-family: var(--ff-body); font-size: 13.5px; font-weight: 600; cursor: pointer; border: none; transition: background .18s; text-align: center; white-space: nowrap; }
.cookie-btn-accept { background: var(--gold); color: var(--white); }
.cookie-btn-accept:hover { background: var(--gold2); }
.cookie-btn-reject { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.15); }
.cookie-btn-reject:hover { background: rgba(255,255,255,.14); color: var(--white); }
.cookie-btn-config { background: none; color: rgba(255,255,255,.4); font-size: 12px; font-weight: 400; padding: 4px; text-align: center; cursor: pointer; border: none; font-family: var(--ff-body); transition: color .18s; }
.cookie-btn-config:hover { color: var(--gold2); }

/* ── COOKIE MODAL ── */
#cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); }
#cookie-modal.open { display: flex; }
.cookie-modal-box { background: var(--white); border-radius: var(--r2); max-width: 560px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.3); overflow: hidden; animation: fadeUp .3s ease; }
.cookie-modal-head { background: var(--navy); padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; }
.cookie-modal-head h2 { font-family: var(--ff-head); font-size: 18px; color: var(--white); margin: 0; }
.cookie-modal-close { background: rgba(255,255,255,.1); border: none; color: var(--white); width: 32px; height: 32px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .18s; font-family: var(--ff-body); line-height: 1; }
.cookie-modal-close:hover { background: rgba(255,255,255,.2); }
.cookie-modal-body { padding: 24px 28px; }
.cookie-modal-body > p { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.cookie-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.cookie-row:last-of-type { border-bottom: none; }
.cookie-row-info { flex: 1; }
.cookie-row-info strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 3px; font-family: var(--ff-body); }
.cookie-row-info span { font-size: 12px; color: var(--gray); line-height: 1.5; }
.toggle-wrap { flex-shrink: 0; }
.toggle { position: relative; width: 44px; height: 24px; display: inline-block; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #D1D5DB; border-radius: 24px; cursor: pointer; transition: background .25s; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.toggle input:checked + .toggle-slider { background: var(--gold); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .6; cursor: not-allowed; }
.cookie-required-tag { font-size: 11px; background: #F3F4F6; color: var(--gray); padding: 2px 8px; border-radius: 20px; font-weight: 500; white-space: nowrap; }
.cookie-modal-foot { padding: 16px 28px 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-modal-foot .cookie-btn { flex: 1; min-width: 120px; }

/* ── LEGAL PAGES ── */
.legal-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 56px 24px 48px; text-align: center; }
.legal-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; flex-wrap: wrap; }
.legal-hero .breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.legal-hero .breadcrumb a:hover { color: var(--gold2); }
.legal-hero .breadcrumb span { color: rgba(255,255,255,.3); }
.legal-hero h1 { font-family: var(--ff-head); font-size: clamp(26px,4vw,40px); color: var(--white); margin: 0 0 12px; font-weight: 700; }
.legal-hero .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(184,146,58,.18); border: 1px solid rgba(184,146,58,.35); color: var(--gold2); font-size: 12px; font-weight: 500; padding: 4px 14px; border-radius: 40px; margin-top: 8px; }
.legal-body { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.legal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 48px; box-shadow: var(--shadow); }
.legal-card h2 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; color: var(--navy); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { font-family: var(--ff-head); font-size: 17px; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.legal-card p { font-size: 15px; color: #4B5563; line-height: 1.8; margin-bottom: 14px; }
.legal-card ul, .legal-card ol { margin: 10px 0 16px 20px; }
.legal-card li { font-size: 15px; color: #4B5563; line-height: 1.75; margin-bottom: 8px; }
.legal-card a { color: var(--gold); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }
.legal-card strong { color: var(--navy); }
.legal-updated { font-size: 12px; color: var(--gray); text-align: right; margin-bottom: 32px; display: block; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; padding: 11px 22px; background: var(--navy); color: var(--white); border-radius: var(--r); font-size: 14px; font-weight: 600; text-decoration: none; transition: background .18s; }
.legal-back:hover { background: var(--navy2); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media(max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-box { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-box { min-height: 280px; }
  .map-box iframe { min-height: 280px; }
  .svc-two-col { grid-template-columns: 1fr; gap: 28px; }
}
@media(max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; flex-direction: column; box-shadow: var(--shadow); z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 12px 4px; border-radius: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 20px; }
  .footer-brand p { max-width: 100%; }
  .sticky-call { display: block; }
  .cookie-inner { grid-template-columns: 1fr; gap: 16px; padding: 18px 16px; }
  .cookie-actions { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .cookie-actions .cookie-btn { flex: 1; min-width: 130px; }
  .cookie-btn-config { width: 100%; }
  .cookie-modal-box { max-height: 90vh; overflow-y: auto; }
  .cookie-modal-foot { flex-direction: column; }
  .cookie-modal-foot .cookie-btn { width: 100%; }
  .service-hero { padding: 44px 20px 52px; }
  .service-hero-trust { gap: 12px; }
  .service-hero-btns { flex-direction: column; align-items: center; }
}
@media(max-width: 640px) {
  section { padding: 56px 20px; }
  .hero { padding: 50px 20px 40px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { border-right: none; padding: 0 12px; }
  .form-row { grid-template-columns: 1fr; }
  .proceso-grid { grid-template-columns: 1fr; gap: 32px; }
  .proceso-grid::before { display: none; }
  .proceso-step { display: flex; text-align: left; gap: 20px; align-items: flex-start; }
  .step-num { flex-shrink: 0; width: 48px; height: 48px; font-size: 18px; margin: 0; }
  .form-card { padding: 28px 20px; }
  .legal-card { padding: 28px 20px; }
  .topbar-left { display: none; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .zona-cols { grid-template-columns: 1fr; }
  .zona-grid { grid-template-columns: 1fr 1fr; }
}
