:root {
    --primary: #279b9a;
    --primary-hover: #1a7877;
    --primary-light: #e6f7f7;
    --primary-mid: #a8dfde;
    --text-dark: #0e1c1c;
    --text-mid: #4d6666;
    --text-light: #8aacac;
    --bg: #ffffff;
    --bg-off: #f5fafa;
    --bg-dark: #0c1e1e;
    --border: #ddeaea;
    --shadow-xs: 0 1px 4px rgba(14, 28, 28, .05);
    --shadow-sm: 0 3px 12px rgba(14, 28, 28, .07);
    --shadow-md: 0 8px 28px rgba(14, 28, 28, .10);
    --shadow-lg: 0 20px 52px rgba(14, 28, 28, .13);
    --radius: 16px;
    --radius-lg: 24px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --max-w: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }
select, input, textarea, button { font: inherit; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: background .25s, transform .2s, box-shadow .25s, color .25s;
}
.btn:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(39, 155, 154, .35); }
.btn-large { padding: 16px 34px; font-size: 1rem; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.btn-light:hover { background: var(--primary-light); border-color: var(--primary-light); }

.floating-btn {
    position: fixed; right: 20px; bottom: 20px; z-index: 1000;
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: #fff; font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(39, 155, 154, .5);
}

#main-header {
    position: sticky; top: 0; z-index: 900;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
#main-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 12px 5%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brandmark-img { height: 58px; width: auto; object-fit: contain; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-schedule { display: none; font-size: .83rem; color: var(--text-mid); align-items: center; gap: 6px; }
.header-btn { padding: 10px 20px; font-size: .88rem; }

.hero {
    max-width: var(--max-w); margin: 0 auto; padding: 44px 5% 64px;
    display: flex; flex-direction: column; gap: 36px;
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 6vw, 4rem);
    line-height: 1.05; font-weight: 700;
}
.hero-lead { font-size: 1.08rem; color: var(--text-mid); max-width: 560px; }
.hero-offer-box {
    background: linear-gradient(135deg, #f1fbfb, #ffffff);
    border: 1px solid var(--primary-mid);
    box-shadow: var(--shadow-xs);
    border-radius: var(--radius); padding: 18px 18px 16px;
    max-width: 560px;
}
.offer-chip {
    display: inline-flex; margin-bottom: 8px; padding: 5px 10px;
    background: var(--primary); color: #fff; border-radius: 50px;
    font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.hero-offer-box p { color: var(--text-dark); font-size: 1rem; margin-bottom: 2px; }
.hero-offer-box span { color: var(--text-mid); font-size: .88rem; }
.cta-group { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.phone-large { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.schedule-text { font-size: .86rem; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
    background: var(--primary-light); color: var(--primary);
    padding: 6px 13px; border-radius: 50px; font-size: .8rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.hero-image {
    width: 100%; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10;
    background: #c8dcdc; box-shadow: var(--shadow-md);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.mini-proof-bar { background: var(--bg-off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mini-proof-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 16px 5%;
    display: grid; grid-template-columns: 1fr; gap: 10px; text-align: center; color: var(--text-mid); font-size: .95rem;
}
.mini-proof-inner strong { color: var(--text-dark); }

.products-section, .steps-section, .faq-section, .after-hours-section {
    max-width: var(--max-w); margin: 0 auto; padding: 76px 5%;
}
.features-section, .testimonials-section { background: var(--bg-off); padding: 76px 0; }
.features-inner, .testimonials-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700; color: var(--text-dark); margin-bottom: 12px;
}
.section-subtitle { font-size: 1.03rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 22px; }

.card {
    background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
    padding: 34px 26px; text-align: center; box-shadow: var(--shadow-xs);
    transition: box-shadow .3s, transform .3s, border-color .3s; position: relative;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--primary-mid); }
.card-badge-top {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; font-size: .74rem; font-weight: 700;
    padding: 5px 14px; border-radius: 0 0 10px 10px;
}
.product-card { display: flex; flex-direction: column; }
.product-card .btn { width: 100%; margin-top: auto; }
.card-icon {
    width: 66px; height: 66px; background: var(--primary-light); color: var(--primary);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; margin: 0 auto 22px;
}
.card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--text-mid); font-size: .94rem; line-height: 1.6; }
.price-box { margin: 22px 0 10px; padding: 18px; background: var(--bg-off); border-radius: 10px; }
.price-box-alt { display: flex; align-items: center; justify-content: center; min-height: 96px; }
.price-label { display: block; font-size: .74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.price-amount { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--text-dark); }
.product-list { list-style: none; text-align: left; margin: 0 0 22px; }
.product-list li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-mid); font-size: .9rem; }
.product-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--primary); font-size: .8rem; }

.features-grid {
    display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--border);
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
}
.feature-item { display: flex; align-items: flex-start; gap: 18px; padding: 28px 24px; background: #fff; }
.feature-icon {
    width: 46px; height: 46px; min-width: 46px; background: var(--primary-light); color: var(--primary);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.feature-text h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.feature-text p { font-size: .88rem; color: var(--text-mid); }

.steps-grid { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step-card { text-align: center; padding: 30px 24px; max-width: 310px; width: 100%; }
.step-number {
    width: 56px; height: 56px; background: var(--primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
    font-size: 1.55rem; font-weight: 700; margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(39, 155, 154, .35);
}
.step-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.step-card p { color: var(--text-mid); font-size: .94rem; }
.step-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--primary), var(--primary-mid)); }

.rating-summary { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; color: var(--text-mid); font-size: .93rem; }
.stars { color: #f5a623; display: flex; gap: 3px; font-size: .88rem; }
.testimonial-card {
    background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
    padding: 32px 28px; position: relative; overflow: hidden; box-shadow: var(--shadow-xs);
}
.quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--primary-light); position: absolute; top: 10px; right: 18px; }
.testimonial-card .stars { margin-bottom: 16px; }
.testimonial-card p { color: var(--text-mid); font-size: .96rem; line-height: 1.72; margin-bottom: 22px; font-style: italic; position: relative; z-index: 1; }
.client-info { border-top: 1px solid var(--border); padding-top: 16px; }
.client-name { display: block; font-weight: 600; font-size: .93rem; }
.client-location { font-size: .82rem; color: var(--text-light); }

.faq-container { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item.open { border-color: var(--primary); }
.faq-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 24px; background: none; border: none; cursor: pointer;
    font-size: .97rem; font-weight: 600; color: var(--text-dark); text-align: left;
}
.faq-item.open .faq-trigger { color: var(--primary); }
.faq-icon { font-size: .85rem; color: var(--primary); transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .36s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p { padding: 0 24px 22px; color: var(--text-mid); font-size: .93rem; }

.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a2d2d 100%);
    padding: 88px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; line-height: 1.15; margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,.74); font-size: 1.08rem; margin-bottom: 34px; }
.cta-disclaimer { font-size: .82rem !important; color: rgba(255,255,255,.45) !important; margin-top: 18px !important; margin-bottom: 0 !important; }

.after-hours-form {
    max-width: 680px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 46px 38px; text-align: center; box-shadow: var(--shadow-md);
}
.form-icon {
    width: 60px; height: 60px; background: var(--primary-light); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin: 0 auto 20px;
}
.after-hours-form h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.after-hours-form > p { color: var(--text-mid); font-size: .92rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; text-align: left; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px;
    color: var(--text-dark); background: var(--bg-off); transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(39,155,154,.12); background: #fff;
}
.consent-check {
    display: flex; align-items: flex-start; gap: 10px; text-align: left; margin: 10px 0 16px;
    color: var(--text-mid); font-size: .86rem;
}
.consent-check input { margin-top: 4px; }
.honey-wrap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-legal { margin-top: 14px; font-size: .78rem; color: var(--text-light); }
.after-hours-form .btn { width: 100%; }

footer { background: var(--bg-dark); padding: 44px 5%; color: rgba(255,255,255,.45); }
.footer-inner {
    max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column;
    align-items: center; gap: 22px; text-align: center;
}
.footer-logo-img { height: 46px; width: auto; }
.footer-desc { font-size: .82rem; margin-top: 6px; }
.footer-phone { display: block; color: var(--primary-mid); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.footer-contact p { font-size: .83rem; }

@media (min-width: 600px) {
    .floating-btn { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-proof-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .floating-btn { display: none; }
    .hero { flex-direction: row; align-items: center; padding-top: 60px; padding-bottom: 88px; gap: 64px; }
    .hero-content { flex: 1; }
    .hero-image { flex: 1; aspect-ratio: 4 / 3; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { flex-direction: row; align-items: flex-start; justify-content: center; }
    .step-connector { width: 56px; height: 2px; margin-top: 28px; background: linear-gradient(to right, var(--primary), var(--primary-mid)); }
    .step-card { flex: 1; }
    .header-schedule { display: flex; }
    .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .hero { gap: 80px; }
    .hero-image { aspect-ratio: 3 / 2; }
}


.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary);
}
.hero-secondary-link::before {
    content: '\f0f3';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .85rem;
}
.hero-secondary-link:hover { color: var(--primary-hover); }

@media (min-width: 768px) {
    .hero {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
        align-items: center;
        gap: 56px;
    }
    .hero-image {
        width: 100%;
        min-height: 420px;
    }
}
@media (min-width: 1280px) {
    .hero {
        gap: 72px;
        padding-top: 48px;
    }
    .hero-image {
        min-height: 470px;
    }
}

.promo-product-box {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.promo-product-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 2px solid #bfe3e1;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.promo-product-image-wrap {
    position: relative;
    background: #f8fbfb;
    border-radius: 22px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid #d7eceb;
}

.promo-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.promo-montaje-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff2f7d;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 47, 125, 0.30);
}

.promo-product-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.promo-product-title {
    margin: 0;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    line-height: 1.1;
    color: #14222b;
}

.promo-product-subtitle {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #50646b;
}

.promo-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
}

.promo-price-block {
    background: #f5fbfb;
    border: 1px solid #dcefee;
    border-radius: 18px;
    padding: 16px 18px;
}

.promo-price-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #628086;
}

.promo-price-main {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    color: #0f6c72;
}

.promo-price-finance {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0f6c72;
}

.promo-price-block small {
    display: block;
    margin-top: 6px;
    color: #6c7f86;
    font-size: 0.9rem;
}

.promo-product-text {
    margin: 0;
    font-size: .6rem;
    line-height: 1.7;
    color: #4b6167;
}

.promo-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.promo-product-actions .btn,
.promo-product-actions .btn-outline {
    min-width: 200px;
    justify-content: center;
}

@media (max-width: 980px) {
    .promo-product-card {
        grid-template-columns: 1fr;
    }

    .promo-price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .promo-product-card {
        padding: 16px;
        border-radius: 22px;
    }

    .promo-product-image-wrap {
        padding: 14px;
    }

    .promo-montaje-badge {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .promo-product-title {
        font-size: 1.7rem;
    }

    .promo-price-main {
        font-size: 2rem;
    }

    .promo-price-finance {
        font-size: 1.55rem;
    }

    .promo-product-actions {
        flex-direction: column;
    }

    .promo-product-actions .btn,
    .promo-product-actions .btn-outline {
        width: 100%;
        min-width: auto;
    }
}

.hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 56px 5% 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 560px);
    align-items: start;
    gap: 64px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 640px;
    padding-top: 18px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 58px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: 680px;
    margin: 0;
}

.hero-lead {
    font-size: 1.08rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0;
}

.cta-group-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 22px;
    margin-top: 4px;
}

.cta-phone-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-large {
    font-family: var(--font-display);
    font-size: 2.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-decoration: none;
}

.schedule-text {
    font-size: .92rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .96rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: -2px;
}

.hero-badges-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    padding-bottom: 110px;
}

.hero-image {
    width: 100%;
    min-height: 430px;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #d9e6e5;
    box-shadow: var(--shadow-md);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-promo-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #cfe7e5;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 20px 44px rgba(11, 31, 36, 0.12);
}

.hero-promo-thumb {
    position: relative;
    background: #f5fbfb;
    border: 1px solid #dcefee;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.hero-promo-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff2f7d;
    color: #ffffff;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 47, 125, 0.28);
}

.hero-promo-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hero-promo-body h3 {
    font-size: 1.55rem;
    line-height: 1.1;
    margin: 0;
    color: var(--text-dark);
}

.hero-promo-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--text-mid);
}

.hero-promo-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
}

.hero-promo-price-box {
    background: #f5fbfb;
    border: 1px solid #dcefee;
    border-radius: 16px;
    padding: 12px 14px;
}

.hero-promo-price-box small {
    display: block;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #698188;
    margin-bottom: 6px;
}

.hero-promo-price-box strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-dark);
}

.hero-promo-price-box-finance strong {
    color: var(--primary);
}

.hero-promo-price-box-finance span {
    display: block;
    margin-top: 4px;
    font-size: .84rem;
    color: var(--text-mid);
}

.hero-promo-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-promo-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.hero-promo-note {
    margin: 0;
    font-size: .93rem;
    line-height: 1.55;
    color: var(--text-mid);
}

.hero-promo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}

.hero-promo-link:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 64px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 8vw, 4.2rem);
    }

    .hero-visual {
        padding-bottom: 0;
    }

    .hero-promo-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 18px;
    }
}

@media (max-width: 767px) {
    .hero {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 34px 5% 52px;
    }

    .hero-content {
        gap: 18px;
        padding-top: 0;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.5rem);
        line-height: 1.02;
    }

    .cta-group-desktop {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-promo-card {
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 22px;
    }

    .hero-promo-thumb {
        min-height: auto;
    }

    .hero-promo-prices {
        grid-template-columns: 1fr;
    }

    .hero-promo-link {
        width: 100%;
    }
}
/* ========= Hero con ficha de producto v3 ========= */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 540px);
    align-items: center;
    gap: 56px;
    padding-top: 54px;
    padding-bottom: 84px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 700px;
}

.hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3.1rem, 6vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.hero-lead {
    margin: 0;
    max-width: 600px;
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--text-mid);
}

.cta-group-desktop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 4px;
}

.cta-phone-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-secondary-link {
    margin-top: -2px;
}

.hero-badges-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.hero-product-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-product-card {
    width: min(100%, 540px);
    background: #ffffff;
    border: 2px solid #bfe3e1;
    border-radius: 32px;
    padding: 22px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.hero-product-media {
    position: relative;
    margin-bottom: 22px;
    padding: 22px;
    border-radius: 24px;
    background: #f8fbfb;
    border: 1px solid #dcefee;
    overflow: hidden;
}

.hero-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}

.hero-product-montaje {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ff2f7d;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 22px rgba(255, 47, 125, 0.24);
}

.hero-product-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-product-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.8vw, 2.55rem);
    line-height: 1.08;
    color: var(--text-dark);
}

.hero-product-subtitle {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-product-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-product-price-label {
    color: var(--text-mid);
    font-size: 1rem;
}

.hero-product-price-main,
.hero-product-price-finance {
    font-size: 1.95rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-product-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 999px;
    background: #e5f1f0;
    color: #5a7177;
    font-size: 0.98rem;
    font-weight: 700;
}

.hero-product-note {
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--text-dark);
}

.hero-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-product-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
}

.hero-product-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 64px;
    }

    .hero-product-wrap {
        justify-content: flex-start;
    }

    .hero-product-card {
        width: min(100%, 640px);
    }
}

@media (max-width: 767px) {
    .hero {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 34px 5% 52px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 11vw, 3.6rem);
        line-height: 1.02;
    }

    .cta-group-desktop {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-product-card {
        padding: 16px;
        border-radius: 24px;
    }

    .hero-product-media {
        padding: 16px;
        border-radius: 20px;
    }

    .hero-product-montaje {
        top: 12px;
        left: 12px;
        font-size: 0.76rem;
        padding: 8px 12px;
    }

    .hero-product-title {
        font-size: 1.75rem;
    }

    .hero-product-price-main,
    .hero-product-price-finance {
        font-size: 1.7rem;
    }

    .hero-product-pill {
        padding: 14px 16px;
        border-radius: 20px;
        font-size: 0.95rem;
    }
}

/* ===== Mejora hero y ficha comercial ===== */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 540px);
    align-items: start;
    gap: 72px;
    padding-top: 58px;
    padding-bottom: 82px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 760px;
}

.hero h1 {
    margin: 18px 0 0;
    max-width: 820px;
    font-size: clamp(3.6rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.hero-lead {
    margin: 18px 0 0;
    max-width: 700px;
    font-size: 1.12rem;
    line-height: 1.58;
    color: var(--text-mid);
}

.hero-cta-block {
    margin-top: 28px;
}

.hero-phone-block {
    margin-top: 18px;
}

.phone-large {
    display: inline-block;
    line-height: 1;
    font-size: clamp(2.15rem, 3vw, 3.1rem);
}

.schedule-text {
    margin-top: 10px;
    font-size: 0.95rem;
}

.hero-secondary-link {
    margin-top: 18px;
}

.hero-product-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-product-card--commercial {
    width: min(100%, 530px);
    background: #ffffff;
    border: 2px solid #b9e0de;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 18px 40px rgba(6, 31, 35, 0.08);
}

.hero-product-media {
    position: relative;
    margin-bottom: 22px;
    padding: 18px;
    background: #f8fbfb;
    border: 1px solid #deefee;
    border-radius: 24px;
    overflow: hidden;
}

.hero-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-product-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 2;
}

.hero-product-badge--install {
    background: #ff2f7d;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(255, 47, 125, 0.22);
}

.hero-product-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-product-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-product-title {
    margin: 0;
    font-size: clamp(1.95rem, 3vw, 2.45rem);
    line-height: 1.05;
}

.hero-product-subtitle {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.hero-product-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
}

.hero-price-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid #dceeee;
    background: #f9fbfb;
}

.hero-price-card--main {
    background: linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
    border-color: #cde5e4;
}

.hero-price-card--finance {
    background: linear-gradient(180deg, #ecf8f7 0%, #e3f3f2 100%);
    border-color: #c5e4e2;
}

.hero-price-card-label {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.hero-price-card-value {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.95;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-price-card--finance .hero-price-card-value {
    color: var(--primary);
}

.hero-price-card-meta {
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--text-mid);
    font-weight: 600;
}

.hero-product-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.hero-product-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 999px;
    background: #e5f1f0;
    color: #5a7177;
    font-size: 0.98rem;
    font-weight: 700;
}

.hero-product-note {
    margin: 2px 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.hero-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: background .25s ease, transform .25s ease;
}

.hero-product-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 64px;
    }

    .hero-product-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .hero {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-top: 34px;
        padding-bottom: 52px;
    }

    .hero h1 {
        margin-top: 16px;
        font-size: clamp(2.7rem, 12vw, 4rem);
        line-height: 1.01;
    }

    .hero-lead {
        margin-top: 16px;
        font-size: 1rem;
    }

    .hero-cta-block {
        margin-top: 22px;
        width: 100%;
    }

    .hero-cta-block .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-phone-block {
        margin-top: 14px;
    }

    .phone-large {
        font-size: 2.1rem;
    }

    .hero-secondary-link {
        margin-top: 14px;
    }

    .hero-product-card--commercial {
        width: 100%;
        padding: 16px;
        border-radius: 24px;
    }

    .hero-product-media {
        padding: 14px;
        border-radius: 20px;
    }

    .hero-product-badge {
        left: 12px;
        top: 12px;
        padding: 8px 12px;
        font-size: 0.74rem;
    }

    .hero-product-pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-price-card {
        border-radius: 18px;
    }

    .hero-product-benefit {
        border-radius: 18px;
    }

    .hero-product-cta {
        width: 100%;
    }
}

/* ===== fix definitivo hero comercial ===== */
.hero-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    max-width:760px;
    padding-top:0;
}

.hero-product-card.hero-product-card--commercial{
    width:min(100%, 530px);
    background:#ffffff;
    border:2px solid #b9e0de;
    border-radius:32px;
    padding:20px;
    box-shadow:0 18px 40px rgba(6, 31, 35, 0.08);
}

.hero-product-card.hero-product-card--commercial .hero-product-media{
    position:relative;
    margin-bottom:22px;
    padding:18px;
    background:#f8fbfb;
    border:1px solid #deefee;
    border-radius:24px;
    overflow:hidden;
}

.hero-cta-block{
    margin-top:28px;
}

.hero-phone-block{
    margin-top:18px;
}

.hero-secondary-link{
    margin-top:18px;
}

.phone-large{
    display:inline-block;
    line-height:1;
    font-size:clamp(2.15rem, 3vw, 3.1rem);
}

.schedule-text{
    margin-top:10px;
    font-size:0.95rem;
}

@media (max-width: 767px){
    .hero-content{
        gap:0;
        padding-top:0;
    }

    .hero-product-card.hero-product-card--commercial{
        width:100%;
        padding:16px;
        border-radius:24px;
    }
}

.products-section {
    padding: 92px 5% 84px;
    background: transparent;
}

.section-heading {
    max-width: 880px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.section-heading p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--text-mid);
}

.products-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #d9eceb;
    border-radius: 30px;
    box-shadow: 0 10px 28px rgba(8, 31, 35, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(8, 31, 35, 0.09);
    border-color: #bfdedd;
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(47, 162, 162, 0.24);
}

.product-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 248px;
    margin-bottom: 24px;
    padding: 26px;
    background: #f7fbfb;
    border: 1px solid #e2f0ef;
    border-radius: 24px;
    overflow: hidden;
}

.product-image {
    display: block;
    width: 100%;
    max-height: 210px;
    object-fit: contain;
}

.product-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2.4vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.product-card p {
    margin: 0 0 20px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.product-price-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
    padding: 20px 22px;
    background: #edf6f5;
    border: 1px solid #d4e8e6;
    border-radius: 24px;
}

.product-price-box span {
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b8589;
}

.product-price-box strong {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4vw, 4.25rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.product-price-box small {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--text-mid);
}

.product-features {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.product-card .btn-outline {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    min-height: 58px;
    border-width: 2px;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .products-section {
        padding: 72px 5% 58px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 1.05;
    }

    .section-heading p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-card {
        padding: 20px;
        border-radius: 24px;
    }

    .product-badge {
        top: 14px;
        left: 14px;
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.8rem;
    }

    .product-image-wrap {
        min-height: 210px;
        padding: 18px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .product-image {
        max-height: 176px;
    }

    .product-card h3 {
        font-size: 2rem;
    }

    .product-card p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .product-price-box {
        padding: 18px;
        border-radius: 20px;
        margin-bottom: 18px;
    }

    .product-price-box strong {
        font-size: 3.3rem;
    }

    .product-features {
        margin-bottom: 22px;
    }
}
