/* =========================
   Variables globales
========================= */
:root {
    --primary: #7ACF00;
    --dark: #111111;
    --gray: #6B7280;
    --bg: #F8F9FA;
    --white: #FFFFFF;
    --border: #E5E7EB;
}

/* =========================
   Reset básico
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   Layout
========================= */
.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
   Header
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo .power {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--dark);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--dark) !important;
    font-weight: 700 !important;
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 2rem;
    cursor: pointer;
}

/* =========================
   Hero
========================= */
.hero {
    padding: 80px 0 100px;
}

.hero-grid {
    position: relative;

    display: grid;
    grid-template-columns: 42% 58%;

    align-items: center;

    min-height: 720px;

    width: 100%;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.4rem, 6vw, 5.8rem);
    line-height: .96;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.05em;
    max-width: 760px;
}

.hero-subtitle {
    margin: 0 0 32px;
    max-width: 620px;
    color: var(--gray);
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================
   Botones
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--dark);
    background: var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary);
}

/* =========================
   Hero Media
========================= */
.hero-media img,
.hero-placeholder {
    width: 100%;
    border-radius: 24px;
}

.hero-placeholder {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: linear-gradient(135deg, #111111, #1F2937);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

/* =========================
   Hero Visual Final
========================= */

.hero-grid {
    position: relative;

    display: grid;
    grid-template-columns: 42% 58%;

    align-items: center;

    min-height: 720px;

    width: 100%;
}

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 720px;

    padding-left: 120px;
    padding-right: 40px;
}

.hero-media {
    position: relative;

    height: 720px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-floating-card {
    position: absolute;

    left: -80px;
    bottom: 48px;

    z-index: 10;

    padding: 28px 34px;

    background: rgba(255,255,255,.96);

    border-radius: 28px;

    box-shadow:
        0 24px 80px rgba(0,0,0,.12);

    max-width: 340px;
}

.hero-floating-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: .82rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-floating-card strong {
    display: block;

    color: var(--dark);

    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 900px) {

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

    .hero-content {
        padding:
            60px 24px 30px;
    }

    .hero-media {
        height: 420px;
    }

    .hero-floating-card {
        left: 24px;
        bottom: 24px;

        max-width: 260px;
    }

}

/* =========================
   Premium Hero Upgrade
========================= */

.hero-slide {
    background: transparent !important;
}

.hero-slide.is-active {
    display: flex;
    align-items: center;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;
    margin-bottom: 28px;

    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);

    border-radius: 999px;

    color: rgba(255,255,255,.88);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;

    border-radius: 999px;
    background: #00FFA3;

    box-shadow: 0 0 12px rgba(0,255,163,.8);
}

.hero-title {
    max-width: 760px;

    margin: 0 0 24px;

    color: var(--white) !important;

    font-size: clamp(3.4rem, 6vw, 5.8rem) !important;
    line-height: .96 !important;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.hero-subtitle {
    max-width: 620px;

    margin-bottom: 38px !important;

    color: rgba(255,255,255,.72) !important;

    font-size: 1.12rem;
    line-height: 1.6;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-bottom: 42px;
}

.hero-trust-item {
    min-width: 180px;

    padding: 18px 20px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    backdrop-filter: blur(12px);
}

.hero-trust-item strong {
    display: block;
    margin-bottom: 8px;

    color: var(--white);
    font-size: .96rem;
}

.hero-trust-item span {
    color: rgba(255,255,255,.62);
    font-size: .88rem;
    line-height: 1.5;
}

.hero-actions {
    gap: 18px;
}

.hero-primary-btn {
    padding-inline: 34px !important;
    height: 58px;

    border-radius: 16px !important;

    font-size: .98rem;
    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0,255,163,.18);
}

.hero-secondary-btn {
    height: 58px;

    padding-inline: 30px !important;

    border-radius: 16px !important;

    background: rgba(255,255,255,.06) !important;

    border: 1px solid rgba(255,255,255,.12) !important;

    color: var(--white) !important;

    backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
    background: rgba(255,255,255,.12) !important;
}

.hero-media {
    position: relative;

    height: 720px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-media,
.visual-slide {
    overflow: hidden;
}

.hero-media img,
.hero-placeholder {
    border-radius: 0px !important;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

    overflow: hidden;
}

.hero-media::before {
    content: "";

    position: absolute;

    inset: -30px;

    background:
        radial-gradient(circle, rgba(0,255,163,.12), transparent 70%);

    z-index: -1;

    filter: blur(40px);
}

.hero-slider-dots {
    bottom: 38px;
}

.hero-slider-dots button {
    width: 12px;
    height: 12px;

    background: rgba(255,255,255,.22);

    transition:
        width .25s ease,
        background .25s ease;
}

.hero-slider-dots button.is-active {
    width: 34px;
    background: #00FFA3;
}

/* =========================
   Mobile Premium Hero
========================= */

@media (max-width: 900px) {

    .hero-slider,
    .hero-slider .hero-grid,
    .visual-slide,
    .visual-slide-content {
        min-height: auto;
    }

    .hero-slider .hero-grid {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 4rem) !important;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: column;
    }

    .hero-trust-item {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-media {
        order: -1;
    }

    .hero-media img,
    .hero-placeholder {
        border-radius: 26px !important;
    }

    .visual-slide-content {
        padding-bottom: 140px;
    }

}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-placeholder {
        min-height: 280px;
    }
}

/* =========================
   Services
========================= */
.services-section {
    padding: 90px 0;
    background: var(--bg);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-heading h2 {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--dark);
}

.section-heading p {
    margin: 0;
    color: var(--gray);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.08);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--dark);
}

.service-card-content p {
    margin: 0;
    color: var(--gray);
}

.empty-message {
    color: var(--gray);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Brands
========================= */
.brands-section {
    padding: 90px 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.brand-card {
    min-height: 180px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
}

.brand-card img {
    max-height: 70px;
    width: auto;
    margin-bottom: 18px;
}

.brand-card h3 {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
}

.brand-card p {
    margin: 0;
    color: var(--gray);
}

/* =========================
   Installations
========================= */
.installations-section {
    padding: 90px 0;
    background: var(--bg);
}

.installations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.installation-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
}

.installation-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.installation-card-content {
    padding: 22px;
}

.installation-card-content h3 {
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
}

.installation-card-content p {
    margin: 0 0 10px;
    color: var(--gray);
}

.installation-card-content span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(122, 207, 0, 0.12);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .brands-grid,
    .installations-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   Page Hero
========================= */
.page-hero {
    padding: 80px 0 56px;
    background: var(--bg);
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--gray);
    font-size: 1.1rem;
}

/* =========================
   Catalog
========================= */
.catalog-section {
    padding: 70px 0 100px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
}

.product-card img,
.product-placeholder {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111111, #1F2937);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.product-card-content {
    padding: 24px;
}

.product-card-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.product-card-content h2 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
}

.product-card-content h2 a {
    color: var(--dark);
    text-decoration: none;
}

.product-card-content p {
    margin: 0 0 18px;
    color: var(--gray);
}

.text-link {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
}

/* =========================
   Product Detail
========================= */
.product-detail {
    padding: 80px 0 110px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.product-main-image,
.product-placeholder.large {
    width: 100%;
    min-height: 480px;
    border-radius: 24px;
    object-fit: cover;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.product-thumbs img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.product-info h1 {
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.product-short-description {
    margin: 0 0 28px;
    color: var(--gray);
    font-size: 1.1rem;
}

.product-description {
    margin-bottom: 32px;
    color: var(--gray);
}

.product-attributes {
    margin: 32px 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.product-attributes h2 {
    margin: 0;
    padding: 18px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    background: var(--bg);
}

.attribute-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

.attribute-row span {
    color: var(--gray);
    text-align: right;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 900px) {
    .catalog-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-main-image,
    .product-placeholder.large {
        min-height: 320px;
    }
}

/* =========================
   Landing pages
========================= */
.landing-hero {
    padding: 80px 0 90px;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.landing-hero h1 {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
}

.landing-hero p {
    margin: 0 0 30px;
    color: var(--gray);
    font-size: 1.1rem;
}

.landing-hero img {
    width: 100%;
    border-radius: 24px;
}

.landing-content-section {
    padding: 80px 0;
    background: var(--bg);
}

.landing-content {
    max-width: 860px;
    color: var(--gray);
    font-size: 1.08rem;
}

.landing-content p {
    margin: 0 0 18px;
}

@media (max-width: 900px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* =========================
   Solutions Section
========================= */

.solutions-section {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #F8FAFC 0%,
            #FFFFFF 100%
        );
}

.solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;

    margin-top: 54px;
}

.solution-card {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 30px;

    text-decoration: none;

    background: #111111;

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.solution-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 35px 70px rgba(0,0,0,.14);
}

.solution-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.solution-card:hover img {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08),
            rgba(0,0,0,.68)
        );
}

.solution-content {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 34px;

    z-index: 2;
}

.solution-label {
    display: inline-flex;

    margin-bottom: 16px;
    padding: 10px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.14);

    backdrop-filter: blur(8px);

    color: rgba(255,255,255,.88);

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.solution-content h3 {
    margin: 0 0 14px;

    color: var(--white);

    font-family: 'Montserrat', sans-serif;

    font-size: 2rem;
    line-height: 1.1;
}

.solution-content p {
    margin: 0 0 22px;

    color: rgba(255,255,255,.72);

    line-height: 1.6;
}

.solution-link {
    color: var(--white);

    font-weight: 600;
}

@media (max-width: 900px) {

    .solutions-section {
        padding: 84px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 440px;
    }

    .solution-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .solution-content h3 {
        font-size: 1.6rem;
    }

}

/* =========================
   Installations Showcase
========================= */

.installations-section {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );
}

.installations-showcase {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    margin-top: 54px;
}

.installation-showcase-card {
    overflow: hidden;

    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 20px 50px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.installation-showcase-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.10);
}

.installation-image-wrapper {
    position: relative;

    height: 340px;

    overflow: hidden;
}

.installation-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.installation-showcase-card:hover img {
    transform: scale(1.05);
}

.installation-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.18)
        );
}

.installation-showcase-content {
    padding: 28px;
}

.installation-type {
    display: inline-flex;

    margin-bottom: 16px;
    padding: 10px 14px;

    border-radius: 999px;

    background: rgba(0,0,0,.05);

    color: var(--dark);

    font-size: .78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.installation-showcase-content h3 {
    margin: 0 0 12px;

    color: var(--dark);

    font-family: 'Montserrat', sans-serif;

    font-size: 1.45rem;
    line-height: 1.2;
}

.installation-showcase-content p {
    margin: 0;

    color: var(--gray);
}

@media (max-width: 900px) {

    .installations-section {
        padding: 84px 0;
    }

    .installations-showcase {
        grid-template-columns: 1fr;
    }

    .installation-image-wrapper {
        height: 280px;
    }

}

/* =========================
   Process Section
========================= */

.process-section {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #F8FAFC 0%,
            #FFFFFF 100%
        );
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    margin-top: 54px;
}

.process-card {
    padding: 42px;

    border-radius: 30px;

    background: var(--white);

    box-shadow:
        0 20px 50px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.process-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.10);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin-bottom: 26px;

    border-radius: 20px;

    background: var(--primary);

    color: var(--dark);

    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-card h3 {
    margin: 0 0 18px;

    color: var(--dark);

    font-family: 'Montserrat', sans-serif;

    font-size: 1.45rem;
    line-height: 1.2;
}

.process-card p {
    margin: 0;

    color: var(--gray);

    line-height: 1.7;
}

.process-cta {
    display: flex;
    justify-content: center;

    margin-top: 54px;
}

@media (max-width: 900px) {

    .process-section {
        padding: 84px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 32px;
    }

}

/* =========================
   Final CTA
========================= */

.final-cta-section {
    padding: 110px 0 130px;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );
}

.final-cta-card {
    position: relative;

    overflow: hidden;

    padding: 90px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #111111 0%,
            #1B1B1B 100%
        );

    box-shadow:
        0 40px 100px rgba(0,0,0,.18);
}

.final-cta-card::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 320px;
    height: 320px;

    border-radius: 999px;

    background:
        radial-gradient(
            circle,
            rgba(255,193,7,.18),
            transparent 70%
        );
}

.final-cta-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
}

.final-cta-content .eyebrow {
    color: rgba(255,255,255,.72);
}

.final-cta-content h2 {
    margin: 0 0 24px;

    color: var(--white);

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
}

.final-cta-content p {
    max-width: 620px;

    margin: 0 0 34px;

    color: rgba(255,255,255,.72);

    font-size: 1.1rem;
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {

    .final-cta-section {
        padding: 84px 0 100px;
    }

    .final-cta-card {
        padding: 42px 28px;
        border-radius: 28px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

}

/* =========================
   Footer
========================= */
.site-footer {
    padding: 64px 0;
    background: var(--dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    color: var(--white);
}

.site-footer p {
    max-width: 420px;
    color: rgba(255,255,255,.68);
}

.site-footer h3 {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   WhatsApp Lead Form
========================= */
.whatsapp-start-section {
    padding: 80px 0 110px;
    background: var(--bg);
}

.whatsapp-start-card {
    max-width: 640px;
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.whatsapp-start-card h1 {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.whatsapp-start-card p {
    margin: 0 0 28px;
    color: var(--gray);
}

.lead-form {
    display: grid;
    gap: 18px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
}

.lead-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font: inherit;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.public-approval-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(122, 207, 0, 0.14);
    border: 1px solid rgba(122, 207, 0, 0.35);
}

.public-approval-box strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}

.public-approval-box p {
    margin: 0;
    color: var(--gray);
}

/* =========================
   Footer map
========================= */
.footer-map {
    margin-top: 18px;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    position: relative;
}

.footer-map iframe {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    border: 0 !important;
    border-radius: 18px !important;
}

/* =========================
   Mobile navigation
========================= */
@media (max-width: 900px) {
    .container {
        width: min(100% - 32px, 1120px);
    }

    .header-inner {
        min-height: 72px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        padding: 18px 24px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 35px rgba(17,17,17,.08);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .nav-cta {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
        text-align: center;
        padding: 14px 18px !important;
    }

    .hero h1,
    .page-hero h1,
    .landing-hero h1 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .hero-actions,
    .product-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .site-footer {
        padding-bottom: 100px;
    }

}

/* =========================
   WhatsApp modal
========================= */
.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.wa-modal.is-open {
    display: block;
}

.wa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,.56);
    backdrop-filter: blur(4px);
}

.wa-modal-card {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin: 8vh auto 0;
    padding: 34px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0,0,0,.24);
}

.wa-modal-card h2 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
}

.wa-modal-card p {
    color: var(--gray);
}

.wa-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: var(--bg);
    color: var(--dark);
    font-size: 1.6rem;
    cursor: pointer;
}

.wa-form-error {
    margin: 0;
    color: #B91C1C;
    font-weight: 600;
}

@media (max-width: 600px) {
    .wa-modal-card {
        margin-top: 5vh;
        padding: 26px;
    }
}

/* =========================
   Floating WhatsApp Widget
========================= */
.wa-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 14px;
}

.wa-widget-message {
    display: flex;
    flex-direction: column;

    padding: 14px 18px;
    border-radius: 18px;

    background: rgba(17,17,17,.96);
    color: #ffffff;

    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    backdrop-filter: blur(14px);

    animation: waFloat 3s ease-in-out infinite;
}

.wa-widget-message strong {
    font-size: .95rem;
    line-height: 1.2;
}

.wa-widget-message span {
    margin-top: 4px;
    font-size: .82rem;
    color: rgba(255,255,255,.72);
}

.wa-widget-trigger {
    position: relative;

    width: 68px;
    height: 68px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    cursor: pointer;

    box-shadow: 0 18px 45px rgba(37,211,102,.34);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.wa-widget-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 55px rgba(37,211,102,.44);
}

.wa-widget-icon {
    width: 36px;
    height: 36px;
    fill: #ffffff;
    display: block;
    margin: 0;
    shape-rendering: geometricPrecision;
}

.wa-widget-pulse {
    position: absolute;
    inset: -6px;

    border-radius: 999px;
    border: 2px solid rgba(37,211,102,.42);

    animation: waPulse 2.4s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes waFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .wa-widget {
        right: 32px;
        bottom: 32px;
    }

    .wa-widget-message {
        display: none;
    }

    .wa-widget-trigger {
        width: 60px;
        height: 60px;
    }

    .wa-widget-icon {
        width: 34px;
        height: 34px;
    }
}

/* =========================
   Forms
========================= */
.form-section {
    padding: 70px 0 100px;
    background: var(--bg);
}

.form-card {
    max-width: 760px;
    padding: 40px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
}

.lead-form p {
    margin: 0 0 18px;
}

.lead-form p label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font: inherit;
    background: var(--white);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* =========================
   Search
========================= */

.header-search-form {
    display: flex;
    align-items: center;
}

.header-search-input {
    width: 240px;
    height: 44px;

    padding: 0 18px 0 42px;

    border: 1px solid rgba(0,0,0,.06);
    border-radius: 999px;

    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E")
        no-repeat 14px center,
        #f8f9fb;

    transition: all .25s ease;
}

.header-search-input:focus {
    outline: none;

    border-color: var(--primary-color);

    background: #ffffff;

    box-shadow: 0 0 0 4px rgba(132, 204, 22, .12);
}

.header-search-input::placeholder {
    color: #8a8f98;
}

.search-page-form {
    display: flex;
    gap: 12px;
    max-width: 760px;
    margin-top: 28px;
}

.search-page-form input {
    flex: 1;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font: inherit;
}

.search-page-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.results-title {
    margin: 40px 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
}

@media (max-width: 900px) {
    .header-search {
        width: 100%;
    }

    .header-search input {
        width: 100%;
    }

    .search-page-form {
        flex-direction: column;
    }
}

/* =========================
   Blog
========================= */
.blog-detail {
    padding: 80px 0 110px;
}

.blog-container {
    max-width: 860px;
}

.blog-container h1 {
    margin: 0 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
}

.blog-featured-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 24px;
    margin: 30px 0;
}

.blog-content {
    color: var(--gray);
    font-size: 1.08rem;
}

.blog-content p {
    margin: 0 0 20px;
}

/* =========================
   Hero Slider
========================= */
.hero-slider {
    position: relative;

    min-height: 720px;

    overflow: hidden;

    display: flex;
    align-items: stretch;

    background: white !important;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.hero-slide.is-active {
    position: absolute;
    inset: 0;

    opacity: 1;
    visibility: visible;

    z-index: 2;
}

.hero-slider .hero-grid {
    min-height: 720px;
    height: 720px;
}

.visual-slide {
    min-height: 720px;

    width: 100%;
    height: 100%;
}

.visual-slide picture {
    position: absolute;
    inset: 0;
}

.visual-slide picture,
.visual-slide img {
    display: block;

    width: 100%;
    height: 100%;
}

.visual-slide img {
    object-fit: cover;
}


.visual-slide-content {
    position: relative;
    z-index: 2;

    min-height: 620px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--white);
}

.visual-slide-content h2 {
    max-width: 760px;
    margin: 0 0 18px;

    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.04;
}

.visual-slide-content p {
    max-width: 620px;
    margin: 0;

    color: rgba(255,255,255,.78);
    font-size: 1.15rem;
}

.hero-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 26px;

    transform: translateX(-50%);

    display: flex;
    gap: 12px;

    z-index: 5;
}

.hero-slider-dots button {
    width: 10px;
    height: 10px;

    border: 0;
    border-radius: 999px;

    background: rgba(17,17,17,.25);
    cursor: pointer;
}

.visual-slide ~ .hero-slider-dots button,
.hero-slider-dots button {
    background: rgba(255,255,255,.45);
}

.hero-slider-dots button.is-active {
    width: 26px;
    background: var(--primary);
}

@media (max-width: 900px) {
    .hero-slider,
    .hero-slider .hero-grid,
    .visual-slide,
    .visual-slide-content {
        min-height: 680px;
    }

    .hero-slider .hero-grid {
        padding-top: 44px;
        padding-bottom: 82px;
    }

    .visual-slide-content {
        justify-content: flex-end;
        padding-bottom: 110px;
    }
}

/* =========================
   About
========================= */

.about-team-photo {
    padding: 20px 0 60px;
}

.about-team-photo .container {
    display: flex;
    justify-content: center;
}

.about-team-image {
    width: 100%;
    max-width: 900px;
    height: auto;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.about-section {
    padding: 100px 0 120px;
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    margin: 0 0 24px;

    color: var(--dark);

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.08;
}

.about-cta {
    padding: 80px 0;
}

.about-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;

    text-align: center;

    background: linear-gradient(
        135deg,
        #050505 0%,
        #101010 100%
    );

    border-radius: 32px;

    color: #fff;
}

.about-cta-card .eyebrow {
    color: var(--primary);
}

.about-cta-card h2 {
    color: #fff;
    margin-bottom: 16px;
}

.about-cta-card p {
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
}

.about-cta-card .btn {
    margin: 0 auto;
}

.about-content p {
    margin: 0 0 22px;

    color: var(--gray);

    font-size: 1.08rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-highlight {
    padding: 24px;

    border-radius: 24px;

    background: #F8FAFC;
}

.about-highlight strong {
    display: block;

    margin-bottom: 10px;

    color: var(--dark);
}

.about-highlight span {
    color: var(--gray);

    font-size: .92rem;
}

.about-card {
    padding: 42px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #111111,
            #1B1B1B
        );

    color: var(--white);

    box-shadow:
        0 30px 80px rgba(0,0,0,.14);
}

.about-card h3 {
    margin: 0 0 18px;

    font-family: 'Montserrat', sans-serif;

    font-size: 2rem;
    line-height: 1.15;
}

.about-card p {
    margin: 0 0 28px;

    color: rgba(255,255,255,.72);

    line-height: 1.7;
}

@media (max-width: 900px) {

    .about-section {
        padding: 84px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 32px;
    }

}

/* =========================
   Team Section
========================= */

.team-section {
    padding: 0 0 120px;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    overflow: hidden;

    border-radius: 30px;

    background: var(--white);

    box-shadow:
        0 20px 50px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.team-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.10);
}

.team-photo {
    height: 280px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover img {
    transform: scale(1.04);
}

.team-content {
    padding: 30px;
}

.team-content h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-family: 'Montserrat', sans-serif;

    font-size: 1.5rem;
}

.team-role {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: .92rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.team-content p {
    margin: 0 0 22px;

    color: var(--gray);

    line-height: 1.7;
}

.team-link {
    color: var(--dark);

    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 900px) {

    .team-section {
        padding-bottom: 84px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-photo {
        height: 300px;
    }

}

.hero-link {
    display: inline-flex;
    align-items: center;

    color: var(--dark);

    font-weight: 600;

    text-decoration: none;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.hero-link:hover {
    opacity: .7;
    transform: translateX(2px);
}

.hero-slide {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   PRECOTIZACION SUCCESS
========================================== */

.attribute-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.attribute-row strong{
    color:#1f2937;
}

.attribute-row span{
    text-align:right;
    color:#6b7280;
}

.estimated-total{
    margin-top:24px;
    padding:32px;
    border-radius:18px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    text-align:center;
}

.estimated-label{
    font-size:.85rem;
    font-weight:700;
    letter-spacing:.08em;
    color:#6b7280;
}

.estimated-amount{
    font-size:3rem;
    line-height:1;
    font-weight:800;
    color:#111827;
    margin:12px 0;
}

.estimated-tax{
    color:#6b7280;
    font-size:.9rem;
}

.pricing-disclaimer{
    margin-top:20px;
    padding:18px;
    border-radius:12px;
    background:#fff8e6;
    border:1px solid #fde68a;
    color:#92400e;
    font-size:.92rem;
    line-height:1.6;
}

.steps-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin:24px 0;
}

.step-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
}

.step-number{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#84cc16;
    color:white;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.step-item strong{
    display:block;
    margin-bottom:4px;
}

.step-item p{
    margin:0;
    color:#6b7280;
}

.prequote-actions{
    display:flex;
    gap:12px;
    margin-top:24px;
    flex-wrap:wrap;
}

.btn-secondary{
    background:#fff;
    color:#111827;
    border:1px solid #d1d5db;
}

.btn-secondary:hover{
    background:#f9fafb;
}

@media (max-width:768px){

    .attribute-row{
        flex-direction:column;
        gap:4px;
    }

    .attribute-row span{
        text-align:left;
    }

    .estimated-amount{
        font-size:2rem;
    }

    .prequote-actions{
        flex-direction:column;
    }

    .prequote-actions .btn{
        width:100%;
    }
}

/* ==========================================
   SERVICE CATEGORY SECTIONS
========================================== */

.service-section-card{
    max-width:1100px;
    margin:0 auto 60px auto;
}

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

.section-description{
    max-width:700px;
    margin:20px auto 0;
    color:#6b7280;
    line-height:1.8;
}

.service-section-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;

    margin-bottom:60px;
}

.service-section-card:nth-child(even)
.service-section-image{
    order:2;
}

.service-section-card:nth-child(even)
.service-section-content{
    order:1;
}

.service-section-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.section-badge{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    background:#8dc63f;
    color:#fff;

    font-weight:700;
    margin-bottom:16px;
}

.service-section-content h3{
    margin-bottom:10px;
}

.service-section-content h4{
    color:#6b7280;
    margin-bottom:16px;
}

.service-section-content p{
    line-height:1.8;
}

@media(max-width:992px){

    .service-section-card{
        grid-template-columns:1fr;
        gap:25px;
    }

    .service-section-card:nth-child(even)
    .service-section-image{
        order:1;
    }

    .service-section-card:nth-child(even)
    .service-section-content{
        order:2;
    }

}

.installations-swiper{
    overflow:hidden;
    padding:10px 0 50px;
}

.installations-swiper .swiper-slide{
    height:auto;
}

.installation-showcase-card{
    height:100%;
}

.installations-swiper .swiper-pagination{
    position:relative;
    margin-top:25px;
}

.installations-swiper{
    padding-bottom:60px;
}

.installations-swiper .swiper-wrapper{
    align-items:stretch;
}

.installations-swiper .swiper-slide{
    height:auto;
}

.installations-swiper .installation-showcase-card{
    height:100%;
}

.installations-swiper .swiper-pagination{
    margin-top:35px;
}

.installations-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.installations-swiper{
    overflow:hidden;
}

.installations-swiper .swiper-slide{
    height:auto;
}

@media (max-width:991px){

    .installations-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .installations-grid{
        grid-template-columns:1fr;
    }

}