/* ═══════════════════════════════════════════════════════════════
   JGC Reformas Madrid — main.css
   Paleta: Navy #1B2A4A + Naranja #E8821A + Blanco
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #1B2A4A;
  --navy-dark: #111E35;
  --navy-mid:  #243560;
  --orange:    #E8821A;
  --orange-lt: #F5A03A;
  --orange-bg: #FFF4E6;
  --white:     #FFFFFF;
  --off-white: #F8F8F6;
  --light-gray:#F0F0ED;
  --border:    #E2E0DA;
  --text:      #2A2A2A;
  --text-mid:  #555550;
  --text-light:#888880;
  --f-head:    'Merriweather', Georgia, serif;
  --f-body:    'Poppins', system-ui, sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(27,42,74,.10);
  --shadow-sm: 0 2px 12px rgba(27,42,74,.07);
}
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── UTILITIES ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.eyebrow--light { color: var(--orange-lt); }
.section-title { font-family: var(--f-head); font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 14px; }
.section-title--light { color: var(--white); }
.section-lead { font-size: 16px; color: var(--text-mid); line-height: 1.75; max-width: 580px; margin-bottom: 44px; }
.section-lead--light { color: rgba(255,255,255,.72); }
.accent-bar { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin-bottom: 24px; }
.text-center { text-align: center; }
.text-center .section-lead, .text-center .accent-bar { margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-family: var(--f-body); font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(232,130,26,.35); }
.btn--orange:hover { background: #c96e10; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,130,26,.45); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── TOPBAR ─────────────────────────────────────────────────────── */
.topbar { background: var(--navy-dark); padding: 8px 0; font-size: 12.5px; color: rgba(255,255,255,.6); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.75); transition: color .15s; }
.topbar a:hover { color: var(--orange-lt); }
.topbar-phone { font-weight: 700; color: var(--orange-lt) !important; font-size: 14px; }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-box { width: 46px; height: 46px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-box span { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: white; line-height: 1; }
.logo-text .logo-name { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1; display: block; }
.logo-text .logo-sub { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); display: block; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color .15s; white-space: nowrap; }
.main-nav a:hover, .main-nav a.current { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel { font-size: 15px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav-tel:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 20px 24px; flex-direction: column; gap: 14px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--navy); padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a.cta-link { color: var(--orange); font-weight: 700; border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 90px 0 80px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,42,74,.97) 0%, rgba(27,42,74,.85) 55%, rgba(27,42,74,.65) 100%), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1400&q=75') center/cover no-repeat; }
.hero-bottom-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange-lt) 100%); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,130,26,.18); border: 1px solid rgba(232,130,26,.35); color: var(--orange-lt); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 24px; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--orange-lt); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero h1 { font-family: var(--f-head); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: var(--orange-lt); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 36px; max-width: 480px; font-weight: 300; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-chip { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 30px; padding: 7px 14px; font-size: 13px; color: rgba(255,255,255,.8); }
.hero-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 12px 48px rgba(0,0,0,.3); }
.hero-card-title { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.hero-card-sub { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form input, .hero-form select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--f-body); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .2s; appearance: none; }
.hero-form input:focus, .hero-form select:focus { border-color: var(--orange); }
.hero-form input::placeholder { color: var(--text-light); }
.hero-form .btn { width: 100%; justify-content: center; }
.hero-form-note { font-size: 11px; color: var(--text-light); text-align: center; }

/* ── STATS ───────────────────────────────────────────────────────── */
.stats-strip { background: var(--orange); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--f-head); font-size: 34px; font-weight: 700; color: #fff; display: block; line-height: 1; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; display: block; }

/* ── SERVICES GRID ───────────────────────────────────────────────── */
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all .25s; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--orange); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--orange-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.service-card h3 { font-family: var(--f-head); font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.3; margin: 0; }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; flex: 1; margin: 0; }
.service-price { font-size: 13px; font-weight: 600; color: var(--orange); }
.service-link { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; margin-top: auto; transition: gap .2s; }
.service-card:hover .service-link { gap: 10px; color: var(--orange); }
.service-card--full { grid-column: span 3; background: var(--navy); border-color: var(--navy); color: white; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.service-card--full h3 { color: white; }
.service-card--full p { color: rgba(255,255,255,.7); }
.service-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.service-tag { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 20px; display: flex; align-items: center; gap: 6px; }

/* ── WHY US ──────────────────────────────────────────────────────── */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-img-wrap { position: relative; }
.why-img { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--light-gray); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; background: linear-gradient(135deg, #d8d4cc, #c8c2b4); }
.why-badge { position: absolute; bottom: -16px; right: -16px; background: var(--orange); color: white; border-radius: var(--radius-lg); padding: 20px 24px; text-align: center; box-shadow: 0 8px 32px rgba(232,130,26,.4); min-width: 130px; }
.why-badge-num { font-family: var(--f-head); font-size: 38px; font-weight: 700; line-height: 1; display: block; }
.why-badge-txt { font-size: 12px; font-weight: 500; opacity: .9; line-height: 1.4; display: block; margin-top: 4px; }
.guarantees { margin-top: 28px; }
.guarantee { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.guarantee:last-child { border-bottom: none; }
.guarantee-icon { width: 44px; height: 44px; background: var(--orange-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.guarantee-body h3 { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.guarantee-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── GALLERY ─────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 12px; margin-top: 48px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; background: var(--light-gray); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; min-height: 220px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img { min-height: 452px; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,42,74,.8) 0%, transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { font-size: 13px; font-weight: 600; color: white; }

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow .2s, transform .2s; }
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; }
.testimonial-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-text::before { content: '"'; font-family: var(--f-head); font-size: 48px; color: var(--orange); line-height: 0; display: block; margin-bottom: 12px; padding-top: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-size: 16px; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--navy); display: block; }
.author-loc { font-size: 12px; color: var(--text-light); display: block; }
.google-verify { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-light); padding-top: 12px; border-top: 1px solid var(--border); }
.google-g { font-weight: 900; font-size: 13px; background: linear-gradient(135deg,#4285F4,#34A853,#FBBC05,#EA4335); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ── ZONES ───────────────────────────────────────────────────────── */
.zones-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.zone-list { display: flex; flex-direction: column; }
.zone-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.zone-row:last-child { border-bottom: none; }
.zone-name { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--navy); }
.zone-bullet { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.zone-pill { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; background: var(--orange-bg); color: var(--orange); white-space: nowrap; }
.zone-pill--gray { background: var(--light-gray); color: var(--text-light); }
.zone-map-placeholder { background: var(--light-gray); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 90px; opacity: .25; border: 1px solid var(--border); }

/* ── PRICES ──────────────────────────────────────────────────────── */
.prices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; transition: all .25s; }
.price-card:hover { box-shadow: var(--shadow); border-color: var(--orange); }
.price-card--featured { background: var(--navy); border-color: var(--navy); }
.price-card--featured::after { content: 'Más solicitada'; position: absolute; top: 16px; right: -28px; background: var(--orange); color: white; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 36px; transform: rotate(45deg); }
.price-type { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.price-card--featured .price-type { color: rgba(255,255,255,.5); }
.price-name { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.25; }
.price-card--featured .price-name { color: white; }
.price-from { font-size: 34px; font-weight: 700; color: var(--navy); font-family: var(--f-head); line-height: 1; }
.price-from sup { font-size: 16px; vertical-align: top; margin-top: 6px; }
.price-from small { font-size: 14px; font-weight: 400; color: var(--text-light); }
.price-card--featured .price-from { color: white; }
.price-card--featured .price-from small { color: rgba(255,255,255,.5); }
.price-time { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.price-card--featured .price-time { color: rgba(255,255,255,.55); }
.price-sep { height: 1px; background: var(--border); }
.price-card--featured .price-sep { background: rgba(255,255,255,.12); }
.price-features { display: flex; flex-direction: column; gap: 8px; }
.price-feature { font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.price-feature::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.price-card--featured .price-feature { color: rgba(255,255,255,.75); }
.price-note { background: var(--orange-bg); border-left: 3px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-top: 16px; }

/* ── CTA / FORMULARIO ────────────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -30%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,130,26,.18) 0%, transparent 70%); pointer-events: none; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.cta-text h2 { font-family: var(--f-head); font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 14px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 24px; }
.cta-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cta-bullet { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.cta-check { width: 20px; height: 20px; background: rgba(232,130,26,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--orange-lt); flex-shrink: 0; }
.cta-form-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 34px; }
.cta-form-title { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: white; margin-bottom: 6px; }
.cta-form-sub { font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.jgc-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.form-group label.dark { color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--radius); font-family: var(--f-body); font-size: 14px; color: white; outline: none; transition: border-color .2s; appearance: none; width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: #243560; color: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group.light input, .form-group.light select, .form-group.light textarea { background: var(--white); border-color: var(--border); color: var(--text); }
.form-group.light input::placeholder { color: var(--text-light); }
.form-group.light select option { background: white; color: var(--text); }
.form-submit { width: 100%; padding: 15px; background: var(--orange); color: white; font-family: var(--f-body); font-size: 15px; font-weight: 700; border: none; border-radius: var(--radius); cursor: pointer; transition: background .2s; margin-top: 4px; }
.form-submit:hover { background: #c96e10; }
.form-privacy { font-size: 11px; color: rgba(255,255,255,.3); text-align: center; margin-top: 10px; line-height: 1.5; }
.or-line { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1); }
.or-text { font-size: 12px; color: rgba(255,255,255,.3); }
.tel-big { display: flex; align-items: center; justify-content: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 13px; color: white; font-size: 19px; font-weight: 700; cursor: pointer; transition: background .2s; text-decoration: none; }
.tel-big:hover { background: rgba(255,255,255,.12); }
.tel-sub { text-align: center; font-size: 11px; color: rgba(255,255,255,.35); margin-top: 6px; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; display: flex; align-items: flex-start; gap: 18px; cursor: pointer; font-family: var(--f-body); }
.faq-btn:hover .faq-q { color: var(--orange); }
.faq-n { font-family: var(--f-head); font-size: 16px; color: var(--orange); font-weight: 700; opacity: .35; min-width: 28px; flex-shrink: 0; padding-top: 2px; }
.faq-q { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; flex: 1; transition: color .15s; }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--text-light); transition: all .2s; }
.faq-item.open .faq-ico { background: var(--orange); border-color: var(--orange); color: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px 46px; font-size: 15px; color: var(--text-mid); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── PAGE HERO (páginas interiores) ─────────────────────────────── */
.page-hero { background: var(--navy); padding: 72px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,42,74,.97) 0%, rgba(27,42,74,.8) 100%), url('https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1200&q=70') center/cover no-repeat; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); transition: color .15s; }
.page-hero .breadcrumb a:hover { color: var(--orange-lt); }
.page-hero h1 { font-family: var(--f-head); font-size: clamp(26px, 4vw, 44px); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 620px; line-height: 1.75; margin-bottom: 28px; }
.page-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-meta-chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 6px 14px; font-size: 13px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }

/* ── CONTENT SECTIONS (interior pages) ──────────────────────────── */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.content-main h2 { font-family: var(--f-head); font-size: 26px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.content-main p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.content-main ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.content-main ul li { font-size: 15px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.content-main ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.info-box { background: var(--orange-bg); border-left: 3px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin: 20px 0; font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.info-box strong { color: var(--navy); }
.success-box { background: #F0FAF5; border-left: 3px solid #2a9d8f; border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin: 20px 0; font-size: 14px; color: #1a5e52; line-height: 1.65; }

/* ── SIDEBAR ─────────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.sidebar-card--orange { background: var(--orange); border-color: var(--orange); color: white; }
.sidebar-card--navy { background: var(--navy); border-color: var(--navy); color: white; }
.sidebar-card h3 { font-family: var(--f-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sidebar-card p { font-size: 14px; line-height: 1.7; opacity: .85; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card--orange h3, .sidebar-card--navy h3 { color: white; }
.sidebar-services { display: flex; flex-direction: column; gap: 0; }
.sidebar-service { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--navy); font-weight: 500; transition: color .15s; }
.sidebar-service:last-child { border-bottom: none; }
.sidebar-service:hover { color: var(--orange); }
.sidebar-service-arrow { color: var(--text-light); font-size: 12px; }
.sidebar-price { font-weight: 700; color: var(--orange); font-size: 13px; }

/* ── PRICE TABLE ─────────────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; }
.price-table thead th { background: var(--navy); color: white; font-weight: 600; padding: 12px 16px; text-align: left; font-size: 13px; }
.price-table tbody tr:nth-child(even) { background: var(--off-white); }
.price-table tbody tr:nth-child(odd) { background: var(--white); }
.price-table td { padding: 12px 16px; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.price-table td:first-child { font-weight: 500; color: var(--navy); }
.price-table td strong { color: var(--orange); }

/* ── GEO PAGE SPECIFIC ───────────────────────────────────────────── */
.geo-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.geo-service-item { background: var(--off-white); border-radius: var(--radius); padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.geo-service-icon { font-size: 22px; flex-shrink: 0; }
.geo-service-item h4 { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.geo-service-item p { font-size: 13px; color: var(--text-mid); margin: 0; line-height: 1.5; }

/* ── CONTACT PAGE ────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; background: var(--orange-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item h3 { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--text-mid); }
.contact-item a:hover { color: var(--orange); }
.contact-form-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-box .form-group label { color: var(--text-mid); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.contact-form-box input, .contact-form-box select, .contact-form-box textarea { background: var(--white); border: 1.5px solid var(--border); color: var(--text); }
.contact-form-box input::placeholder, .contact-form-box textarea::placeholder { color: var(--text-light); }
.contact-form-box input:focus, .contact-form-box select:focus, .contact-form-box textarea:focus { border-color: var(--orange); }
.contact-form-box select option { background: white; color: var(--text); }

/* ── NOSOTROS PAGE ───────────────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--light-gray); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.value-item { background: var(--off-white); border-radius: var(--radius); padding: 20px; }
.value-item h3 { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-size: 26px; font-weight: 700; color: white; }
.team-name { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-role { font-size: 13px; color: var(--text-light); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.55); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .footer-logo-name { font-family: var(--f-head); font-size: 22px; font-weight: 700; color: white; display: block; margin-bottom: 4px; }
.footer-brand .footer-logo-sub { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); display: block; margin-bottom: 16px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-contact-item strong { color: rgba(255,255,255,.85); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col li a:hover { color: var(--orange-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .section { padding: 60px 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--full { grid-column: span 2; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap { max-width: 460px; }
  .why-badge { right: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .zones-layout { grid-template-columns: 1fr; }
  .zone-map-placeholder { display: none; }
  .prices-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { min-height: 220px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .geo-services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--full { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .topbar-left { display: none; }
}
