/* =========================================================
   VARIABLES
========================================================= */

:root {

    --primary: #e6a21a;
    --primary-dark: #c88708;

    --dark: #111315;
    --dark-2: #181b1e;
    --dark-3: #222629;

    --light: #f5f5f5;
    --white: #ffffff;

    --text: #333333;
    --text-light: #aeb3b7;

    --transition: all 0.3s ease;

}


/* =========================================================
   RESET GENERAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

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

    color: var(--text);

    background: var(--white);

}

h1,
h2,
h3,
h4,
h5,
h6 {

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

}


/* =========================================================
   NAVBAR
========================================================= */

#mainNavbar {

    padding: 18px 0;

    background: rgba(15, 17, 18, 0.92);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: var(--transition);

    z-index: 1000;

}


/* Cuando hagamos scroll */

#mainNavbar.scrolled {

    padding: 11px 0;

    background: rgba(12, 14, 15, 0.98);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);

}


/* =========================================================
   BRAND
========================================================= */

.navbar-brand {

    color: var(--white) !important;

    text-decoration: none;

}

.brand-wrapper {

    display: flex;

    align-items: center;

    gap: 12px;

}

.brand-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: var(--dark);

    font-size: 21px;

    border-radius: 4px;

}

.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}

.brand-name {

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

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.2px;

}

.brand-subtitle {

    margin-top: 4px;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #aeb3b7;

}


/* =========================================================
   NAV LINKS
========================================================= */

.navbar-nav {

    gap: 4px;

}

.nav-link {

    position: relative;

    padding: 10px 13px !important;

    /* Texto más blanco para mayor contraste */
    color: rgba(255, 255, 255, 0.88) !important;

    /* Antes era 13px */
    font-size: 15px;

    font-weight: 500;

    transition: var(--transition);
}

.nav-link:hover {

    color: var(--white) !important;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 3px;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: center;

    transition: var(--transition);

}

.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}


/* =========================================================
   BOTÓN COTIZACIÓN
========================================================= */

.navbar-quote-btn {

    padding: 11px 18px;

    background: var(--primary);

    color: var(--dark) !important;

    border: none;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    transition: var(--transition);

}

.navbar-quote-btn i {

    margin-left: 7px;

}

.navbar-quote-btn:hover {

    background: var(--white);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background-image:
    url('https://images.unsplash.com/photo-1598302936625-6075fbd98dd7?auto=format&fit=crop&w=2000&q=90');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    overflow: hidden;

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 10, 11, 0.94) 0%,
            rgba(8, 10, 11, 0.78) 42%,
            rgba(8, 10, 11, 0.38) 75%,
            rgba(8, 10, 11, 0.55) 100%
        );

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}

.hero-line {

    display: inline-block;

    width: 45px;

    height: 2px;

    background: var(--primary);

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    max-width: 800px;

    margin-bottom: 24px;

    color: var(--white);

    font-size: clamp(42px, 6vw, 78px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2px;

}

.hero-title span {

    display: block;

    color: var(--primary);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 650px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;

    font-weight: 300;

    line-height: 1.7;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 60px;

}

.btn-primary-custom {

    padding: 15px 25px;

    background: var(--primary);

    border: 2px solid var(--primary);

    border-radius: 3px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}

.btn-primary-custom i {

    margin-left: 8px;

}

.btn-primary-custom:hover {

    background: var(--white);

    border-color: var(--white);

    color: var(--dark);

    transform: translateY(-3px);

}


.btn-outline-light-custom {

    padding: 15px 25px;

    border: 2px solid rgba(255, 255, 255, 0.6);

    border-radius: 3px;

    color: var(--white);

    font-size: 13px;

    font-weight: 600;

    transition: var(--transition);

}

.btn-outline-light-custom:hover {

    background: var(--white);

    border-color: var(--white);

    color: var(--dark);

    transform: translateY(-3px);

}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 35px;

}

.hero-feature {

    display: flex;

    align-items: center;

    gap: 12px;

}

.hero-feature > i {

    font-size: 25px;

    color: var(--primary);

}

.hero-feature div {

    display: flex;

    flex-direction: column;

}

.hero-feature strong {

    color: var(--white);

    font-size: 13px;

    font-weight: 600;

}

.hero-feature small {

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down {

    position: absolute;

    z-index: 5;

    right: 45px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.6);

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 2px;

    writing-mode: vertical-rl;

}

.scroll-down i {

    color: var(--primary);

    font-size: 16px;

    animation: scrollBounce 1.8s infinite;

}


@keyframes scrollBounce {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(7px);

    }

}


/* =========================================================
   PLACEHOLDER
========================================================= */

.placeholder-section {

    min-height: 400px;

    padding: 100px 0;

    display: flex;

    align-items: center;

    background: var(--light);

}

.placeholder-section:nth-child(odd) {

    background: var(--white);

}

.placeholder-section h2 {

    color: var(--dark);

    font-size: 42px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    #mainNavbar {

        padding: 12px 0;

    }

    .navbar-collapse {

        margin-top: 15px;

        padding: 15px;

        background: rgba(20, 22, 24, 0.98);

        border-radius: 4px;

    }

    .navbar-nav {

        gap: 0;

    }

    .nav-link {

        padding: 12px 10px !important;

    }

    .nav-link::after {

        display: none;

    }

    .navbar-quote-btn {

        display: inline-block;

        margin-top: 8px;

    }

    .hero-section {

        background-attachment: scroll;

    }

    .hero-content {

        padding-top: 110px;

        padding-bottom: 80px;

    }

    .hero-title {

        font-size: clamp(40px, 9vw, 65px);

    }

    .scroll-down {

        display: none;

    }

}


@media (max-width: 576px) {

    .brand-icon {

        width: 38px;

        height: 38px;

        font-size: 18px;

    }

    .brand-name {

        font-size: 11px;

    }

    .brand-subtitle {

        font-size: 6px;

        letter-spacing: 1px;

    }

    .hero-content {

        padding-top: 120px;

    }

    .hero-eyebrow {

        font-size: 9px;

        letter-spacing: 1.3px;

    }

    .hero-line {

        width: 30px;

    }

    .hero-title {

        margin-bottom: 20px;

        font-size: 42px;

        letter-spacing: -1px;

    }

    .hero-description {

        font-size: 15px;

        line-height: 1.6;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        margin-bottom: 45px;

    }

    .hero-buttons .btn {

        text-align: center;

    }

    .hero-features {

        gap: 20px;

        flex-direction: column;

    }

}
/* =========================================================
   BOTÓN HAMBURGUESA - MOBILE
========================================================= */

.navbar-toggler {

    border: 1px solid rgba(255, 255, 255, 0.35);

    padding: 7px 9px;

    border-radius: 4px;

    box-shadow: none !important;

}

.navbar-toggler:focus {

    box-shadow: none;

}


/* Icono de las tres líneas en color blanco */
.navbar-toggler-icon {

    width: 26px;
    height: 26px;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}
/* =========================================================
   NOSOTROS - DISEÑO LIMPIO SIN IMÁGENES
========================================================= */

.about-clean-section {

    position: relative;

    padding: 125px 0;

    background:
        linear-gradient(
            180deg,
            #f8f8f6 0%,
            #ffffff 100%
        );

    overflow: hidden;

}


/* Decoración de fondo */

.about-clean-section::before {

    content: "";

    position: absolute;

    top: 0;
    right: 8%;

    width: 1px;
    height: 100%;

    background: rgba(0, 0, 0, 0.04);

}


/* =========================================================
   ENCABEZADO
========================================================= */

.about-clean-label {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: var(--primary-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}

.about-clean-label span {

    width: 45px;
    height: 2px;

    background: var(--primary);

}


/* Título */

.about-clean-title {

    max-width: 850px;

    margin: 0;

    color: var(--dark);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

}

.about-clean-title span {

    display: block;

    color: var(--primary-dark);

}


/* Introducción */

.about-clean-intro {

    margin: 0;

    padding-left: 25px;

    border-left: 2px solid var(--primary);

    color: #686d71;

    font-size: 16px;

    line-height: 1.9;

}


/* =========================================================
   BLOQUE PRINCIPAL
========================================================= */

.about-clean-main {

    margin-top: 55px;

    border: 1px solid #e4e4e0;

    background: white;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.055);

}


/* Texto principal */

.about-clean-description {

    height: 100%;

    padding: 60px 55px;

}

.about-clean-small-title {

    display: block;

    margin-bottom: 20px;

    color: var(--primary-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}

.about-clean-description h3 {

    max-width: 650px;

    margin-bottom: 28px;

    color: var(--dark);

    font-size: 35px;

    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -0.8px;

}

.about-clean-description p {

    max-width: 720px;

    color: #686d71;

    font-size: 15px;

    line-height: 1.9;

}


/* Link */

.about-clean-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 16px;

    color: var(--dark);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    padding-bottom: 4px;

    border-bottom: 1px solid var(--primary);

    transition: var(--transition);

}

.about-clean-link i {

    color: var(--primary-dark);

    transition: transform .3s ease;

}

.about-clean-link:hover {

    color: var(--primary-dark);

}

.about-clean-link:hover i {

    transform: translateX(5px);

}


/* =========================================================
   CAPACIDADES
========================================================= */

.about-clean-capabilities {

    height: 100%;

    background: var(--dark);

}

.about-clean-capability {

    min-height: 145px;

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 30px 35px;

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

    transition:
        background .3s ease,
        padding-left .3s ease;

}

.about-clean-capability:last-child {

    border-bottom: none;

}

.about-clean-capability:hover {

    background: #1d2022;

    padding-left: 42px;

}


/* Número */

.about-clean-capability-number {

    min-width: 38px;

    color: var(--primary);

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

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* Texto capacidad */

.about-clean-capability div {

    display: flex;

    flex-direction: column;

}

.about-clean-capability strong {

    margin-bottom: 7px;

    color: white;

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

    font-size: 16px;

    font-weight: 600;

}

.about-clean-capability small {

    max-width: 280px;

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

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   DATOS GENERALES
========================================================= */

.about-clean-data {

    margin-top: 30px;

    border: 1px solid #e5e5e1;

    background: #fff;

}


/* Header datos */

.about-clean-data-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 25px;

    border-bottom: 1px solid #e5e5e1;

}

.about-clean-data-header span {

    color: var(--dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}

.about-clean-data-header p {

    margin: 0;

    color: #999;

    font-size: 11px;

}


/* Items */

.about-clean-data-item {

    min-height: 160px;

    padding: 30px 25px;

    border-right: 1px solid #e5e5e1;

    transition: background .3s ease;

}

.about-clean-data-item:hover {

    background: #fafaf8;

}

.about-clean-data-item span {

    display: block;

    margin-bottom: 15px;

    color: var(--primary-dark);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}

.about-clean-data-item strong {

    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 14px;

    line-height: 1.5;

}

.about-clean-data-item small {

    display: block;

    color: #8a8e91;

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================================
   PARTE INFERIOR
========================================================= */

.about-clean-footer {

    margin-top: 55px;

    padding-top: 45px;

    border-top: 1px solid #dededb;

}

.about-clean-footer h3 {

    max-width: 700px;

    margin: 0;

    color: var(--dark);

    font-size: clamp(24px, 3vw, 34px);

    font-weight: 600;

    line-height: 1.35;

    letter-spacing: -0.5px;

}


/* Botón */

.about-clean-button {

    padding: 15px 23px;

    background: var(--primary);

    border: 1px solid var(--primary);

    border-radius: 2px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}

.about-clean-button i {

    margin-left: 7px;

}

.about-clean-button:hover {

    background: var(--dark);

    border-color: var(--dark);

    color: white;

    transform: translateY(-2px);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-clean-section {

        padding: 90px 0;

    }

    .about-clean-intro {

        margin-top: 30px;

        padding-left: 20px;

    }

    .about-clean-description {

        padding: 45px 35px;

    }

    .about-clean-data-item {

        border-bottom: 1px solid #e5e5e1;

    }

}


@media (max-width: 576px) {

    .about-clean-section {

        padding: 70px 0;

    }

    .about-clean-title {

        font-size: 38px;

        letter-spacing: -1px;

    }

    .about-clean-description {

        padding: 35px 25px;

    }

    .about-clean-description h3 {

        font-size: 27px;

    }

    .about-clean-capability {

        min-height: auto;

        padding: 27px 25px;

    }

    .about-clean-capability:hover {

        padding-left: 30px;

    }

    .about-clean-data-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 6px;

    }

    .about-clean-data-item {

        min-height: auto;

        border-right: none;

    }

}
/* =========================================================
   SERVICIOS
========================================================= */

.services-section {

    position: relative;

    padding: 125px 0;

    background: #111315;

    overflow: hidden;

}


/* Línea decorativa superior */

.services-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(230,162,26,.45),
            transparent
        );

}


/* =========================================================
   ENCABEZADO
========================================================= */

.services-header {

    margin-bottom: 65px;

}


.services-label {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.services-label span {

    width: 45px;
    height: 2px;

    background: var(--primary);

}


/* Título */

.services-title {

    margin: 0;

    color: white;

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

}


.services-title span {

    display: block;

    color: var(--primary);

}


/* Introducción */

.services-intro {

    margin: 0;

    padding-left: 25px;

    border-left:
        2px solid var(--primary);

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

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   GRID
========================================================= */

.services-grid {

    display: grid;

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

    border-top:
        1px solid rgba(255,255,255,.10);

    border-left:
        1px solid rgba(255,255,255,.10);

}


/* =========================================================
   TARJETAS
========================================================= */

.service-card {

    position: relative;

    min-height: 340px;

    display: flex;

    flex-direction: column;

    padding: 38px 34px;

    background: #15181a;

    border-right:
        1px solid rgba(255,255,255,.10);

    border-bottom:
        1px solid rgba(255,255,255,.10);

    overflow: hidden;

    transition:
        background .35s ease,
        transform .35s ease;

}


/* Detalle amarillo inferior */

.service-card::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .4s ease;

}


.service-card:hover {

    background: #1d2022;

}


.service-card:hover::after {

    transform: scaleX(1);

}


/* =========================================================
   PARTE SUPERIOR
========================================================= */

.service-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 50px;

}


/* Número */

.service-number {

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

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

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* Icono */

.service-icon {

    width: 48px;
    height: 48px;

    display: flex;

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

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

    color: var(--primary);

    font-size: 21px;

    transition:
        background .3s ease,
        color .3s ease,
        border .3s ease;

}


.service-card:hover .service-icon {

    background: var(--primary);

    border-color: var(--primary);

    color: #111315;

}


/* =========================================================
   TEXTO
========================================================= */

.service-card h3 {

    margin-bottom: 17px;

    color: white;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.35;

}


.service-card p {

    margin: 0;

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

    font-size: 13px;

    line-height: 1.8;

}


/* Línea decorativa */

.service-line {

    width: 30px;
    height: 1px;

    margin-top: auto;

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

    transition:
        width .35s ease,
        background .35s ease;

}


.service-card:hover .service-line {

    width: 65px;

    background: var(--primary);

}


/* =========================================================
   FOOTER SERVICIOS
========================================================= */

.services-footer {

    margin-top: 65px;

    padding-top: 50px;

    border-top:
        1px solid rgba(255,255,255,.10);

}


.services-footer-small {

    display: block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.services-footer h3 {

    max-width: 700px;

    margin: 0;

    color: white;

    font-size: clamp(25px, 3vw, 36px);

    font-weight: 600;

    line-height: 1.3;

}


/* Botón */

.services-button {

    padding: 15px 24px;

    background: var(--primary);

    border: 1px solid var(--primary);

    border-radius: 2px;

    color: #111315;

    font-size: 13px;

    font-weight: 700;

    transition: all .3s ease;

}


.services-button i {

    margin-left: 7px;

}


.services-button:hover {

    background: white;

    border-color: white;

    color: #111315;

    transform: translateY(-3px);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .services-section {

        padding: 90px 0;

    }


    .services-intro {

        margin-top: 30px;

    }


    .services-grid {

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

    }

}


@media (max-width: 576px) {

    .services-section {

        padding: 70px 0;

    }


    .services-title {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 280px;

        padding: 30px 25px;

    }


    .service-card-top {

        margin-bottom: 35px;

    }


    .services-footer {

        margin-top: 50px;

        padding-top: 40px;

    }

}
/* =========================================================
   SOPORTES ECONÓMICOS
========================================================= */

.support-section {

    position: relative;

    padding: 125px 0;

    background: #f6f6f3;

    overflow: hidden;

}


/* Decoración */

.support-section::before {

    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 28%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(230, 162, 26, 0.035)
        );

    pointer-events: none;

}


/* =========================================================
   ENCABEZADO
========================================================= */

.support-header {

    position: relative;

    z-index: 2;

    margin-bottom: 65px;

}


.support-label {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: var(--primary-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.support-label > span {

    width: 45px;
    height: 2px;

    background: var(--primary);

}


.support-title {

    max-width: 850px;

    margin: 0;

    color: var(--dark);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

}


.support-title span {

    display: block;

    color: var(--primary-dark);

}


.support-intro {

    margin: 0;

    padding-left: 25px;

    border-left: 2px solid var(--primary);

    color: #666b70;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   ESTADÍSTICAS
========================================================= */

.support-stats {

    position: relative;

    z-index: 2;

    margin-bottom: 30px;

    background: var(--dark);

}


.support-stat {

    position: relative;

    min-height: 190px;

    padding: 37px 30px;

    border-right:
        1px solid rgba(255,255,255,.09);

}


.support-stat-number {

    color: white;

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

    font-size: clamp(38px, 4vw, 54px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2px;

}


.support-stat-unit {

    margin-left: 4px;

    color: var(--primary);

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

    font-size: 15px;

    font-weight: 700;

}


.support-stat p {

    max-width: 170px;

    margin: 17px 0 0;

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

    font-size: 11px;

    line-height: 1.6;

    text-transform: uppercase;

    letter-spacing: .7px;

}


/* Detalle amarillo superior */

.support-stat::before {

    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 30px;
    height: 3px;

    background: var(--primary);

}


/* =========================================================
   GRID
========================================================= */

.support-grid {

    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 22px;

}


/* =========================================================
   TARJETAS
========================================================= */

.support-card {

    min-height: 470px;

    display: flex;

    flex-direction: column;

    padding: 42px;

    background: #fff;

    border: 1px solid #e5e5e1;

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

}


.support-card:hover {

    transform: translateY(-5px);

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

}


.support-card-dark {

    background: #191c1e;

    border-color: #191c1e;

    color: white;

}


/* Parte superior */

.support-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 42px;

}


.support-card-number {

    color: #a0a3a5;

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

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


.support-card-dark .support-card-number {

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

}


.support-card-icon {

    width: 50px;
    height: 50px;

    display: flex;

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

    border: 1px solid #ddddda;

    color: var(--primary-dark);

    font-size: 22px;

}


.support-card-dark .support-card-icon {

    border-color: rgba(255,255,255,.12);

    color: var(--primary);

}


/* Categoría */

.support-card-category {

    margin-bottom: 12px;

    color: var(--primary-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.support-card-dark .support-card-category {

    color: var(--primary);

}


/* Títulos */

.support-card h3 {

    margin-bottom: 20px;

    color: var(--dark);

    font-size: 27px;

    font-weight: 700;

    line-height: 1.25;

}


.support-card-dark h3 {

    color: white;

}


/* Descripción */

.support-card > p {

    margin-bottom: 25px;

    color: #707579;

    font-size: 14px;

    line-height: 1.85;

}


.support-card-dark > p {

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

}


.support-card p strong {

    color: var(--dark);

}


.support-card-dark p strong {

    color: white;

}


/* =========================================================
   LISTAS
========================================================= */

.support-card ul {

    list-style: none;

    margin: auto 0 0;

    padding: 0;

}


.support-card ul li {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 9px 0;

    border-bottom: 1px solid #eeeeeb;

    color: #4e5357;

    font-size: 12px;

}


.support-card ul li:last-child {

    border-bottom: none;

}


.support-card ul li i {

    color: var(--primary-dark);

    font-size: 16px;

}


.support-card-dark ul li {

    border-color: rgba(255,255,255,.08);

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

}


.support-card-dark ul li i {

    color: var(--primary);

}


/* =========================================================
   MINI ESTADÍSTICAS
========================================================= */

.support-mini-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: auto;

}


.support-mini-stats > div {

    padding: 22px;

    background: #f4f4f1;

}


.support-mini-stats strong {

    display: block;

    color: var(--dark);

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

    font-size: 32px;

    font-weight: 700;

}


.support-mini-stats span {

    color: #888d90;

    font-size: 11px;

}


.support-equipped {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 14px;

    padding: 14px;

    border-left: 3px solid var(--primary);

    background: #fafaf8;

}


.support-equipped i {

    color: var(--primary-dark);

}


.support-equipped span {

    color: #555a5e;

    font-size: 12px;

    font-weight: 600;

}


/* =========================================================
   PERSONAL
========================================================= */

.support-personnel {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: auto;

}


.support-personnel span {

    padding: 8px 12px;

    border: 1px solid #dededb;

    color: #555a5d;

    font-size: 11px;

    transition: all .25s ease;

}


.support-personnel span:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--dark);

}


/* =========================================================
   CIERRE
========================================================= */

.support-footer {

    position: relative;

    z-index: 2;

    margin-top: 65px;

}


.support-footer-line {

    width: 100%;

    height: 1px;

    margin-bottom: 45px;

    background: #deded9;

}


.support-footer span {

    display: block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.support-footer h3 {

    max-width: 750px;

    margin: 0;

    color: var(--dark);

    font-size: clamp(25px, 3vw, 36px);

    font-weight: 600;

    line-height: 1.3;

}


.support-button {

    padding: 15px 23px;

    background: var(--dark);

    border: 1px solid var(--dark);

    border-radius: 2px;

    color: white;

    font-size: 13px;

    font-weight: 700;

    transition: all .3s ease;

}


.support-button i {

    margin-left: 7px;

}


.support-button:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--dark);

    transform: translateY(-3px);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .support-section {

        padding: 90px 0;

    }


    .support-intro {

        margin-top: 30px;

    }


    .support-grid {

        grid-template-columns: 1fr;

    }


    .support-stat {

        border-bottom:
            1px solid rgba(255,255,255,.09);

    }

}


@media (max-width: 576px) {

    .support-section {

        padding: 70px 0;

    }


    .support-title {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .support-stat {

        min-height: 160px;

        padding: 30px 20px;

    }


    .support-stat::before {

        left: 20px;

    }


    .support-stat-number {

        font-size: 35px;

    }


    .support-card {

        min-height: auto;

        padding: 30px 25px;

    }


    .support-card-top {

        margin-bottom: 30px;

    }


    .support-card h3 {

        font-size: 24px;

    }


    .support-mini-stats {

        grid-template-columns: 1fr;

    }

}

/* =========================================================
   INVENTARIO DE MAQUINARIA
========================================================= */

.machinery-section {

    position: relative;

    padding: 125px 0;

    background: #ffffff;

}


/* =========================================================
   HEADER
========================================================= */

.machinery-header {

    margin-bottom: 60px;

}


.machinery-label {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: var(--primary-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.machinery-label > span {

    width: 45px;
    height: 2px;

    background: var(--primary);

}


.machinery-title {

    margin: 0;

    color: var(--dark);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

}


.machinery-title span {

    display: block;

    color: var(--primary-dark);

}


.machinery-intro {

    margin: 0;

    padding-left: 25px;

    border-left: 2px solid var(--primary);

    color: #696e72;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   RESUMEN
========================================================= */

.machinery-summary {

    margin-bottom: 45px;

    background: var(--dark);

}


.machinery-summary-item {

    min-height: 190px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 30px;

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

}


.machinery-summary-item i {

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 28px;

}


.machinery-summary-item strong {

    margin-bottom: 7px;

    color: white;

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

    font-size: 15px;

}


.machinery-summary-item span {

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

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================================
   CATEGORÍAS
========================================================= */

.machinery-inventory {

    border-top: 1px solid #dededb;

}


.machinery-category {

    border-bottom: 1px solid #dededb;

}


.machinery-category summary {

    min-height: 125px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 28px 15px;

    cursor: pointer;

    list-style: none;

    transition:
        background .3s ease,
        padding .3s ease;

}


.machinery-category summary::-webkit-details-marker {

    display: none;

}


.machinery-category summary:hover {

    padding-left: 25px;

    padding-right: 25px;

    background: #f8f8f6;

}


/* Título categoría */

.machinery-category-title {

    display: flex;

    align-items: center;

    gap: 25px;

}


.machinery-category-number {

    min-width: 35px;

    color: var(--primary-dark);

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

    font-size: 12px;

    font-weight: 700;

}


.machinery-category-title small {

    display: block;

    margin-bottom: 5px;

    color: #969a9d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.machinery-category-title h3 {

    margin: 0;

    color: var(--dark);

    font-size: 24px;

    font-weight: 700;

}


/* Acción */

.machinery-category-action {

    display: flex;

    align-items: center;

    gap: 15px;

}


.machinery-category-action span {

    color: #999;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.machinery-category-action i {

    width: 38px;
    height: 38px;

    display: flex;

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

    border: 1px solid #ddd;

    color: var(--dark);

    font-size: 15px;

    transition: all .3s ease;

}


.machinery-category[open]
.machinery-category-action i {

    transform: rotate(45deg);

    background: var(--primary);

    border-color: var(--primary);

}


/* =========================================================
   CONTENIDO
========================================================= */

.machinery-category-content {

    padding: 0 15px 40px;

}


.machinery-list {

    display: grid;

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

    background: #f7f7f5;

    border-top: 3px solid var(--primary);

}


/* Item */

.machinery-item {

    min-height: 105px;

    display: flex;

    gap: 18px;

    padding: 24px;

    border-right: 1px solid #e2e2df;

    border-bottom: 1px solid #e2e2df;

    transition: background .25s ease;

}


.machinery-item:hover {

    background: #ffffff;

}


.machinery-item > span {

    min-width: 25px;

    padding-top: 2px;

    color: #a1a4a6;

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

    font-size: 9px;

    font-weight: 700;

}


.machinery-item p {

    margin: 0;

    color: #5b6064;

    font-size: 12px;

    line-height: 1.75;

}


.machinery-item p strong {

    color: var(--primary-dark);

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

    font-size: 14px;

}


/* =========================================================
   FOOTER
========================================================= */

.machinery-footer {

    margin-top: 65px;

    padding: 50px;

    background: #f6f6f3;

    border-left: 4px solid var(--primary);

}


.machinery-footer span {

    display: block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.machinery-footer h3 {

    max-width: 760px;

    margin: 0;

    color: var(--dark);

    font-size: clamp(24px, 3vw, 34px);

    font-weight: 600;

    line-height: 1.35;

}


.machinery-button {

    padding: 15px 22px;

    background: var(--dark);

    border: 1px solid var(--dark);

    border-radius: 2px;

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: all .3s ease;

}


.machinery-button i {

    margin-left: 7px;

}


.machinery-button:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--dark);

    transform: translateY(-3px);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .machinery-section {

        padding: 90px 0;

    }


    .machinery-intro {

        margin-top: 30px;

    }


    .machinery-list {

        grid-template-columns: 1fr;

    }


    .machinery-summary-item {

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

    }

}


@media (max-width: 576px) {

    .machinery-section {

        padding: 70px 0;

    }


    .machinery-title {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .machinery-summary-item {

        min-height: 165px;

        padding: 22px;

    }


    .machinery-category summary {

        min-height: 110px;

        padding: 22px 5px;

    }


    .machinery-category-title {

        gap: 13px;

    }


    .machinery-category-title h3 {

        font-size: 17px;

    }


    .machinery-category-action span {

        display: none;

    }


    .machinery-category-content {

        padding-left: 0;

        padding-right: 0;

    }


    .machinery-item {

        min-height: auto;

        padding: 20px;

    }


    .machinery-footer {

        padding: 35px 25px;

    }

}


/* =========================================================
   HISTORIAL DE PROYECTOS
========================================================= */

.projects-history-section {
    position: relative;
    padding: 125px 0;
    background: #111315;
    overflow: hidden;
}

.projects-history-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.035);
}

.projects-history-header {
    margin-bottom: 55px;
}

.projects-history-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.projects-history-label > span {
    width: 45px;
    height: 2px;
    background: var(--primary);
}

.projects-history-title {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.projects-history-title span {
    display: block;
    color: var(--primary);
}

.projects-history-intro {
    margin: 0;
    padding-left: 25px;
    border-left: 2px solid var(--primary);
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.9;
}


/* FILTROS */

.projects-history-toolbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr .65fr 1.4fr auto;
    gap: 14px;
    align-items: end;
    padding: 25px;
    background: #191c1e;
    border: 1px solid rgba(255,255,255,.08);
}

.projects-filter label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.projects-filter .form-select,
.projects-filter .form-control {
    min-height: 48px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 2px;
    background-color: #111315;
    color: #fff;
    font-size: 12px;
    box-shadow: none;
}

.projects-filter .form-select:focus,
.projects-filter .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.projects-filter .form-select option {
    color: #111315;
    background: #fff;
}

.projects-search-box {
    position: relative;
}

.projects-search-box i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--primary);
    z-index: 2;
}

.projects-search-box .form-control {
    padding-left: 43px;
}

.projects-search-box .form-control::placeholder {
    color: rgba(255,255,255,.32);
}

.projects-clear-button {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 2px;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 700;
    transition: all .3s ease;
}

.projects-clear-button i {
    margin-right: 6px;
}

.projects-clear-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* META */

.projects-history-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0 20px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}

.projects-history-meta strong {
    margin-right: 5px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}


/* GRID */

.projects-history-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.09);
    border-left: 1px solid rgba(255,255,255,.09);
}

.project-history-card {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #15181a;
    border-right: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);
    transition: background .3s ease;
}

.project-history-card:hover {
    background: #1b1e21;
}

.project-history-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.project-history-card:hover::after {
    transform: scaleX(1);
}

.project-history-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.project-history-index {
    color: rgba(255,255,255,.24);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-history-date {
    padding: 6px 9px;
    border: 1px solid rgba(230,162,26,.35);
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .7px;
}

.project-history-card h3 {
    margin-bottom: 17px;
    color: #fff;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.4;
}

.project-history-preview {
    margin: 0 0 28px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    line-height: 1.8;
}

.project-history-more {
    width: fit-content;
    margin-top: auto;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(230,162,26,.55);
    background: transparent;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.project-history-more i {
    margin-left: 7px;
    color: var(--primary);
    transition: transform .3s ease;
}

.project-history-more:hover i {
    transform: translateX(5px);
}


/* MODAL */

.project-modal .modal-content {
    border: 0;
    border-radius: 2px;
    background: #f7f7f5;
}

.project-modal .modal-header {
    align-items: flex-start;
    padding: 30px 32px 24px;
    border-bottom: 1px solid #dededb;
}

.project-modal-date {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.project-modal .modal-title {
    margin: 0;
    color: var(--dark);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.project-modal .modal-body {
    padding: 32px;
}

.project-modal-label {
    display: block;
    margin-bottom: 18px;
    color: #989c9f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.project-modal-description {
    color: #555a5e;
    font-size: 14px;
    line-height: 1.9;
}


/* EMPTY */

.projects-history-empty {
    padding: 70px 25px;
    border: 1px solid rgba(255,255,255,.09);
    text-align: center;
}

.projects-history-empty i {
    color: var(--primary);
    font-size: 32px;
}

.projects-history-empty h3 {
    margin: 18px 0 8px;
    color: #fff;
    font-size: 20px;
}

.projects-history-empty p {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 12px;
}


/* PAGINACIÓN */

.projects-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: 40px;
}

.projects-pagination button {
    min-width: 39px;
    height: 39px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.11);
    background: transparent;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    transition: all .25s ease;
}

.projects-pagination button:hover,
.projects-pagination button.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #111315;
}

.projects-pagination button:disabled {
    opacity: .25;
    pointer-events: none;
}


/* FOOTER */

.projects-history-footer {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.projects-history-footer span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.projects-history-footer h3 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 35px);
    font-weight: 600;
    line-height: 1.35;
}

.projects-history-button {
    padding: 15px 23px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    background: var(--primary);
    color: #111315;
    font-size: 12px;
    font-weight: 700;
    transition: all .3s ease;
}

.projects-history-button i {
    margin-left: 7px;
}

.projects-history-button:hover {
    border-color: #fff;
    background: #fff;
    color: #111315;
    transform: translateY(-3px);
}


/* RESPONSIVE */

@media (max-width: 1199px) {
    .projects-history-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .projects-history-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .projects-history-section {
        padding: 90px 0;
    }

    .projects-history-intro {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .projects-history-toolbar {
        grid-template-columns: 1fr;
    }

    .projects-history-grid {
        grid-template-columns: 1fr;
    }

    .projects-history-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .projects-history-section {
        padding: 70px 0;
    }

    .projects-history-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .projects-history-toolbar {
        padding: 18px;
    }

    .project-history-card {
        min-height: 315px;
        padding: 27px 24px;
    }

    .project-modal .modal-header,
    .project-modal .modal-body {
        padding-left: 22px;
        padding-right: 22px;
    }
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-section {

    position: relative;

    padding: 125px 0;

    background: #f7f7f5;

}


/* =========================================================
   ENCABEZADO
========================================================= */

.contact-header {

    margin-bottom: 60px;

}


.contact-label {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: var(--primary-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.contact-label > span {

    width: 45px;

    height: 2px;

    background: var(--primary);

}


.contact-title {

    margin: 0;

    color: var(--dark);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

}


.contact-title span {

    display: block;

    color: var(--primary-dark);

}


.contact-intro {

    margin: 0;

    padding-left: 25px;

    border-left: 2px solid var(--primary);

    color: #676c70;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   BLOQUE PRINCIPAL
========================================================= */

.contact-main {

    margin-bottom: 35px;

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

}


/* =========================================================
   INFORMACIÓN
========================================================= */

.contact-info-panel {

    height: 100%;

    min-height: 690px;

    padding: 55px 45px;

    background: #111315;

    color: white;

}


.contact-info-small {

    display: block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-info-panel > h3 {

    max-width: 390px;

    margin-bottom: 16px;

    color: white;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.3;

}


.contact-info-description {

    max-width: 400px;

    margin-bottom: 42px;

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

    font-size: 13px;

    line-height: 1.8;

}


/* ITEM */

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px 0;

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

}


.contact-info-icon {

    min-width: 42px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: var(--primary);

    font-size: 18px;

}


.contact-info-item > div:last-child {

    display: flex;

    flex-direction: column;

}


.contact-info-item span {

    margin-bottom: 5px;

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

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.contact-info-item strong,
.contact-info-item a {

    color: white;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.5;

    text-decoration: none;

}


.contact-info-item a:hover {

    color: var(--primary);

}


.contact-info-item small {

    margin-top: 4px;

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

    font-size: 11px;

}


.contact-info-action {

    margin-top: 35px;

}


.contact-main-button {

    padding: 14px 20px;

    border: 1px solid var(--primary);

    border-radius: 2px;

    background: var(--primary);

    color: var(--dark);

    font-size: 12px;

    font-weight: 700;

    transition: all .3s ease;

}


.contact-main-button i {

    margin-left: 7px;

}


.contact-main-button:hover {

    border-color: white;

    background: white;

    color: var(--dark);

    transform: translateY(-3px);

}


/* =========================================================
   FORMULARIO
========================================================= */

.contact-form-panel {

    height: 100%;

    min-height: 690px;

    padding: 55px;

    background: white;

}


.contact-form-small {

    display: block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-form-panel h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 30px;

    font-weight: 700;

}


.contact-form-panel > p {

    margin-bottom: 35px;

    color: #7a7f82;

    font-size: 13px;

}


.contact-form label {

    display: block;

    margin-bottom: 7px;

    color: #555a5d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

}


.contact-form .form-control,
.contact-form .form-select {

    min-height: 50px;

    padding: 12px 15px;

    border: 1px solid #dededb;

    border-radius: 2px;

    background: #fafaf8;

    color: var(--dark);

    font-size: 12px;

    box-shadow: none;

    transition:
        border-color .25s ease,
        background .25s ease;

}


.contact-form textarea.form-control {

    min-height: 145px;

    resize: vertical;

}


.contact-form .form-control:focus,
.contact-form .form-select:focus {

    border-color: var(--primary);

    background: white;

    box-shadow: none;

}


.contact-submit-button {

    min-height: 50px;

    padding: 0 25px;

    border: 1px solid var(--dark);

    border-radius: 2px;

    background: var(--dark);

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: all .3s ease;

}


.contact-submit-button i {

    margin-left: 8px;

}


.contact-submit-button:hover {

    border-color: var(--primary);

    background: var(--primary);

    color: var(--dark);

    transform: translateY(-2px);

}


/* =========================================================
   MAPA
========================================================= */

.contact-map {

    overflow: hidden;

    border: 1px solid #dfdfdc;

    background: white;

}


.contact-map-header {

    min-height: 105px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 25px 35px;

}


.contact-map-header span {

    display: block;

    margin-bottom: 5px;

    color: var(--primary-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-map-header h3 {

    margin: 0;

    color: var(--dark);

    font-size: 23px;

    font-weight: 700;

}


.contact-map-link {

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

}


.contact-map-link i {

    margin-left: 7px;

    color: var(--primary-dark);

}


.contact-map-link:hover {

    color: var(--primary-dark);

}


/* MAPA REAL - GOOGLE MAPS */

.contact-map-frame {

    width: 100%;

    height: 450px;

    overflow: hidden;

    background: #111315;

}


.contact-map-frame iframe {

    width: 100%;

    height: 100%;

    display: block;

    border: 0;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-section {

        padding: 90px 0;

    }


    .contact-intro {

        margin-top: 30px;

    }


    .contact-info-panel,
    .contact-form-panel {

        min-height: auto;

    }


    .contact-form-panel {

        padding: 45px 35px;

    }

}


@media (max-width: 576px) {

    .contact-section {

        padding: 70px 0;

    }


    .contact-title {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .contact-info-panel {

        padding: 38px 25px;

    }


    .contact-form-panel {

        padding: 38px 25px;

    }


    .contact-info-panel > h3,
    .contact-form-panel h3 {

        font-size: 25px;

    }


    .contact-map-header {

        align-items: flex-start;

        flex-direction: column;

        padding: 25px;

    }


    .contact-map-frame {

        height: 360px;

    }

}

/* =========================================================
   WHATSAPP FLOTANTE - SIN ANIMACIONES
========================================================= */

.whatsapp-floating {

    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 9999;

    width: 62px;
    height: 62px;

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

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

}


.whatsapp-floating > i {

    line-height: 1;

}


/* Hover sin movimiento ni animación */

.whatsapp-floating:hover,
.whatsapp-floating:focus {

    background: #20bd5a;

    color: #ffffff;

    text-decoration: none;

}


/* =========================================================
   TEXTO INFORMATIVO
========================================================= */

.whatsapp-tooltip {

    position: absolute;

    right: 75px;

    top: 50%;

    transform: translateY(-50%);

    width: max-content;

    padding: 10px 14px;

    border-radius: 3px;

    background: #111315;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .2px;

    display: none;

    pointer-events: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);

}


.whatsapp-tooltip::after {

    content: "";

    position: absolute;

    top: 50%;
    right: -6px;

    transform: translateY(-50%);

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #111315;

}


.whatsapp-floating:hover .whatsapp-tooltip,
.whatsapp-floating:focus .whatsapp-tooltip {

    display: block;

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 576px) {

    .whatsapp-floating {

        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;

        font-size: 27px;

    }


    .whatsapp-tooltip {

        display: none !important;

    }

}


.brand-icon {

    width: 48px;
    height: 48px;

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

    flex-shrink: 0;

    background: transparent;

    border-radius: 0;

    overflow: hidden;

}


.brand-logo {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

}
@media (max-width: 576px) {

    .brand-icon {

        width: 42px;
        height: 42px;

    }

}


.brand-icon {
    width: 38px;
    height: 38px;

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

    flex-shrink: 0;

    background: transparent;

    border-radius: 8px;
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 8px;
}

@media (max-width: 576px) {

    .brand-icon {
        width: 34px;
        height: 34px;
        border-radius: 7px;
    }

    .brand-logo {
        border-radius: 7px;
    }

}


