/* ============================================
   VELASCO 24H — Design tokens
   ============================================ */
:root {
    --black: #0c0a08;
    --charcoal: #17130e;
    --charcoal-2: #1f1a13;
    --gold: #c9972e;
    --gold-bright: #f0c968;
    --ember: #b23a1f;
    --cream: #f3ece0;
    --cream-dim: #cfc6b5;
    --line: rgba(243, 236, 224, 0.1);

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    --radius: 10px;
    --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    margin: 0;
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

p { margin: 0 0 1em; color: var(--cream-dim); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

.icon { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.15em; margin-right: 0.4em; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 151, 46, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201, 151, 46, 0.5); }
.btn--ghost {
    background: transparent;
    border-color: rgba(243, 236, 224, 0.35);
    color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============================================
   Top bar + header
   ============================================ */
.topbar { background: var(--black); border-bottom: 1px solid var(--line); font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 6px; color: var(--cream-dim); }
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact a { color: var(--cream-dim); }
.topbar__contact a:hover { color: var(--gold-bright); }
.topbar__schedule { color: var(--gold); }

.header {
    background: rgba(12, 10, 8, 0.92);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { color: var(--gold); }
.brand__key { width: 28px; height: 28px; }
.brand__text { font-family: var(--font-display); text-transform: uppercase; display: flex; flex-direction: column; line-height: 1.1; }
.brand__line1 { font-size: 17px; font-weight: 600; letter-spacing: 0.02em; }
.brand__line2 { font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; color: var(--cream-dim); }
.brand__accent { color: var(--gold); }

.nav { display: flex; gap: 28px; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.03em; text-transform: uppercase; }
.nav a:hover { color: var(--gold-bright); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); }

.urgency-bar { background: linear-gradient(90deg, var(--ember), #8f2c17); }
.urgency-bar__inner { display: flex; align-items: center; gap: 10px; justify-content: center; padding: 10px 24px; flex-wrap: wrap; text-align: center; font-size: 14.5px; }
.urgency-bar__inner a { font-weight: 700; text-decoration: underline; }

/* ============================================
   Hero
   ============================================ */
.hero { position: relative; padding: 90px 0 0; overflow: hidden; background: radial-gradient(ellipse at 20% 0%, #241c10 0%, var(--black) 60%); }
.hero__texture {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(201,151,46,0.12) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    pointer-events: none;
}
.hero__keyhole {
    position: absolute; top: -60px; right: -120px; width: 520px; height: 520px;
    fill: rgba(201, 151, 46, 0.06);
    pointer-events: none;
}
.hero__inner { position: relative; text-align: center; max-width: 880px; }
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid rgba(201,151,46,0.5); color: var(--gold-bright);
    padding: 7px 16px; border-radius: 999px; font-size: 13px;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 26px;
}
.hero__title { font-size: clamp(38px, 6vw, 64px); margin-bottom: 10px; }
.hero__title .accent { color: var(--gold); }
.hero__tagline { font-family: var(--font-display); color: var(--gold-bright); font-size: clamp(18px, 2.4vw, 24px); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 22px; }
.hero__desc { font-size: 17px; max-width: 640px; margin: 0 auto 34px; }
.hero__desc strong { color: var(--cream); }

.hero__stats { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__stats div { text-align: center; }
.hero__stats strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--gold); }
.hero__stats span { font-size: 13px; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.03em; }

.hero__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

.hero__trust { list-style: none; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; padding: 0; margin: 0 0 60px; font-size: 13.5px; color: var(--cream-dim); }
.hero__trust li::before { content: "✓ "; color: var(--gold); }

.trust-strip { border-top: 1px solid var(--line); background: var(--charcoal); position: relative; }
.trust-strip__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding: 20px 24px; font-size: 13.5px; color: var(--cream-dim); }
.trust-strip__inner span { display: flex; align-items: center; }
.trust-strip .icon { color: var(--gold); }

/* ============================================
   Sections generic
   ============================================ */
.section { padding: 90px 0; }
.section--dark { background: var(--charcoal); }
.eyebrow { display: block; color: var(--gold); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin-bottom: 10px; }
.section__title { font-size: clamp(28px, 4vw, 40px); max-width: 720px; }
.section__lead { max-width: 640px; font-size: 16.5px; margin-bottom: 44px; }

/* ============================================
   Services grid
   ============================================ */
.grid { display: grid; gap: 24px; }
.grid--services { grid-template-columns: repeat(4, 1fr); }
.card--service {
    background: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.card--service:hover { border-color: var(--gold); transform: translateY(-4px); }
.card__icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 16px; }
.card__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.card--service h3 { font-size: 18px; margin-bottom: 10px; }
.card--service p { font-size: 14.5px; margin-bottom: 14px; }
.card__cta { color: var(--gold-bright); font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
.card__cta:hover { text-decoration: underline; }

/* ============================================
   CTA band
   ============================================ */
.cta-band { background: linear-gradient(135deg, var(--gold), #a97c22); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 50px 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--black); font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: rgba(12,10,8,0.75); margin: 0; }
.cta-band__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--gold { background: var(--black); color: var(--gold-bright); box-shadow: none; }
.cta-band .btn--ghost { border-color: rgba(12,10,8,0.4); color: var(--black); }

/* ============================================
   Features
   ============================================ */
.grid--features { grid-template-columns: repeat(3, 1fr); }
.feature { border-left: 2px solid var(--gold); padding-left: 20px; }
.feature h3 { font-size: 18px; }
.feature p { font-size: 14.5px; }

/* ============================================
   Testimonials
   ============================================ */
.grid--testimonials { grid-template-columns: repeat(2, 1fr); }
.testimonial { background: var(--black); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.testimonial__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { color: var(--cream); font-style: italic; }
.testimonial cite { font-style: normal; color: var(--gold-bright); font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }

/* ============================================
   Zones
   ============================================ */
.grid--zones { grid-template-columns: repeat(4, 1fr); }
.zone-card {
    background: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 14.5px;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.zone-card:hover { border-color: var(--gold); color: var(--gold-bright); }
.zone-card--all { background: transparent; border-style: dashed; color: var(--gold); }

/* ============================================
   FAQ
   ============================================ */
.faq__item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq__item summary {
    cursor: pointer; font-family: var(--font-display); font-size: 17px;
    text-transform: uppercase; letter-spacing: 0.01em;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 22px; margin-left: 16px; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin-top: 14px; font-size: 15px; }

/* ============================================
   Contact
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; margin-bottom: 50px; }
.contact-info__item { margin-bottom: 28px; }
.contact-info__item h4 { font-size: 14px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.contact-info__item a { display: block; margin-bottom: 4px; }
.contact-info__item a:hover { color: var(--gold-bright); }

.contact-form { display: flex; flex-direction: column; gap: 4px; background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-form label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cream-dim); margin: 12px 0 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
    background: var(--black); border: 1px solid var(--line); border-radius: 6px;
    padding: 11px 14px; color: var(--cream); font-family: var(--font-body); font-size: 15px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--gold);
}
.checkbox-field { display: flex; flex-direction: row; align-items: flex-start; gap: 10px; margin: 18px 0 4px; text-transform: none; letter-spacing: normal; font-size: 13.5px; color: var(--cream-dim); }
.checkbox-field input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.link-inline { background: none; border: none; padding: 0; color: var(--gold-bright); text-decoration: underline; cursor: pointer; font: inherit; }

.contact-form button { margin-top: 20px; }
.contact-form__note { font-size: 13px; text-align: center; margin: 14px 0 0; }
.contact-form__note a { color: var(--gold-bright); }
.contact-form__status { font-size: 14px; margin-top: 10px; text-align: center; }
.hp-field { position: absolute; left: -9999px; }

.map-block h3 { font-size: 20px; }
.map-block iframe { border-radius: var(--radius); filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 14px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; }
.footer__col a { color: var(--cream-dim); font-size: 14.5px; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__col span { color: var(--cream-dim); font-size: 14.5px; }
.brand--footer { margin-bottom: 10px; }
.footer__tagline { color: var(--gold-bright); font-family: var(--font-display); font-style: italic; }
.footer__desc { font-size: 14px; }
.footer__bottom {
    border-top: 1px solid var(--line); padding: 20px 24px; display: flex;
    justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--cream-dim);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal button { background: none; border: none; padding: 0; color: var(--cream-dim); font-size: 13px; cursor: pointer; font-family: var(--font-body); }
.footer__legal button:hover { color: var(--gold-bright); text-decoration: underline; }

/* ============================================
   Legal modals
   ============================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(12, 10, 8, 0.8); backdrop-filter: blur(3px); }
.modal__panel {
    position: relative; background: var(--charcoal); border: 1px solid var(--line);
    border-radius: var(--radius); max-width: 640px; width: 100%; max-height: 82vh;
    overflow-y: auto; padding: 40px 36px;
}
.modal__panel h3 { color: var(--gold); font-size: 22px; margin-bottom: 20px; }
.modal__panel p { font-size: 14.5px; margin-bottom: 14px; }
.modal__panel ul { margin: 0 0 14px; padding-left: 20px; color: var(--cream-dim); font-size: 14.5px; }
.modal__close {
    position: absolute; top: 18px; right: 18px; background: none; border: none;
    color: var(--cream-dim); font-size: 18px; cursor: pointer; line-height: 1;
    width: 32px; height: 32px; border-radius: 50%;
}
.modal__close:hover { color: var(--gold-bright); background: rgba(201,151,46,0.12); }
body.modal-open { overflow: hidden; }

/* ============================================
   Floating action buttons
   ============================================ */
.fab { position: fixed; right: 22px; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.4); z-index: 90; transition: transform 0.15s ease; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; fill: currentColor; }
.fab--call { bottom: 92px; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--black); }
.fab--whatsapp { bottom: 24px; background: #25D366; color: #fff; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
    .grid--services { grid-template-columns: repeat(2, 1fr); }
    .grid--features { grid-template-columns: repeat(2, 1fr); }
    .grid--testimonials { grid-template-columns: 1fr; }
    .grid--zones { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
        background: var(--charcoal); flex-direction: column; padding: 100px 30px; gap: 24px;
        transition: right 0.25s ease; border-left: 1px solid var(--line); }
    .nav.is-open { right: 0; }
    .nav-toggle { display: flex; }
    .header__cta { display: none; }
    .topbar__inner { justify-content: center; text-align: center; }
    .topbar__address { display: none; }
    .grid--services { grid-template-columns: 1fr; }
    .grid--features { grid-template-columns: 1fr; }
    .grid--zones { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .hero__stats { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
}
