﻿:root {
    --background: #02090d;
    --surface: #07151b;
    --text: #ffffff;
    --muted: #b8c2c6;
    --green: #62d920;
    --green-dark: #2a8e0c;
    --border: #24373f;
    --header: rgba(2, 9, 13, 0.97);
}


/* =========================================================
   MODO CLARO
   ========================================================= */

body.light-theme {
    --background: #f5f7f8;
    --surface: #ffffff;
    --text: #172126;
    --muted: #526169;
    --border: #ccd7db;
    --header: rgba(255, 255, 255, 0.97);
}


/* =========================================================
   CONFIGURACIÓN GENERAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family: Arial, Helvetica, sans-serif;
    transition: color 0.35s ease, background-color 0.35s ease;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    visibility: hidden;
    background: var(--background);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-transition.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.page-transition-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid var(--border);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: page-transition-spin 0.7s linear infinite;
}

@keyframes page-transition-spin {
    to {
        transform: rotate(360deg);
    }
}

a {
    text-decoration: none;
}

.page-container {
    width: min(90%, 1700px);
    margin: 0 auto;
}


/* =========================================================
   BARRA DE NAVEGACIÓN
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(15px);
    transition: background-color 0.35s ease, border-color 0.35s ease;
}

.site-navbar {
    width: min(94%, 1800px);
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0 auto;
}


/* MARCA */

.company-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
}

    .company-brand:hover {
        color: var(--text);
    }

.brand-mark {
    width: 78px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-mark img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        filter: drop-shadow( 0 0 5px rgba(98, 217, 32, 0.25) );
    }

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-name strong {
        color: var(--text);
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 4px;
    }

    .brand-name small {
        margin-top: 8px;
        color: var(--green);
        font-size: 14px;
        letter-spacing: 7px;
    }


/* NAVEGACIÓN */

.main-navigation {
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 37px;
}

.navigation-link {
    position: relative;
    padding: 14px 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease;
}

    .navigation-link::after {
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        height: 2px;
        content: "";
        background: var(--green);
        transform: scaleX(0);
        transition: transform 0.25s ease;
    }

    .navigation-link:hover,
    .navigation-link.active {
        color: var(--green);
    }

        .navigation-link:hover::after,
        .navigation-link.active::after {
            transform: scaleX(1);
        }


/* BOTÓN COTIZAR */

.navbar-quote {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    color: var(--text);
    border: 1px solid var(--green);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

    .navbar-quote span {
        margin-left: 13px;
        color: var(--green);
        font-size: 20px;
        transition: transform 0.25s ease;
    }

    .navbar-quote:hover {
        color: var(--text);
        background: rgba(98, 217, 32, 0.1);
        box-shadow: 0 0 22px rgba(98, 217, 32, 0.25);
        transform: translateY(-3px);
    }

        .navbar-quote:hover span {
            transform: translateX(6px);
        }


/* BOTÓN TEMA */

.theme-button {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

    .theme-button:hover {
        background: rgba(98, 217, 32, 0.1);
        border-color: var(--green);
        transform: rotate(-18deg);
    }


/* MENÚ MÓVIL */

.mobile-menu-button {
    display: none;
    margin-left: auto;
    padding: 7px 13px;
    color: var(--green);
    background: transparent;
    border: 1px solid var(--green);
    border-radius: 6px;
    font-size: 24px;
}


/* =========================================================
   PORTADA
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 76% 40%, rgba(50, 178, 24, 0.13), transparent 31% ), var(--background);
    transition: background-color 0.35s ease;
}

body.light-theme .hero-section {
    background: radial-gradient( circle at 76% 40%, rgba(98, 217, 32, 0.13), transparent 31% ), #f5f7f8;
}

.hero-container {
    min-height: 670px;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 55px;
    padding: 55px 0 65px;
}

.hero-label {
    margin: 0 0 16px;
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
}

.hero-information h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(43px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.1;
}

    .hero-information h1 span {
        color: var(--green);
    }

.hero-description {
    max-width: 610px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
}


/* BOTÓN COTIZAR PORTADA */

.quote-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 25px;
    color: white;
    background: linear-gradient( 135deg, #327c12, var(--green) );
    border: 1px solid #84ec47;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .quote-button::before {
        position: absolute;
        top: 0;
        left: -100%;
        width: 55%;
        height: 100%;
        content: "";
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.45), transparent );
        transform: skewX(-25deg);
        transition: left 0.55s ease;
    }

    .quote-button:hover {
        color: white;
        box-shadow: 0 12px 28px rgba(46, 139, 13, 0.35), 0 0 24px rgba(98, 217, 32, 0.25);
        transform: translateY(-4px);
    }

        .quote-button:hover::before {
            left: 150%;
        }

    .quote-button strong {
        font-size: 20px;
        transition: transform 0.25s ease;
    }

    .quote-button:hover strong {
        transform: translateX(6px);
    }


/* BOTÓN PRESENTACIÓN */

.presentation-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 7px 10px;
    color: var(--text);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.play-button {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    color: var(--text);
    border: 1px solid var(--green);
    border-radius: 50%;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.presentation-button:hover {
    color: var(--green);
    background: rgba(98, 217, 32, 0.07);
    transform: translateY(-3px);
}

    .presentation-button:hover .play-button {
        color: #071015;
        background: var(--green);
        transform: scale(1.09);
    }


/* =========================================================
   COMPUTADORA TRANSPARENTE
   ========================================================= */

.hero-computer {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.computer-glow {
    position: absolute;
    inset: 15%;
    background: radial-gradient( circle, rgba(98, 217, 32, 0.18), transparent 68% );
    filter: blur(30px);
}

.computer-image {
    position: relative;
    z-index: 2;
    width: 112%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: drop-shadow( 0 28px 30px rgba(0, 0, 0, 0.35) );
}

body.light-theme .hero-computer {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

body.light-theme .computer-image {
    width: 112%;
    mix-blend-mode: normal;
    filter: drop-shadow( 0 25px 28px rgba(22, 38, 45, 0.2) );
}

body.light-theme .computer-glow {
    background: radial-gradient( circle, rgba(98, 217, 32, 0.13), transparent 70% );
}


/* =========================================================
   SERVICIOS EN LA PÁGINA PRINCIPAL
   ========================================================= */

.services-section {
    padding: 60px 0 85px;
    background: var(--background);
    transition: background-color 0.35s ease;
}

.section-heading {
    text-align: center;
}

    .section-heading p {
        margin: 0 0 5px;
        color: var(--green);
        font-size: 15px;
        font-weight: 700;
    }

    .section-heading h2 {
        margin: 0;
        color: var(--text);
        font-size: 38px;
        font-weight: 700;
    }

    .section-heading > span {
        display: block;
        margin-top: 9px;
        color: var(--muted);
        font-size: 16px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.service-card {
    padding: 31px 25px 27px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background-color 0.35s ease;
}

    .service-card:hover {
        border-color: var(--green);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(98, 217, 32, 0.1);
        transform: translateY(-7px);
    }

.service-icon {
    min-height: 62px;
    color: var(--green);
    font-size: 45px;
    font-weight: 600;
    transition: transform 0.25s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-card h3 {
    margin: 13px 0 11px;
    color: var(--text);
    font-size: 19px;
    font-weight: 700;
}

.service-card p {
    min-height: 95px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 16px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}

    .service-card a span {
        transition: transform 0.25s ease;
    }

    .service-card a:hover span {
        transform: translateX(6px);
    }


/* RESULTADOS / BENEFICIOS */

.results-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.35fr;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    padding: 22px 35px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: background-color 0.35s ease;
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.result-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: 50%;
    font-size: 25px;
}

.result-item strong,
.result-item span {
    display: block;
}

.result-item strong {
    color: var(--green);
    font-size: 29px;
}

.result-large strong {
    font-size: 23px;
}

.result-item span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
}

.result-separator {
    width: 1px;
    height: 58px;
    background: var(--border);
}


/* =========================================================
   PÁGINA NOSOTROS
   ========================================================= */

.about-page {
    position: relative;
    min-height: calc(100vh - 105px);
    overflow: hidden;
    padding: 90px 0 110px;
    background: radial-gradient( circle at 80% 25%, rgba(98, 217, 32, 0.10), transparent 30% ), var(--background);
    transition: background-color 0.35s ease;
}

.about-header {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-header h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.1;
}

    .about-header h1 span {
        color: var(--green);
    }

.about-header > p {
    max-width: 700px;
    margin: 25px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    padding: 15px 0;
}

    .about-text h2 {
        position: relative;
        margin: 0 0 25px;
        padding-bottom: 15px;
        color: var(--text);
        font-size: 34px;
        font-weight: 700;
    }

        .about-text h2::after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            content: "";
            background: var(--green);
            border-radius: 10px;
        }

    .about-text p {
        margin: 0 0 20px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
    }


/* TARJETA JOVARYN */

.about-card {
    position: relative;
    overflow: hidden;
    padding: 55px 45px;
    text-align: center;
    background: radial-gradient( circle at top, rgba(98, 217, 32, 0.13), transparent 55% ), var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25), 0 0 30px rgba(98, 217, 32, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.35s ease;
}

    .about-card:hover {
        border-color: var(--green);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.30), 0 0 35px rgba(98, 217, 32, 0.13);
        transform: translateY(-7px);
    }

    .about-card::before {
        position: absolute;
        top: 0;
        left: 50%;
        width: 65%;
        height: 2px;
        content: "";
        background: linear-gradient( 90deg, transparent, var(--green), transparent );
        transform: translateX(-50%);
    }


/* LOGO NOSOTROS */

.about-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

    .about-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow( 0 0 20px rgba(98, 217, 32, 0.28) );
        transition: transform 0.3s ease, filter 0.3s ease;
    }

.about-card:hover .about-logo img {
    transform: scale(1.06);
    filter: drop-shadow( 0 0 28px rgba(98, 217, 32, 0.45) );
}

.about-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-card > p {
    margin: 13px 0 0;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-card-line {
    width: 75px;
    height: 2px;
    margin: 27px auto;
    background: var(--green);
    border-radius: 20px;
}

.about-card > span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* VALORES */

.about-values {
    display: grid;
    gap: 18px;
    margin-top: 35px;
}

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #071015;
    background: var(--green);
    border-radius: 50%;
    font-weight: 700;
}

.about-value strong {
    display: block;
    color: var(--text);
    font-size: 17px;
}

.about-value p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}


/* MODO CLARO NOSOTROS */

body.light-theme .about-page {
    background: radial-gradient( circle at 80% 25%, rgba(98, 217, 32, 0.10), transparent 30% ), var(--background);
}

body.light-theme .about-card {
    box-shadow: 0 20px 45px rgba(22, 38, 45, 0.10), 0 0 25px rgba(98, 217, 32, 0.05);
}


/* =========================================================
   PÁGINA SERVICIOS
   ========================================================= */

.services-page {
    min-height: calc(100vh - 105px);
    padding: 90px 0 110px;
    background: radial-gradient( circle at 80% 20%, rgba(98, 217, 32, 0.07), transparent 30% ), var(--background);
}

.services-page-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

    .services-page-header h1 {
        margin: 0;
        color: var(--text);
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.1;
    }

        .services-page-header h1 span {
            color: var(--green);
        }

    .services-page-header p {
        max-width: 720px;
        margin: 25px auto 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
    }

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-detail-card {
    position: relative;
    overflow: hidden;
    padding: 40px 35px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .service-detail-card::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        content: "";
        background: linear-gradient( 90deg, transparent, var(--green), transparent );
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-detail-card:hover {
        border-color: var(--green);
        transform: translateY(-7px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 25px rgba(98, 217, 32, 0.09);
    }

        .service-detail-card:hover::before {
            opacity: 1;
        }

.service-detail-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    color: var(--green);
    background: rgba(98, 217, 32, 0.05);
    border: 2px solid var(--green);
    border-radius: 14px;
    font-size: 30px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(98, 217, 32, 0.16);
}

.service-detail-card h2 {
    margin: 0 0 15px;
    color: var(--text);
    font-size: 25px;
}

.service-detail-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.service-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}

    .service-more-button span {
        transition: transform 0.25s ease;
    }

    .service-more-button:hover {
        color: var(--green);
    }

        .service-more-button:hover span {
            transform: translateX(7px);
        }


/* =========================================================
   DETALLE DE SERVICIO
   ========================================================= */

.service-single-page {
    min-height: calc(100vh - 105px);
    padding: 80px 0 110px;
    background: radial-gradient( circle at 80% 20%, rgba(98, 217, 32, 0.08), transparent 30% ), var(--background);
}

.back-services {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 45px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease;
}

    .back-services:hover {
        color: var(--green);
        transform: translateX(-5px);
    }

.service-single-content {
    max-width: 900px;
}

    .service-single-content h1 {
        margin: 0;
        color: var(--text);
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.1;
    }

        .service-single-content h1 span {
            color: var(--green);
        }

    .service-single-content > div > p {
        margin: 25px 0;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.8;
    }

    .service-single-content h2 {
        margin-top: 45px;
        color: var(--text);
        font-size: 28px;
    }

.service-list {
    margin: 25px 0 35px;
    padding-left: 0;
    list-style: none;
}

    .service-list li {
        position: relative;
        margin-bottom: 13px;
        padding-left: 30px;
        color: var(--muted);
        font-size: 16px;
    }

        .service-list li::before {
            position: absolute;
            left: 0;
            content: "✓";
            color: var(--green);
            font-weight: 700;
        }


/* =========================================================
   DISEÑO RESPONSIVO
   ========================================================= */


/* COMPUTADORAS */

@media (min-width: 992px) {

    .main-navigation {
        display: flex !important;
    }
}


/* PANTALLAS MEDIANAS */

@media (max-width: 1250px) {

    .navigation-links {
        gap: 21px;
    }

    .main-navigation {
        gap: 21px;
    }

    .brand-name {
        display: none;
    }
}


/* TABLET */

@media (max-width: 991px) {

    .site-navbar {
        min-height: 85px;
        flex-wrap: wrap;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        width: 100%;
        padding: 20px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .navigation-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 18px;
    }

    .navbar-quote {
        margin-right: 12px;
    }


    /* PORTADA */

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-information {
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-computer {
        width: min(100%, 780px);
        margin: 0 auto;
    }


    /* SERVICIOS INICIO */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-container {
        grid-template-columns: 1fr;
    }

    .result-separator {
        width: 100%;
        height: 1px;
    }


    /* NOSOTROS */

    .about-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-text {
        max-width: 800px;
        margin: 0 auto;
    }

    .about-card {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }


    /* PÁGINA SERVICIOS */

    .services-page-grid {
        grid-template-columns: 1fr;
    }
}


/* CELULARES */

@media (max-width: 650px) {

    .page-container {
        width: 92%;
    }


    /* MARCA */

    .brand-name {
        display: flex;
    }

        .brand-name strong {
            font-size: 18px;
        }

        .brand-name small {
            font-size: 10px;
            letter-spacing: 4px;
        }

    .brand-mark {
        width: 58px;
        height: 62px;
    }


    /* PORTADA */

    .hero-information h1 {
        font-size: 41px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-computer {
        min-height: 400px;
    }

    .computer-image {
        width: 120%;
    }

    body.light-theme .computer-image {
        width: 120%;
    }


    /* SERVICIOS INICIO */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }


    /* NOSOTROS */

    .about-page {
        padding: 65px 0 80px;
    }

    .about-header {
        margin-bottom: 45px;
    }

        .about-header h1 {
            font-size: 39px;
        }

        .about-header > p {
            font-size: 16px;
        }

    .about-text h2 {
        font-size: 29px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-card {
        padding: 40px 25px;
    }

    .about-logo {
        width: 115px;
        height: 115px;
    }

    .about-card h3 {
        font-size: 25px;
    }

    .about-card > p {
        font-size: 12px;
        letter-spacing: 1px;
    }


    /* SERVICIOS */

    .services-page {
        padding: 65px 0 80px;
    }

    .services-page-header {
        margin-bottom: 40px;
    }

        .services-page-header h1 {
            font-size: 39px;
        }

        .services-page-header p {
            font-size: 16px;
        }

    .service-detail-card {
        padding: 32px 25px;
    }

        .service-detail-card h2 {
            font-size: 22px;
        }

    .service-single-page {
        padding: 60px 0 80px;
    }

    .service-single-content h1 {
        font-size: 38px;
    }

    .service-single-content > div > p {
        font-size: 16px;
    }
}
/* =========================================================
   PIE DE PÁGINA
   ========================================================= */

.site-footer {
    background: #080b0a;
    border-top: 1px solid rgba(74, 255, 71, 0.15);
    color: #ffffff;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 60px;
    padding-top: 70px;
    padding-bottom: 60px;
}


/* EMPRESA */

.footer-company {
    max-width: 360px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

    .footer-brand img {
        width: 65px;
        height: 65px;
        object-fit: contain;
    }

    .footer-brand div {
        display: flex;
        flex-direction: column;
    }

    .footer-brand strong {
        color: #ffffff;
        font-size: 24px;
        letter-spacing: 3px;
        line-height: 1;
    }

    .footer-brand span {
        color: #53e33b;
        font-size: 13px;
        letter-spacing: 6px;
        margin-top: 5px;
    }

.footer-company p {
    color: #9ca3a0;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* COLUMNAS */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-column h3 {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 22px;
    }

        .footer-column h3::after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            background: #53e33b;
            margin-top: 9px;
        }

    .footer-column a {
        color: #929a96;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 13px;
        transition: 0.25s ease;
    }

        .footer-column a:hover {
            color: #53e33b;
            transform: translateX(4px);
        }


/* PARTE INFERIOR */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    min-height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: #737b77;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

    .footer-legal a {
        color: #737b77;
        font-size: 13px;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .footer-legal a:hover {
            color: #53e33b;
        }


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}


@media (max-width: 650px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 50px;
        padding-bottom: 45px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .footer-legal {
        justify-content: center;
    }
}
/* =========================================================
   PÁGINA TECNOLOGÍAS
   ========================================================= */

.technologies-page {
    min-height: 100vh;
    padding: 110px 0 90px;
    background: radial-gradient( circle at 80% 15%, rgba(98, 217, 32, 0.08), transparent 28% ), var(--background);
    transition: background-color 0.35s ease, color 0.35s ease;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.technologies-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

    .technologies-header h1 {
        margin: 15px 0 20px;
        color: var(--text);
        font-size: clamp(38px, 5vw, 65px);
        font-weight: 800;
        line-height: 1.05;
        transition: color 0.35s ease;
    }

        .technologies-header h1 span {
            color: var(--green);
        }

    .technologies-header p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
        transition: color 0.35s ease;
    }


/* =========================================================
   CUADRÍCULA PRINCIPAL
   ========================================================= */

.technology-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.technology-category {
    padding: 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.35s ease;
}

    .technology-category:hover {
        border-color: var(--green);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18), 0 0 25px rgba(98, 217, 32, 0.08);
        transform: translateY(-5px);
    }


/* ICONO DE CADA CATEGORÍA */

.technology-category-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--green);
    background: rgba(98, 217, 32, 0.08);
    border: 1px solid rgba(98, 217, 32, 0.35);
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
}


/* TÍTULOS */

.technology-category h2 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 23px;
    font-weight: 700;
    transition: color 0.35s ease;
}


/* DESCRIPCIÓN */

.technology-category > p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    transition: color 0.35s ease;
}


/* =========================================================
   TECNOLOGÍAS INDIVIDUALES
   ========================================================= */

.technology-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.technology-item {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .technology-item:hover {
        background: rgba(98, 217, 32, 0.06);
        border-color: rgba(98, 217, 32, 0.45);
        transform: translateY(-2px);
    }


/* CUADRITO DEL LOGO */

.technology-symbol {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: rgba(98, 217, 32, 0.10);
    border: 1px solid rgba(98, 217, 32, 0.15);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}


/* NOMBRE DE TECNOLOGÍA */

.technology-item strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.35s ease;
}


/* =========================================================
   SECCIÓN FINAL / CTA
   ========================================================= */

.technologies-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    padding: 45px;
    background: linear-gradient( 120deg, rgba(98, 217, 32, 0.07), transparent ), var(--surface);
    border: 1px solid rgba(98, 217, 32, 0.18);
    border-radius: 18px;
    transition: background-color 0.35s ease, border-color 0.35s ease;
}

    .technologies-cta > div {
        max-width: 680px;
    }

    .technologies-cta h2 {
        margin: 10px 0 12px;
        color: var(--text);
        font-size: 30px;
        font-weight: 700;
        transition: color 0.35s ease;
    }

        .technologies-cta h2 span {
            color: var(--green);
        }

    .technologies-cta p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
        transition: color 0.35s ease;
    }


/* =========================================================
   AJUSTES ESPECÍFICOS PARA MODO CLARO
   ========================================================= */

body.light-theme .technologies-page {
    background: radial-gradient( circle at 80% 15%, rgba(98, 217, 32, 0.10), transparent 28% ), var(--background);
}

body.light-theme .technology-category {
    box-shadow: 0 10px 30px rgba(22, 38, 45, 0.06);
}

    body.light-theme .technology-category:hover {
        box-shadow: 0 15px 40px rgba(22, 38, 45, 0.10), 0 0 20px rgba(98, 217, 32, 0.08);
    }

body.light-theme .technology-item {
    background: #f7f9f9;
}

    body.light-theme .technology-item:hover {
        background: rgba(98, 217, 32, 0.07);
    }


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .technology-categories {
        grid-template-columns: 1fr;
    }

    .technologies-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 500px) {

    .technologies-page {
        padding: 80px 0 60px;
    }

    .technology-category {
        padding: 25px;
    }

    .technology-list {
        grid-template-columns: 1fr;
    }

    .technologies-cta {
        padding: 30px 25px;
    }
}
/* =========================================================
   PÁGINA CONTACTO
   ========================================================= */

.contact-page {
    min-height: calc(100vh - 105px);
    padding: 95px 0 110px;
    background: radial-gradient( circle at 80% 15%, rgba(98, 217, 32, 0.08), transparent 30% ), var(--background);
}


/* ENCABEZADO */

.contact-header {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

    .contact-header h1 {
        margin: 10px 0 20px;
        color: var(--text);
        font-size: clamp(42px, 5vw, 64px);
        font-weight: 800;
        line-height: 1.08;
    }

        .contact-header h1 span {
            color: var(--green);
        }

    .contact-header p {
        max-width: 720px;
        margin: 0 auto;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
    }


/* DISTRIBUCIÓN */

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}


/* INFORMACIÓN */

.contact-information {
    padding-top: 20px;
}

    .contact-information h2 {
        max-width: 550px;
        margin: 12px 0 20px;
        color: var(--text);
        font-size: 35px;
        line-height: 1.2;
    }

    .contact-information > p {
        max-width: 590px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.8;
    }


/* BENEFICIOS */

.contact-benefits {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.contact-benefit {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.contact-benefit-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #071015;
    background: var(--green);
    border-radius: 50%;
    font-weight: 800;
}

.contact-benefit strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 17px;
}

.contact-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}


/* TARJETA DEL FORMULARIO */

.contact-form-card {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.20);
    transition: background-color 0.35s ease, border-color 0.35s ease;
}

    .contact-form-card h2 {
        margin: 0;
        color: var(--text);
        font-size: 28px;
    }

.contact-form-description {
    margin: 10px 0 30px;
    color: var(--muted);
}


/* FORMULARIO */

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--text);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.35s ease;
}

.form-group textarea {
    resize: vertical;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(98, 217, 32, 0.10);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--muted);
    }


/* SELECT EN MODO OSCURO */

.form-group select option {
    color: var(--text);
    background: var(--surface);
}


/* BOTÓN ENVIAR */

.contact-submit-button {
    position: relative;
    overflow: hidden;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    color: #ffffff;
    background: linear-gradient( 135deg, var(--green-dark), var(--green) );
    border: 1px solid #84ec47;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .contact-submit-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 13px 30px rgba(98, 217, 32, 0.22);
    }

    .contact-submit-button strong {
        font-size: 20px;
        transition: transform 0.25s ease;
    }

    .contact-submit-button:hover strong {
        transform: translateX(6px);
    }


/* MODO CLARO */

body.light-theme .contact-form-card {
    box-shadow: 0 20px 45px rgba(22, 38, 45, 0.08);
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: #f7f9f9;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    .contact-page {
        padding: 65px 0 80px;
    }

    .contact-header h1 {
        font-size: 39px;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }
}

/* =========================================================
   AJUSTES DE PRODUCCIÓN: ACCESIBILIDAD, NAVEGACIÓN Y LEGAL
   ========================================================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 12px 16px;
    color: #ffffff;
    background: #23670a;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.main-navigation {
    display: flex;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px #23670a;
}

body.light-theme {
    --green: #2a7a0c;
    --green-dark: #23670a;
}

.quote-button,
.contact-submit-button {
    color: #ffffff;
    background: linear-gradient(135deg, #23670a, #2a7a0c);
}

.quote-button:hover,
.contact-submit-button:hover {
    color: #ffffff;
}

.footer-column h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-whatsapp {
    display: inline-flex;
    margin-top: 12px;
    color: #53e33b;
    font-weight: 700;
}

.footer-whatsapp:hover {
    color: #ffffff;
}

.home-cta {
    margin-bottom: 10px;
}

.form-privacy-note {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.form-privacy-note a,
.privacy-card a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-status {
    min-height: 24px;
    margin: 18px 0 0;
    color: var(--green);
    font-size: 14px;
    line-height: 1.6;
}

.privacy-page,
.error-page {
    min-height: 70vh;
    padding: 95px 0;
    background: radial-gradient(circle at 80% 10%, rgba(98, 217, 32, 0.08), transparent 28%), var(--background);
}

.privacy-container {
    max-width: 1050px;
}

.privacy-container > h1,
.error-page h1 {
    margin: 16px 0 12px;
    color: var(--text);
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.08;
}

.privacy-container > h1 span {
    color: var(--green);
}

.privacy-updated {
    margin: 0 0 35px;
    color: var(--muted);
}

.privacy-card {
    padding: clamp(28px, 5vw, 55px);
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.privacy-card h2 {
    margin: 34px 0 10px;
    color: var(--text);
    font-size: 22px;
}

.privacy-card h2:first-child {
    margin-top: 0;
}

.privacy-card p {
    margin: 0;
    line-height: 1.8;
}

.error-page-content {
    max-width: 850px;
    text-align: center;
}

.error-page-content p {
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }

    .main-navigation.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .main-navigation .theme-button {
        margin-top: 15px;
    }
}

@media (max-width: 650px) {
    .privacy-page,
    .error-page {
        padding: 65px 0;
    }

    .form-privacy-note {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
