/* =====================================================
   VARIABLES GENERALES
===================================================== */

:root {

    /* ================================
       COLORES HIDROEFICIENTE
    ================================= */

        --hidro-primary: #005F40;
        --hidro-primary-dark: #00452F;
        
        --hidro-secondary: #8CC63F;
        --hidro-accent: #28AAE2;
        
        --hidro-text: #18352C;
        --hidro-text-light: #64756F;
        
        --hidro-bg: #F4F8F5;
        --hidro-white: #FFFFFF;
        
        --hidro-border: #DDE9E2;




    /* ================================
       ESTRUCTURA
    ================================= */

    --sidebar-width: 260px;

}



/* =====================================================
   SIDEBAR HIDROEFICIENTE
===================================================== */

.sidebar {

    position: fixed;

    top: 0;
    left: 0;

    width: var(--sidebar-width);
    height: 100vh;

    background-color: #ffffff;

    border-right: 1px solid #e7eeee;

    padding: 28px 18px;

    display: flex;

    flex-direction: column;

    z-index: 1000;

    overflow-y: auto;

}


/* Ocultar scrollbar */

.sidebar::-webkit-scrollbar {

    width: 4px;

}

.sidebar::-webkit-scrollbar-thumb {

    background: #dce7e3;

    border-radius: 10px;

}


/* =====================================================
   LOGO DEL SIDEBAR
===================================================== */

.sidebar-logo {

    padding: 5px 10px 35px;

}


.sidebar-logo a {

    color: inherit;

    text-decoration: none;

}


/* =====================================================
   ICONO / LOGO
===================================================== */

.logo-icon {

    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.08);

    overflow: hidden;

}


.logo-icon img {

    width: 85%;
    height: 85%;

    display: block;

    object-fit: contain;

}


/* =====================================================
   TEXTO DEL LOGO
===================================================== */

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.logo-hidro {

    color: #173f35;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1.5px;

}


.logo-eficiente {

    color: #006b4f;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =====================================================
   TÍTULO DEL MENÚ
===================================================== */

.menu-title {

    padding: 0 12px 13px;

    color: #98aaa5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


/* =====================================================
   CONTENEDOR DEL MENÚ
===================================================== */

.sidebar-menu {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


/* =====================================================
   LINKS
===================================================== */

.sidebar-link {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px;

    border-radius: 10px;

    color: #607b75;

    background: transparent;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;

}


/* =====================================================
   ICONOS DE LOS LINKS
===================================================== */

.sidebar-link i {

    width: 22px;

    flex-shrink: 0;

    text-align: center;

    font-size: 17px;

    color: #607b75;

    transition: color .25s ease;

}


/* =====================================================
   HOVER
===================================================== */

.sidebar-link:hover {

    background-color: rgba(40, 170, 225, .09);

    color: #006b4f;

    transform: translateX(2px);

}


.sidebar-link:hover i {

    color: #006b4f;

}


/* =====================================================
   LINK ACTIVO
===================================================== */

.sidebar-link.active {

    background-color: rgba(0, 107, 79, .10);

    color: #006b4f;

    font-weight: 700;

}


.sidebar-link.active i {

    color: #006b4f;

}


/* =====================================================
   PARTE INFERIOR
===================================================== */

.sidebar-footer {

    margin-top: auto;

    padding: 15px 10px 5px;

}


/* =====================================================
   TARJETA DEL SIDEBAR
===================================================== */

.sidebar-card {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 15px;

    background-color: #f1f8f6;

    border-radius: 14px;

}


.sidebar-card > i {

    flex-shrink: 0;

    margin-top: 1px;

    color: #006b4f;

    font-size: 19px;

}


.sidebar-card p {

    margin: 0;

    color: #607b75;

    font-size: 11px;

    line-height: 1.5;

}


.sidebar-card strong {

    display: block;

    margin-top: 2px;

    color: #006b4f;

    font-size: 12px;

}


/* =====================================================
   CONTENIDO PRINCIPAL
===================================================== */

#contenido {

    min-height: 100vh;

    margin-left: var(--sidebar-width);

}


/* =====================================================
   NAVBAR MÓVIL
===================================================== */

/*
   IMPORTANTE:

   La navbar móvil NO aparece en PC.
*/

.mobile-navbar {

    display: none;

}


/* =====================================================
   LOGO NAVBAR MÓVIL
===================================================== */

.mobile-navbar .navbar-brand {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #006b4f;

    font-size: 17px;

    font-weight: 800;

    text-decoration: none;

}


.mobile-navbar .navbar-brand img {

    width: 38px;
    height: 38px;

    display: block;

    object-fit: contain;

}


/* =====================================================
   BOTÓN HAMBURGUESA
===================================================== */

.btn-menu {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: none;

    border-radius: 10px;

    background: transparent;

    color: #173f35;

    font-size: 26px;

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease;

}


.btn-menu:hover {

    background-color: rgba(40, 170, 225, .10);

    color: #006b4f;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {


    /* ================================================
       SIDEBAR OCULTO
    ================================================ */

    .sidebar {

        transform: translateX(-100%);

        transition:
            transform .3s ease;

        box-shadow:
            8px 0 30px rgba(0, 0, 0, .10);

    }


    /* Sidebar abierto */

    .sidebar.open {

        transform: translateX(0);

    }


    /* ================================================
       CONTENIDO
    ================================================ */

    #contenido {

        margin-left: 0;

    }


    /* ================================================
       NAVBAR MÓVIL
    ================================================ */

    .mobile-navbar {

        position: sticky;

        top: 0;

        width: 100%;

        min-height: 64px;

        display: flex;

        align-items: center;

        background: #ffffff;

        border-bottom: 1px solid #e7eeee;

        z-index: 900;

    }


    /* ================================================
       SIDEBAR OVERLAY
    ================================================ */

    .sidebar-overlay {

        position: fixed;

        inset: 0;

        z-index: 999;

        background: rgba(0, 0, 0, .25);

        opacity: 0;

        visibility: hidden;

        transition:
            opacity .3s ease,
            visibility .3s ease;

    }


    .sidebar-overlay.active {

        opacity: 1;

        visibility: visible;

    }


    /* ================================================
       FOOTER
    ================================================ */

    .footer {

        margin-left: 0;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 575px) {


    .sidebar {

        width: 270px;

        padding: 24px 15px;

    }


    .sidebar-logo {

        padding-bottom: 28px;

    }


    .logo-icon {

        width: 50px;
        height: 50px;

    }


    .logo-hidro {

        font-size: 11px;

    }


    .logo-eficiente {

        font-size: 15px;

    }


    .sidebar-link {

        padding: 11px;

        font-size: 13px;

    }


    .sidebar-link i {

        font-size: 16px;

    }


    .mobile-navbar .navbar-brand {

        font-size: 16px;

    }


    .mobile-navbar .navbar-brand img {

        width: 36px;
        height: 36px;

    }


    
}

/* =====================================================
   FOOTER HIDROEFICIENTE
===================================================== */

.footer {

    margin-left: var(--sidebar-width);

    background-color: #ffffff;

    border-top: 1px solid #e5edef;

    padding: 35px 40px;

}


/* =====================================================
   CONTENEDOR
===================================================== */

.footer .container {

    max-width: 1200px;

}


/* =====================================================
   LOGO / MARCA
===================================================== */

.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;

}


.footer-brand img {

    width: 45px;

    height: 45px;

    object-fit: contain;

}


.footer-brand-name {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.footer-brand-name span:first-child {

    color: #173f35;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1.5px;

}


.footer-brand-name span:last-child {

    color: var(--hidro-primary);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =====================================================
   DESCRIPCIÓN
===================================================== */

.footer-description {

    max-width: 420px;

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   TÍTULOS
===================================================== */

.footer-title {

    margin-bottom: 13px;

    color: var(--hidro-primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

}


/* =====================================================
   ENLACES
===================================================== */

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.footer-links a {

    color: var(--hidro-text-light);

    font-size: 12px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;

}


.footer-links a:hover {

    color: var(--hidro-primary);

    transform: translateX(3px);

}


/* =====================================================
   CONTACTO
===================================================== */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-contact-item {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--hidro-text-light);

    font-size: 12px;

}


.footer-contact-item i {

    width: 18px;

    color: var(--hidro-primary);

    font-size: 14px;

    text-align: center;

}


/* =====================================================
   REDES SOCIALES
===================================================== */

.footer-social {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

}


.footer-social a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background-color: #f0f7f5;

    color: var(--hidro-primary);

    text-decoration: none;

    font-size: 15px;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;

}


.footer-social a:hover {

    background-color: var(--hidro-primary);

    color: #ffffff;

    transform: translateY(-3px);

}


/* =====================================================
   SEPARADOR
===================================================== */

.footer-divider {

    width: 100%;

    height: 1px;

    margin: 28px 0 20px;

    background-color: #e5edef;

}


/* =====================================================
   PARTE INFERIOR
===================================================== */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-copy {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 11px;

}


.footer-copy strong {

    color: var(--hidro-primary);

    font-weight: 700;

}


/* =====================================================
   ESLOGAN
===================================================== */

.footer-slogan {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 11px;

    text-align: right;

}


.footer-slogan span {

    color: var(--hidro-primary);

    font-weight: 700;

}


.footer-slogan i {

    margin-left: 5px;

    color: var(--hidro-secondary);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .footer {

        margin-left: 0;

        padding: 35px 25px;

    }

}


@media (max-width: 767px) {

    .footer {

        padding: 35px 20px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .footer-slogan {

        text-align: center;

    }

}


@media (max-width: 575px) {

    .footer {

        padding: 30px 18px;

    }


    .footer-description {

        font-size: 11px;

    }


    .footer-title {

        margin-top: 25px;

    }


    .footer-bottom {

        gap: 10px;

    }

}
/* =====================================================
   INICIO
===================================================== */

.inicio-section {

    min-height: 100vh;

    padding: 100px 8%;

    display: flex;

    align-items: center;

    background: #ffffff;

}


/* =====================================================
   BADGE
===================================================== */
.inicio-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 25px;

    border-radius: 50px;

    background-color: rgba(40, 170, 226, 0.12);

    color: var(--hidro-accent);

    font-size: 12px;

    font-weight: 600;
}


.inicio-badge i {

    font-size: 13px;

}


/* =====================================================
   TÍTULO
===================================================== */

.inicio-title {

    max-width: 800px;

    margin-bottom: 30px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;

}


.inicio-title span {

    display: block;

    color: var(--hidro-primary);

}


/* =====================================================
   DESCRIPCIÓN
===================================================== */

.inicio-description {

    max-width: 650px;

    margin-bottom: 30px;

    color: var(--hidro-text-light);

    font-size: 18px;

    line-height: 1.7;

}


.inicio-description strong {

    color: var(--hidro-text);

}


/* =====================================================
   BOTONES INICIO
===================================================== */

.inicio-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 35px;

    align-items: center;

}


/* =====================================================
   BOTÓN PRINCIPAL
===================================================== */

.btn-hidro {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border: 2px solid var(--hidro-primary);

    border-radius: 10px;

    background-color: var(--hidro-primary);

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0, 95, 64, .15);

    transition: all .25s ease;

}


.btn-hidro:hover {

    background-color: var(--hidro-secondary);

    border-color: var(--hidro-secondary);

    color: var(--hidro-primary) !important;

    transform: translateY(-2px);

    box-shadow: 0 9px 22px rgba(0, 95, 64, .18);

}


.btn-hidro i {

    font-size: 15px;

    transition: transform .25s ease;

}


.btn-hidro:hover i {

    transform: translateX(4px);

}


/* =====================================================
   BOTÓN SECUNDARIO
===================================================== */

.btn-outline-hidro {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border: 2px solid var(--hidro-accent);

    border-radius: 10px;

    background-color: rgba(40, 170, 226, .07);

    color: var(--hidro-primary) !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;

}


.btn-outline-hidro:hover {

    background-color: var(--hidro-accent);

    border-color: var(--hidro-accent);

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(40, 170, 226, .18);

}


.btn-outline-hidro i {

    font-size: 15px;

    transition: transform .25s ease;

}


.btn-outline-hidro:hover i {

    transform: translateX(4px);

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 575px) {

    .inicio-buttons {

        flex-direction: column;

        align-items: stretch;

        width: 100%;

    }


    .btn-hidro,
    .btn-outline-hidro {

        width: 100%;

    }

}


/* =====================================================
   MENSAJE
===================================================== */

.inicio-message {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 550px;

    color: #7a8b91;

    font-size: 12px;

    line-height: 1.5;

}


.inicio-message i {

    color: var(--hidro-primary);

    font-size: 18px;

}


/* =====================================================
   VISUAL
===================================================== */

.inicio-visual {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Círculo */

/* =====================================================
   CÍRCULO PRINCIPAL - LOGO HIDROEFICIENTE
===================================================== */

.inicio-water {
    width: 265px;
    height:265px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


/* =====================================================
   LOGO
===================================================== */

.inicio-water img {
    width: 78%;
    height: 78%;

    display: block;

    object-fit: contain;

    object-position: center;

    max-width: 100%;
    max-height: 100%;
}

/* =====================================================
   TARJETAS FLOTANTES
===================================================== */

.inicio-floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: #ffffff;

    border: 1px solid #e5edef;

    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

}


.floating-icon {

    width: 40px;
    height: 40px;

    border-radius: 10px;

    background-color: rgba(140, 198, 63, 0.15);

    color: var(--hidro-primary);

    display: flex;

    align-items: center;
    justify-content: center;
}


.inicio-floating-card strong {

    display: block;

    font-size: 12px;

}


.inicio-floating-card span {

    display: block;

    color: var(--hidro-text-light);

    font-size: 10px;

}


.card-one {

    top: 80px;

    right: 0;

}


.card-two {

    bottom: 70px;

    left: 0;

}


/* =====================================================
   GALERÍA HIDROEFICIENTE
===================================================== */

.inicio-galeria-section {
    width: 100%;
    padding: 100px 0 90px;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   ENCABEZADO
===================================================== */

.inicio-galeria-section .container-fluid {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 35px;
}

.inicio-section-label {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--hidro-primary);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inicio-galeria-title {
    margin: 0 auto 20px;

    color: var(--hidro-primary);

    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;

    letter-spacing: -2px;
}

.inicio-galeria-title span {
    color: var(--hidro-secondary);
}

.inicio-galeria-text {
    max-width: 720px;
    margin: 0 auto;

    color: var(--hidro-text-light);

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   CONTENEDOR DEL CARRUSEL
===================================================== */

.inicio-galeria {
    position: relative;

    width: 100%;
    max-width: 1400px;

    height: 520px;

    margin: 55px auto 0;

    padding: 0 55px;
}


/* =====================================================
   VENTANA
===================================================== */

.inicio-galeria-window {
    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* =====================================================
   TRACK
===================================================== */

.inicio-galeria-track {
    display: flex;

    width: 100%;
    height: 100%;

    gap: 12px;

    transition: all .55s ease;
}


/* =====================================================
   IMÁGENES
===================================================== */

.inicio-galeria-item {

    position: relative;

    height: 100%;

    /*
       Imagen normal
    */

    flex: 0.75 1 0;

    overflow: hidden;

    border-radius: 16px;

    background: #edf2ef;

    cursor: pointer;

    transition:
        flex .6s cubic-bezier(.4, 0, .2, 1),
        opacity .4s ease,
        transform .4s ease;
}


/* =====================================================
   IMAGEN ACTIVA / GRANDE
===================================================== */

.inicio-galeria-item.active {

    /*
       La imagen activa ocupa
       aproximadamente la mitad
       del carrusel.
    */

    flex: 3 1 0;

}


/* =====================================================
   IMAGEN
===================================================== */

.inicio-galeria-item img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .4s ease;
}


/* Imagen grande */

.inicio-galeria-item.active img {

    transform: scale(1.01);

}


/* Efecto hover */

.inicio-galeria-item:hover img {

    transform: scale(1.04);

}


/* =====================================================
   OSCURECIMIENTO DE MINIATURAS
===================================================== */

.inicio-galeria-item:not(.active)::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 55, 38, .12);

    transition: background .3s ease;

}


/* La activa queda limpia */

.inicio-galeria-item.active::after {

    content: none;

}


/* =====================================================
   BOTONES
===================================================== */

.inicio-galeria-btn {

    position: absolute;

    top: 50%;

    z-index: 20;

    width: 54px;
    height: 54px;

    padding: 0;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #ffffff;

    color: var(--hidro-primary);

    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.inicio-galeria-btn:hover {

    background: var(--hidro-primary);

    color: #ffffff;

    transform: translateY(-50%) scale(1.07);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .20);
}


.inicio-galeria-btn:active {

    transform: translateY(-50%) scale(.95);

}


.inicio-galeria-prev {

    left: 5px;

}


.inicio-galeria-next {

    right: 5px;

}


/* =====================================================
   INDICADORES
===================================================== */

.inicio-galeria-dots {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 25px;

}


.inicio-galeria-dot {

    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #cbd3cf;

    cursor: pointer;

    transition:
        width .25s ease,
        height .25s ease,
        background .25s ease;
}


.inicio-galeria-dot:hover {

    background: #9eaaa4;

}


.inicio-galeria-dot.active {

    width: 11px;
    height: 11px;

    background: var(--hidro-primary);

}


/* =====================================================
   PANEL INFERIOR
===================================================== */

.inicio-galeria-highlight {

    max-width: 1350px;

    margin: 35px auto 0;

    padding: 27px 35px;

    display: flex;

    align-items: center;

    gap: 20px;

    background: #f0f7f1;

    border-radius: 18px;

}


/* =====================================================
   LOGO PANEL GALERÍA
===================================================== */

.inicio-galeria-highlight-icon {

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    overflow: hidden;

}


/* Logo */

.inicio-galeria-highlight-icon img {

    width: 82%;
    height: 82%;

    display: block;

    object-fit: contain;

}


.inicio-galeria-highlight-text {

    flex: 1;

}


.inicio-galeria-highlight-text h3 {

    margin: 0 0 5px;

    color: var(--hidro-primary);

    font-size: 20px;

    font-weight: 800;

}


.inicio-galeria-highlight-text p {

    max-width: 850px;

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 13px;

    line-height: 1.6;

}


.inicio-galeria-highlight-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 15px 24px;

    border-radius: 10px;

    background: var(--hidro-primary);

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all .25s ease;

}


.inicio-galeria-highlight-btn:hover {

    background: var(--hidro-secondary);

    color: var(--hidro-primary);

    transform: translateY(-2px);

}


.inicio-galeria-highlight-btn i {

    transition: transform .25s ease;

}


.inicio-galeria-highlight-btn:hover i {

    transform: translateX(4px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .inicio-galeria {

        height: 480px;

        padding: 0 45px;

    }


    .inicio-galeria-item {

        flex: .65 1 0;

    }


    .inicio-galeria-item.active {

        flex: 2.5 1 0;

    }

}


/* =====================================================
   TABLET PEQUEÑA
===================================================== */

@media (max-width: 768px) {

    .inicio-galeria-section {

        padding: 85px 0;

    }


    .inicio-galeria-section .container-fluid {

        padding: 0 25px;

    }


    .inicio-galeria {

        height: 430px;

        padding: 0 35px;

        margin-top: 45px;

    }


    .inicio-galeria-track {

        gap: 8px;

    }


    .inicio-galeria-item {

        flex: .55 1 0;

    }


    .inicio-galeria-item.active {

        flex: 2.3 1 0;

    }


    .inicio-galeria-btn {

        width: 46px;
        height: 46px;

        font-size: 17px;

    }


    .inicio-galeria-prev {

        left: 5px;

    }


    .inicio-galeria-next {

        right: 5px;

    }


    .inicio-galeria-highlight {

        flex-wrap: wrap;

        margin-left: 0;
        margin-right: 0;

        padding: 25px;

    }


    .inicio-galeria-highlight-btn {

        margin-left: 78px;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 575px) {

    .inicio-galeria-section {

        padding: 70px 0 75px;

    }


    .inicio-galeria-section .container-fluid {

        padding: 0 20px;

    }


    .inicio-galeria-title {

        font-size: 40px;

        letter-spacing: -1.5px;

    }


    .inicio-galeria-text {

        font-size: 14px;

    }


    .inicio-galeria {

        height: 430px;

        margin-top: 40px;

        padding: 0 25px;

    }


    /*
       En celular dejamos la principal
       arriba y las pequeñas abajo.
    */

    .inicio-galeria-track {

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        grid-template-rows: 1fr 80px;

        gap: 7px;

    }


    .inicio-galeria-item {

        min-width: 0;

        height: auto;

        flex: none !important;

    }


    .inicio-galeria-item.active {

        grid-column: 1 / -1;

        grid-row: 1;

    }


    .inicio-galeria-item:not(.active) {

        grid-row: 2;

    }


    .inicio-galeria-btn {

        width: 42px;
        height: 42px;

        font-size: 15px;

    }


    .inicio-galeria-prev {

        left: 0;

    }


    .inicio-galeria-next {

        right: 0;

    }


    .inicio-galeria-dots {

        margin-top: 22px;

    }


    .inicio-galeria-highlight {

        display: block;

        margin-top: 30px;

        padding: 27px 20px;

        text-align: center;

    }


    .inicio-galeria-highlight-icon {

        margin: 0 auto 15px;

    }


    .inicio-galeria-highlight-text {

        margin-bottom: 20px;

    }


    .inicio-galeria-highlight-text h3 {

        font-size: 18px;

    }


    .inicio-galeria-highlight-text p {

        font-size: 12px;

    }


    .inicio-galeria-highlight-btn {

        width: 100%;

        margin: 0;

    }

}

/* =====================================================
   IMPACTO PREVIEW
===================================================== */

.inicio-impacto-preview {

    padding: 120px 8%;

    background: #ffffff;

}


.inicio-impacto-title {

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.1;

    font-weight: 800;

}


.inicio-impacto-title span {

    display: block;

    color: var(--hidro-primary);

}


.inicio-impact-card {

    height: 100%;

    padding: 30px;

    border: 1px solid #e5edef;

    border-radius: 18px;

    background: #ffffff;

    transition: .3s ease;

}


.inicio-impact-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);

}


.impact-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 20px;

    border-radius: 12px;

    background: #e7f7f9;

    color: var(--hidro-primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


.inicio-impact-card h3 {

    margin-bottom: 10px;

    font-size: 20px;

    font-weight: 700;

}


.inicio-impact-card p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .inicio-section {

        padding-top: 80px;

        padding-bottom: 80px;

        text-align: center;

    }


    .inicio-description {

        margin-left: auto;

        margin-right: auto;

    }


    .inicio-buttons {

        justify-content: center;

    }


    .inicio-message {

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }


    .inicio-visual {

        min-height: 350px;

    }


    .inicio-water {

        width: 270px;

        height: 270px;

    }


    .inicio-water i {

        font-size: 105px;

    }


    .card-one {

        right: 5%;

    }


    .card-two {

        left: 5%;

    }

}


@media (max-width: 575px) {

    .inicio-section {

        padding-left: 25px;

        padding-right: 25px;

    }


    .inicio-title {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .inicio-description {

        font-size: 16px;

    }


    .inicio-visual {

        min-height: 300px;

    }


    .inicio-water {

        width: 210px;

        height: 210px;

    }


    .inicio-water i {

        font-size: 80px;

    }


    .inicio-floating-card {

        padding: 10px 12px;

    }


    .floating-icon {

        width: 32px;

        height: 32px;

        font-size: 13px;

    }


    .inicio-floating-card strong {

        font-size: 10px;

    }


    .inicio-floating-card span {

        font-size: 9px;

    }


    .card-one {

        top: 20px;

        right: 0;

    }


    .card-two {

        bottom: 20px;

        left: 0;

    }

}
/* =====================================================
   PROBLEMA
===================================================== */

.problema-section {

    min-height: 100vh;

    padding: 120px 8%;

    background-color: var(--hidro-bg);

}


/* =====================================================
   ENCABEZADO
===================================================== */

.problema-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--hidro-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.problema-title {

    max-width: 900px;

    margin-bottom: 25px;

    font-size: clamp(40px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.problema-title span {

    display: block;

    color: var(--hidro-primary);

}


.problema-intro {

    max-width: 750px;

    color: var(--hidro-text-light);

    font-size: 17px;

    line-height: 1.8;

}


/* =====================================================
   TARJETAS DE DATOS
===================================================== */

.problema-card {

    height: 100%;

    padding: 32px;

    background-color: var(--hidro-white);

    border: 1px solid var(--hidro-border);

    border-radius: 20px;

    transition: transform .3s ease,
                box-shadow .3s ease;

}


.problema-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}


.problema-card-dark {

    background-color: var(--hidro-primary);

    border-color: var(--hidro-primary);

    color: white;

}


.problema-card-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 25px;

    border-radius: 13px;

    background-color: rgba(0, 95, 64, .10);

    color: var(--hidro-primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


.problema-card-dark .problema-card-icon {

    background-color: rgba(255,255,255,.12);

    color: white;

}


.problema-card-icon.blue {

    background-color: rgba(40,170,226,.12);

    color: var(--hidro-accent);

}


.problema-card-icon.green {

    background-color: rgba(140,198,63,.15);

    color: var(--hidro-secondary);

}


/* =====================================================
   NÚMEROS
===================================================== */

.problema-number {

    margin-bottom: 5px;

    color: var(--hidro-primary);

    font-size: 55px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;

}


.problema-card-dark .problema-number {

    color: white;

}


.blue-text {

    color: var(--hidro-accent);

}


.green-text {

    color: var(--hidro-secondary);

}


.problema-card h3 {

    margin-bottom: 12px;

    font-size: 18px;

    font-weight: 700;

}


.problema-card p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 13px;

    line-height: 1.7;

}


.problema-card-dark p {

    color: rgba(255,255,255,.75);

}


/* =====================================================
   MENSAJE CENTRAL
===================================================== */

.problema-message {

    margin-top: 80px;

    padding: 60px;

    background-color: var(--hidro-primary);

    border-radius: 25px;

    color: white;

}


.problema-big-icon {

    width: 130px;

    height: 130px;

    margin: auto;

    border-radius: 50%;

    background-color: rgba(255,255,255,.10);

    display: flex;

    align-items: center;

    justify-content: center;

}


.problema-big-icon i {

    color: var(--hidro-accent);

    font-size: 60px;

}


.problema-message-label {

    display: block;

    margin-bottom: 15px;

    color: var(--hidro-secondary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.problema-message h3 {

    max-width: 750px;

    margin-bottom: 20px;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 800;

}


.problema-message p {

    max-width: 750px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.8;

}


.problema-link {

    color: white;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

}


.problema-link i {

    margin-left: 5px;

}


/* =====================================================
   CONEXIÓN CON HIDROPONÍA
===================================================== */

.problema-hidro {

    margin-top: 110px;

}


.problema-subtitle {

    max-width: 700px;

    margin-bottom: 25px;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 800;

}


.problema-subtitle span {

    display: block;

    color: var(--hidro-primary);

}


.problema-hidro > .col-lg-6 > p {

    max-width: 600px;

    color: var(--hidro-text-light);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   HIGHLIGHT
===================================================== */

.problema-highlight {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    padding: 14px 18px;

    background-color: rgba(40,170,226,.08);

    border: 1px solid rgba(40,170,226,.15);

    border-radius: 13px;

}


.problema-highlight > i {

    color: var(--hidro-accent);

    font-size: 24px;

}


.problema-highlight strong {

    display: block;

    color: var(--hidro-primary);

    font-size: 14px;

}


.problema-highlight span {

    display: block;

    color: var(--hidro-text-light);

    font-size: 11px;

}


/* =====================================================
   VISUAL
===================================================== */

.problema-visual {

    position: relative;

    min-height: 400px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.problema-visual-circle {

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background-color: rgba(40,170,226,.10);

    display: flex;

    align-items: center;

    justify-content: center;

}


.problema-visual-circle i {

    color: var(--hidro-accent);

    font-size: 110px;

}


.problema-visual-card {

    position: absolute;

    right: 0;

    bottom: 40px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background-color: white;

    border: 1px solid var(--hidro-border);

    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);

}


.problema-visual-card > i {

    color: var(--hidro-secondary);

    font-size: 25px;

}


.problema-visual-card strong {

    display: block;

    color: var(--hidro-primary);

    font-size: 12px;

}


.problema-visual-card span {

    display: block;

    color: var(--hidro-text-light);

    font-size: 10px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .problema-section {

        padding: 90px 8%;

    }


    .problema-message {

        padding: 45px 30px;

        text-align: center;

    }


    .problema-message p {

        margin-left: auto;

        margin-right: auto;

    }


    .problema-link {

        display: inline-block;

    }


    .problema-hidro {

        text-align: center;

    }


    .problema-hidro > .col-lg-6 > p {

        margin-left: auto;

        margin-right: auto;

    }


    .problema-visual {

        margin-top: 30px;

    }

}


@media (max-width: 575px) {

    .problema-section {

        padding: 80px 25px;

    }


    .problema-title {

        font-size: 42px;

    }


    .problema-intro {

        font-size: 15px;

    }


    .problema-card {

        padding: 25px;

    }


    .problema-number {

        font-size: 48px;

    }


    .problema-message {

        margin-top: 60px;

        padding: 40px 22px;

    }


    .problema-big-icon {

        width: 100px;

        height: 100px;

        margin-bottom: 30px;

    }


    .problema-big-icon i {

        font-size: 45px;

    }


    .problema-visual {

        min-height: 280px;

    }


    .problema-visual-circle {

        width: 210px;

        height: 210px;

    }


    .problema-visual-circle i {

        font-size: 75px;

    }


    .problema-visual-card {

        right: 0;

        bottom: 10px;

    }

}
/* =====================================================
   SOLUCIÓN
===================================================== */

.solucion-section {

    min-height: 100vh;

    padding: 120px 8%;

    background-color: #ffffff;

}


/* =====================================================
   ENCABEZADO
===================================================== */

.solucion-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--hidro-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.solucion-title {

    margin-bottom: 25px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.solucion-title span {

    display: block;

    color: var(--hidro-accent);

}


.solucion-intro {

    max-width: 780px;

    margin: auto;

    color: var(--hidro-text-light);

    font-size: 17px;

    line-height: 1.8;

}


/* =====================================================
   PILARES
===================================================== */

.solucion-pilares {

    margin-top: 70px;

}


.solucion-card {

    height: 100%;

    padding: 30px;

    background-color: var(--hidro-white);

    border: 1px solid var(--hidro-border);

    border-radius: 20px;

    transition: .3s ease;

}


.solucion-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}


.solucion-icon {

    width: 52px;

    height: 52px;

    margin-bottom: 25px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}


.solucion-icon-blue {

    background-color: rgba(40, 170, 226, .12);

    color: var(--hidro-accent);

}


.solucion-icon-green {

    background-color: rgba(140, 198, 63, .16);

    color: var(--hidro-primary);

}


.solucion-number {

    margin-bottom: 8px;

    color: #a3b0aa;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


.solucion-card h3 {

    margin-bottom: 15px;

    color: var(--hidro-text);

    font-size: 19px;

    font-weight: 700;

}


.solucion-card p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 13px;

    line-height: 1.7;

}


.solucion-card p strong {

    color: var(--hidro-primary);

}


/* =====================================================
   SISTEMAS
===================================================== */

.solucion-sistemas {

    margin-top: 130px;

}


.solucion-subtitle {

    max-width: 650px;

    margin-bottom: 25px;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 800;

}


.solucion-subtitle span {

    display: block;

    color: var(--hidro-primary);

}


.solucion-text {

    max-width: 600px;

    margin-bottom: 30px;

    color: var(--hidro-text-light);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   FEATURES
===================================================== */

.solucion-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

}


.solucion-feature-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    border-radius: 12px;

    background-color: rgba(0, 95, 64, .08);

    color: var(--hidro-primary);

    display: flex;

    align-items: center;

    justify-content: center;

}


.solucion-feature strong {

    display: block;

    color: var(--hidro-text);

    font-size: 13px;

}


.solucion-feature span {

    display: block;

    color: var(--hidro-text-light);

    font-size: 11px;

    margin-top: 2px;

}


/* =====================================================
   VISUAL
===================================================== */

.solucion-visual {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.solucion-visual-main {

    width: 310px;

    height: 310px;

    border-radius: 50%;

    background-color: rgba(140, 198, 63, .12);

    border: 2px solid rgba(140, 198, 63, .18);

    display: flex;

    align-items: center;

    justify-content: center;

}


.solucion-visual-main i {

    color: var(--hidro-primary);

    font-size: 110px;

}


.solucion-visual-water,
.solucion-visual-solar,
.solucion-visual-data {

    position: absolute;

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background-color: white;

    border: 1px solid var(--hidro-border);

    box-shadow: 0 12px 30px rgba(0,0,0,.08);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}


.solucion-visual-water {

    top: 50px;

    left: 12%;

    color: var(--hidro-accent);

}


.solucion-visual-solar {

    top: 45px;

    right: 12%;

    color: var(--hidro-secondary);

}


.solucion-visual-data {

    bottom: 45px;

    right: 18%;

    color: var(--hidro-primary);

}


/* =====================================================
   CÓMO FUNCIONA
===================================================== */

.solucion-como {

    margin-top: 130px;

    padding: 70px 6%;

    background-color: var(--hidro-bg);

    border-radius: 28px;

}


.solucion-como-title {

    margin-bottom: 12px;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

}


.solucion-como-intro {

    margin: auto;

    color: var(--hidro-text-light);

    font-size: 15px;

}


/* =====================================================
   PASOS
===================================================== */

.solucion-step {

    position: relative;

    height: 100%;

    padding: 28px 22px;

    text-align: center;

    background-color: white;

    border-radius: 18px;

    border: 1px solid var(--hidro-border);

}


.solucion-step-number {

    width: 32px;

    height: 32px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background-color: var(--hidro-primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    font-weight: 700;

}


.solucion-step > i {

    color: var(--hidro-accent);

    font-size: 28px;

}


.solucion-step h4 {

    margin: 15px 0 10px;

    font-size: 17px;

    font-weight: 700;

}


.solucion-step p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   CTA
===================================================== */

.solucion-cta {

    margin-top: 80px;

    padding: 45px 50px;

    border-radius: 22px;

    background-color: var(--hidro-primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.solucion-cta span {

    color: var(--hidro-secondary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.solucion-cta h3 {

    max-width: 650px;

    margin: 10px 0 0;

    font-size: clamp(24px, 3vw, 38px);

    line-height: 1.15;

    font-weight: 800;

}


.solucion-cta-button {

    flex-shrink: 0;

    padding: 13px 20px;

    border-radius: 10px;

    background-color: white;

    color: var(--hidro-primary);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;

}


.solucion-cta-button:hover {

    background-color: var(--hidro-secondary);

    color: var(--hidro-primary);

}


.solucion-cta-button i {

    margin-left: 5px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .solucion-section {

        padding: 90px 8%;

    }


    .solucion-sistemas {

        margin-top: 90px;

        text-align: center;

    }


    .solucion-text {

        margin-left: auto;

        margin-right: auto;

    }


    .solucion-feature {

        justify-content: flex-start;

        text-align: left;

        max-width: 500px;

        margin-left: auto;

        margin-right: auto;

    }


    .solucion-visual {

        margin-bottom: 30px;

    }


    .solucion-cta {

        flex-direction: column;

        text-align: center;

        padding: 40px 25px;

    }

}


@media (max-width: 575px) {

    .solucion-section {

        padding: 80px 25px;

    }


    .solucion-title {

        font-size: 42px;

    }


    .solucion-intro {

        font-size: 15px;

    }


    .solucion-card {

        padding: 25px;

    }


    .solucion-visual {

        min-height: 300px;

    }


    .solucion-visual-main {

        width: 220px;

        height: 220px;

    }


    .solucion-visual-main i {

        font-size: 75px;

    }


    .solucion-visual-water,
    .solucion-visual-solar,
    .solucion-visual-data {

        width: 55px;

        height: 55px;

        border-radius: 14px;

        font-size: 19px;

    }


    .solucion-visual-water {

        left: 2%;

        top: 30px;

    }


    .solucion-visual-solar {

        right: 2%;

        top: 30px;

    }


    .solucion-visual-data {

        right: 8%;

        bottom: 20px;

    }


    .solucion-como {

        margin-top: 90px;

        padding: 50px 20px;

    }


    .solucion-cta {

        margin-top: 60px;

    }

}
/* =====================================================
   IMPACTO
===================================================== */

.impacto-section {

    min-height: 100vh;

    padding: 120px 8%;

    background-color: var(--hidro-bg);

}


/* =====================================================
   ENCABEZADO
===================================================== */

.impacto-header {

    margin-bottom: 65px;

}


.impacto-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--hidro-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.impacto-title {

    max-width: 800px;

    margin: 0;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.impacto-title span {

    display: block;

    color: var(--hidro-primary);

}


.impacto-intro {

    max-width: 520px;

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   IMPACTO PRINCIPAL
===================================================== */

.impacto-main {

    padding: 55px;

    margin-bottom: 30px;

    border-radius: 25px;

    background-color: var(--hidro-primary);

    color: white;

}


.impacto-number-box {

    position: relative;

    min-height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.impacto-number {

    color: white;

    font-size: clamp(90px, 12vw, 150px);

    line-height: .8;

    font-weight: 800;

    letter-spacing: -8px;

}


.impacto-number-text {

    position: absolute;

    top: 25px;

    left: 15%;

    color: var(--hidro-secondary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

}


.impacto-number-box > i {

    position: absolute;

    right: 15%;

    bottom: 15px;

    color: var(--hidro-accent);

    font-size: 30px;

}


.impacto-main-label {

    display: block;

    margin-bottom: 12px;

    color: var(--hidro-secondary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.impacto-main h3 {

    margin-bottom: 18px;

    font-size: clamp(28px, 3vw, 42px);

    line-height: 1.1;

    font-weight: 800;

}


.impacto-main p {

    max-width: 700px;

    margin-bottom: 15px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.8;

}


.impacto-note {

    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0 !important;

    color: rgba(255,255,255,.55) !important;

    font-size: 11px !important;

}


.impacto-note i {

    color: var(--hidro-accent);

}


/* =====================================================
   TARJETAS
===================================================== */

.impacto-cards {

    margin-bottom: 120px;

}


.impacto-card {

    position: relative;

    height: 100%;

    padding: 28px;

    background-color: white;

    border: 1px solid var(--hidro-border);

    border-radius: 20px;

    transition: .3s ease;

}


.impacto-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0,0,0,.07);

}


.impacto-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}


.impacto-card-top > span {

    color: #aab6b0;

    font-size: 10px;

    font-weight: 700;

}


.impacto-icon {

    width: 50px;

    height: 50px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}


.impacto-icon-blue {

    background-color: rgba(40,170,226,.12);

    color: var(--hidro-accent);

}


.impacto-icon-lime {

    background-color: rgba(140,198,63,.15);

    color: var(--hidro-secondary);

}


.impacto-icon-green {

    background-color: rgba(0,95,64,.09);

    color: var(--hidro-primary);

}


.impacto-card h3 {

    margin-bottom: 12px;

    font-size: 18px;

    font-weight: 700;

}


.impacto-card p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 13px;

    line-height: 1.7;

}


.impacto-card-line {

    width: 35px;

    height: 3px;

    margin-top: 25px;

    border-radius: 10px;

    background-color: var(--hidro-secondary);

}


/* =====================================================
   TECNOLOGÍA
===================================================== */

.impacto-tecnologia {

    margin-bottom: 120px;

}


.impacto-subtitle {

    max-width: 650px;

    margin-bottom: 25px;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 800;

}


.impacto-subtitle span {

    display: block;

    color: var(--hidro-accent);

}


.impacto-text {

    max-width: 600px;

    margin-bottom: 30px;

    color: var(--hidro-text-light);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   FEATURES
===================================================== */

.impacto-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 17px;

}


.impacto-feature-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    border-radius: 12px;

    background-color: rgba(0,95,64,.08);

    color: var(--hidro-primary);

    display: flex;

    align-items: center;

    justify-content: center;

}


.impacto-feature strong {

    display: block;

    color: var(--hidro-text);

    font-size: 13px;

}


.impacto-feature span {

    display: block;

    margin-top: 2px;

    color: var(--hidro-text-light);

    font-size: 11px;

}


/* =====================================================
   DASHBOARD
===================================================== */

.impacto-dashboard {

    padding: 25px;

    background-color: white;

    border: 1px solid var(--hidro-border);

    border-radius: 22px;

    box-shadow: 0 18px 45px rgba(0,0,0,.07);

}


.dashboard-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

}


.dashboard-header span {

    display: block;

    margin-bottom: 3px;

    color: var(--hidro-primary);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.dashboard-header strong {

    font-size: 17px;

}


.dashboard-header > i {

    color: var(--hidro-text-light);

}


/* =====================================================
   DASHBOARD CARDS
===================================================== */

.dashboard-card {

    min-height: 105px;

    padding: 16px;

    border-radius: 14px;

    background-color: var(--hidro-bg);

}


.dashboard-card i {

    display: block;

    margin-bottom: 10px;

    color: var(--hidro-accent);

    font-size: 18px;

}


.dashboard-card span {

    display: block;

    color: var(--hidro-text-light);

    font-size: 10px;

}


.dashboard-card strong {

    display: block;

    margin-top: 3px;

    color: var(--hidro-primary);

    font-size: 13px;

}


/* =====================================================
   GRÁFICO
===================================================== */

.dashboard-chart {

    margin-top: 15px;

    padding: 18px;

    border-radius: 15px;

    background-color: var(--hidro-primary);

}


.chart-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

}


.chart-title span {

    color: white;

    font-size: 11px;

    font-weight: 600;

}


.chart-title i {

    color: var(--hidro-secondary);

}


.chart-bars {

    height: 100px;

    display: flex;

    align-items: flex-end;

    gap: 8px;

}


.chart-bars div {

    flex: 1;

    min-height: 10px;

    border-radius: 5px 5px 2px 2px;

    background-color: var(--hidro-accent);

}


/* =====================================================
   MENSAJE FINAL
===================================================== */

.impacto-final {

    padding: 70px 10%;

    text-align: center;

    border-radius: 28px;

    background-color: white;

    border: 1px solid var(--hidro-border);

}


.impacto-final > i {

    display: block;

    margin-bottom: 20px;

    color: var(--hidro-secondary);

    font-size: 30px;

}


.impacto-final h3 {

    max-width: 850px;

    margin: auto;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;

}


.impacto-final h3 span {

    color: var(--hidro-primary);

}


.impacto-final p {

    margin: 20px auto 0;

    color: var(--hidro-text-light);

    font-size: 14px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .impacto-section {

        padding: 90px 8%;

    }


    .impacto-header {

        margin-bottom: 45px;

    }


    .impacto-intro {

        margin-top: 10px;

    }


    .impacto-number-box {

        min-height: 160px;

    }


    .impacto-main {

        padding: 40px 30px;

        text-align: center;

    }


    .impacto-main p {

        margin-left: auto;

        margin-right: auto;

    }


    .impacto-note {

        justify-content: center;

    }


    .impacto-tecnologia {

        margin-bottom: 90px;

    }


    .impacto-subtitle {

        text-align: center;

    }


    .impacto-text {

        margin-left: auto;

        margin-right: auto;

        text-align: center;

    }


    .impacto-feature {

        max-width: 500px;

        margin-left: auto;

        margin-right: auto;

    }

}


@media (max-width: 575px) {

    .impacto-section {

        padding: 80px 25px;

    }


    .impacto-title {

        font-size: 42px;

    }


    .impacto-intro {

        font-size: 15px;

    }


    .impacto-main {

        padding: 35px 20px;

    }


    .impacto-number {

        font-size: 100px;

    }


    .impacto-number-text {

        left: 10%;

    }


    .impacto-number-box > i {

        right: 10%;

    }


    .impacto-card {

        padding: 25px;

    }


    .impacto-cards {

        margin-bottom: 80px;

    }


    .impacto-tecnologia {

        margin-bottom: 80px;

    }


    .impacto-dashboard {

        padding: 18px;

    }


    .impacto-final {

        padding: 50px 20px;

    }

}
/* =====================================================
   HITOS
===================================================== */

.hitos-section {

    min-height: 100vh;

    padding: 120px 8%;

    background-color: #ffffff;

}


/* =====================================================
   ENCABEZADO
===================================================== */

.hitos-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--hidro-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hitos-title {

    margin-bottom: 25px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.hitos-title span {

    display: block;

    color: var(--hidro-primary);

}


.hitos-intro {

    max-width: 700px;

    margin: auto;

    color: var(--hidro-text-light);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   TIMELINE
===================================================== */

.hitos-timeline {

    position: relative;

    max-width: 1050px;

    margin: 90px auto 0;

}


/* Línea central */

.hitos-timeline::before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 50%;

    width: 2px;

    transform: translateX(-50%);

    background-color: var(--hidro-border);

}


/* =====================================================
   HITO
===================================================== */

.hito-item {

    position: relative;

    width: 50%;

    padding: 0 55px 80px 0;

}


.hito-item-right {

    margin-left: 50%;

    padding: 0 0 80px 55px;

}


/* =====================================================
   NÚMERO
===================================================== */

.hito-number {

    position: absolute;

    top: 0;

    right: -20px;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background-color: var(--hidro-primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;

    box-shadow: 0 0 0 7px white;

}


.hito-item-right .hito-number {

    left: -20px;

    right: auto;

}


.hito-number span {

    font-size: 10px;

    font-weight: 700;

}


/* =====================================================
   CONTENIDO
===================================================== */

.hito-content {

    text-align: right;

}


.hito-item-right .hito-content {

    text-align: left;

}


.hito-year {

    margin-bottom: 12px;

    color: var(--hidro-secondary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =====================================================
   CARD
===================================================== */

.hito-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 25px;

    background-color: var(--hidro-bg);

    border: 1px solid var(--hidro-border);

    border-radius: 18px;

    text-align: left;

    transition: .3s ease;

}


.hito-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.07);

    border-color: rgba(0,95,64,.20);

}


/* =====================================================
   ICONOS
===================================================== */

.hito-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}


.hito-icon-blue {

    background-color: rgba(40,170,226,.12);

    color: var(--hidro-accent);

}


.hito-icon-lime {

    background-color: rgba(140,198,63,.17);

    color: var(--hidro-primary);

}


.hito-icon-green {

    background-color: rgba(0,95,64,.09);

    color: var(--hidro-primary);

}


/* =====================================================
   TEXTO
===================================================== */

.hito-category {

    display: block;

    margin-bottom: 5px;

    color: var(--hidro-accent);

    font-size: 10px;

    font-weight: 700;

}


.hito-card h3 {

    margin-bottom: 10px;

    color: var(--hidro-text);

    font-size: 19px;

    line-height: 1.25;

    font-weight: 700;

}


.hito-card p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 13px;

    line-height: 1.7;

}


/* =====================================================
   MENSAJE FINAL
===================================================== */

.hitos-final {

    max-width: 1050px;

    margin: 20px auto 0;

    padding: 35px 40px;

    border-radius: 20px;

    background-color: var(--hidro-primary);

    color: white;

    display: flex;

    align-items: center;

    gap: 25px;

}


.hitos-final-icon {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    border-radius: 15px;

    background-color: rgba(255,255,255,.10);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--hidro-secondary);

    font-size: 23px;

}


.hitos-final span {

    display: block;

    margin-bottom: 6px;

    color: var(--hidro-secondary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hitos-final h3 {

    margin: 0;

    font-size: clamp(20px, 3vw, 30px);

    line-height: 1.25;

    font-weight: 500;

}


.hitos-final strong {

    color: white;

    font-weight: 800;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .hitos-section {

        padding: 90px 8%;

    }


    .hitos-timeline {

        margin-top: 65px;

    }

}


@media (max-width: 767px) {

    .hitos-section {

        padding: 80px 25px;

    }


    /* Línea lateral */

    .hitos-timeline::before {

        left: 20px;

        transform: none;

    }


    /* Todos los elementos */

    .hito-item,
    .hito-item-right {

        width: 100%;

        margin-left: 0;

        padding: 0 0 55px 55px;

    }


    /* Número */

    .hito-number,
    .hito-item-right .hito-number {

        left: 0;

        right: auto;

    }


    /* Contenido */

    .hito-content,
    .hito-item-right .hito-content {

        text-align: left;

    }


    .hito-card {

        padding: 20px;

    }


    .hito-card h3 {

        font-size: 17px;

    }


    .hitos-final {

        padding: 30px 22px;

        align-items: flex-start;

    }

}


@media (max-width: 575px) {

    .hitos-title {

        font-size: 42px;

    }


    .hitos-intro {

        font-size: 15px;

    }


    .hito-card {

        flex-direction: column;

        gap: 15px;

    }


    .hitos-final {

        flex-direction: column;

        gap: 15px;

    }

}
/* =====================================================
   NOSOTROS
===================================================== */

.nosotros-section {

    min-height: 100vh;

    padding: 120px 8%;

    background-color: var(--hidro-bg);

}


/* =====================================================
   ENCABEZADO
===================================================== */

.nosotros-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--hidro-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.nosotros-title {

    margin-bottom: 25px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.nosotros-title span {

    display: block;

    color: var(--hidro-accent);

}


.nosotros-intro {

    max-width: 800px;

    margin: auto;

    color: var(--hidro-text-light);

    font-size: 16px;

    line-height: 1.9;

}


/* =====================================================
   DESCRIPCIÓN
===================================================== */

.nosotros-description {

    max-width: 1100px;

    margin: 90px auto 0;

    padding: 50px;

    background-color: white;

    border: 1px solid var(--hidro-border);

    border-radius: 24px;

}


.nosotros-description-title {

    margin: 0;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.1;

    font-weight: 800;

}


.nosotros-description-title span {

    display: block;

    color: var(--hidro-primary);

}


.nosotros-description p {

    margin-bottom: 18px;

    color: var(--hidro-text-light);

    font-size: 14px;

    line-height: 1.8;

}


.nosotros-description p:last-child {

    margin-bottom: 0;

}


/* =====================================================
   EQUIPO
===================================================== */

.nosotros-equipo-section {

    max-width: 1100px;

    margin: 120px auto 0;

}


.nosotros-team-title {

    margin-bottom: 0;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 800;

}


.nosotros-team-title span {

    display: block;

    color: var(--hidro-primary);

}


.nosotros-equipo {

    margin-top: 55px;

}


/* =====================================================
   PERSONAS
===================================================== */

.persona-card {

    height: 100%;

    overflow: hidden;

    background-color: white;

    border: 1px solid var(--hidro-border);

    border-radius: 22px;

    transition: .3s ease;

}


.persona-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);

}


.persona-foto {

    width: 100%;

    height: 340px;

    overflow: hidden;

    background-color: #e8efeb;

}


.persona-foto img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;

}


.persona-card:hover .persona-foto img {

    transform: scale(1.04);

}


.persona-info {

    padding: 25px;

}


.persona-area {

    display: block;

    margin-bottom: 8px;

    color: var(--hidro-accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.persona-info h3 {

    margin-bottom: 7px;

    color: var(--hidro-primary);

    font-size: 21px;

    font-weight: 700;

}


.persona-info p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 12px;

    line-height: 1.5;

}


/* =====================================================
   MISIÓN
===================================================== */

.nosotros-mision {

    max-width: 1100px;

    margin: 120px auto 0;

    padding: 60px;

    background-color: var(--hidro-primary);

    border-radius: 25px;

    color: white;

}


.nosotros-mision-icon,
.nosotros-vision-icon {

    width: 60px;

    height: 60px;

    margin-bottom: 22px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}


.nosotros-mision-icon {

    background-color: rgba(255,255,255,.10);

    color: var(--hidro-secondary);

}


.nosotros-mision h3,
.nosotros-vision h3 {

    margin: 0;

    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.15;

    font-weight: 800;

}


.nosotros-mision > .row > .col-lg-4 .nosotros-label {

    color: var(--hidro-secondary);

}


.nosotros-mision p {

    margin-bottom: 18px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.85;

}


.nosotros-mision p:last-child {

    margin-bottom: 0;

}


/* =====================================================
   VISIÓN
===================================================== */

.nosotros-vision {

    max-width: 1100px;

    margin: 30px auto 0;

    padding: 60px;

    background-color: white;

    border: 1px solid var(--hidro-border);

    border-radius: 25px;

}


.nosotros-vision-icon {

    background-color: rgba(40,170,226,.10);

    color: var(--hidro-accent);

}


.nosotros-vision p {

    margin: 0;

    color: var(--hidro-text-light);

    font-size: 15px;

    line-height: 1.85;

}


.nosotros-vision > .row > .col-lg-4 {

    text-align: right;

}


.nosotros-vision > .row > .col-lg-4 .nosotros-label {

    color: var(--hidro-accent);

}


/* =====================================================
   ESLOGAN
===================================================== */

.nosotros-eslogan {

    max-width: 900px;

    margin: 100px auto 0;

    text-align: center;

}


.nosotros-eslogan > i {

    display: block;

    margin-bottom: 20px;

    color: var(--hidro-secondary);

    font-size: 35px;

}


.nosotros-eslogan h3 {

    margin: 0;

    font-size: clamp(28px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;

}


.nosotros-eslogan h3 span {

    color: var(--hidro-primary);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .nosotros-section {

        padding: 90px 8%;

    }


    .nosotros-description {

        margin-top: 65px;

        padding: 40px;

    }


    .nosotros-equipo-section {

        margin-top: 90px;

    }


    .nosotros-mision {

        margin-top: 90px;

        padding: 45px 35px;

    }


    .nosotros-vision {

        padding: 45px 35px;

    }


    .nosotros-vision > .row > .col-lg-4 {

        text-align: left;

    }

}


@media (max-width: 767px) {

    .nosotros-section {

        padding: 80px 25px;

    }


    .nosotros-title {

        font-size: 42px;

    }


    .nosotros-description {

        padding: 30px 25px;

    }


    .persona-foto {

        height: 360px;

    }


    .nosotros-mision {

        padding: 35px 25px;

    }


    .nosotros-vision {

        padding: 35px 25px;

    }


    .nosotros-eslogan {

        margin-top: 75px;

    }

}


@media (max-width: 575px) {

    .nosotros-intro {

        font-size: 15px;

    }


    .persona-foto {

        height: 330px;

    }


    .persona-info {

        padding: 22px;

    }


    .nosotros-mision p,
    .nosotros-vision p {

        font-size: 14px;

    }

}
/* =====================================================
   CONTACTO
===================================================== */

.contacto-section {

    min-height: 100vh;

    padding: 120px 8%;

    background-color: var(--hidro-primary);

    color: white;

}


/* =====================================================
   ENCABEZADO
===================================================== */

.contacto-header {

    margin-bottom: 70px;

}


.contacto-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--hidro-secondary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contacto-title {

    max-width: 850px;

    margin: 0;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.contacto-title span {

    display: block;

    color: var(--hidro-accent);

}


.contacto-intro {

    max-width: 500px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 15px;

    line-height: 1.8;

}


/* =====================================================
   CONTENIDO
===================================================== */

.contacto-content {

    max-width: 1150px;

    margin: auto;

}


/* =====================================================
   INFORMACIÓN
===================================================== */

.contacto-info {

    height: 100%;

    padding: 40px 10px 40px 0;

}


.contacto-info-label {

    display: block;

    margin-bottom: 15px;

    color: var(--hidro-secondary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contacto-info h3 {

    max-width: 500px;

    margin-bottom: 20px;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.15;

    font-weight: 800;

}


.contacto-info > p {

    max-width: 500px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   ITEMS DE CONTACTO
===================================================== */

.contacto-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 17px 0;

    border-top: 1px solid rgba(255,255,255,.12);

    color: white;

    text-decoration: none;

    transition: .25s ease;

}


.contacto-item:last-child {

    border-bottom: 1px solid rgba(255,255,255,.12);

}


.contacto-item:hover {

    padding-left: 7px;

}


.contacto-item-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

}


.contacto-whatsapp {

    background-color: rgba(140,198,63,.14);

    color: var(--hidro-secondary);

}


.contacto-email {

    background-color: rgba(40,170,226,.14);

    color: var(--hidro-accent);

}


.contacto-item span {

    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.48);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.contacto-item strong {

    display: block;

    color: white;

    font-size: 13px;

    font-weight: 600;

}


.contacto-item-arrow {

    margin-left: auto;

    color: rgba(255,255,255,.35);

    font-size: 14px;

}


/* =====================================================
   FORMULARIO
===================================================== */

.contacto-form-card {

    padding: 40px;

    background-color: white;

    border-radius: 22px;

    color: var(--hidro-text);

}


.contacto-form-label {

    display: block;

    margin-bottom: 8px;

    color: var(--hidro-primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contacto-form-card h3 {

    margin-bottom: 30px;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 800;

}


/* =====================================================
   INPUTS
===================================================== */

.contacto-form-card .form-label {

    margin-bottom: 7px;

    color: var(--hidro-text);

    font-size: 11px;

    font-weight: 600;

}


.contacto-input {

    min-height: 46px;

    border: 1px solid var(--hidro-border);

    border-radius: 9px;

    color: var(--hidro-text);

    font-size: 12px;

    box-shadow: none !important;

}


.contacto-input::placeholder {

    color: #a5b1ad;

}


.contacto-input:focus {

    border-color: var(--hidro-accent);

    box-shadow: 0 0 0 3px rgba(40,170,226,.10) !important;

}


textarea.contacto-input {

    resize: vertical;

    min-height: 120px;

}


/* =====================================================
   BOTÓN
===================================================== */

.contacto-submit {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

    padding: 13px 22px;

    border: none;

    border-radius: 9px;

    background-color: var(--hidro-primary);

    color: white;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;

}


.contacto-submit:hover {

    background-color: var(--hidro-accent);

}


.contacto-submit i {

    transition: transform .25s ease;

}


.contacto-submit:hover i {

    transform: translateX(4px);

}


/* =====================================================
   CIERRE
===================================================== */

.contacto-final {

    max-width: 1000px;

    margin: 100px auto 0;

    display: flex;

    align-items: center;

    gap: 25px;

}


.contacto-final-line {

    flex: 1;

    height: 1px;

    background-color: rgba(255,255,255,.12);

}


.contacto-final-content {

    display: flex;

    align-items: center;

    gap: 10px;

}


.contacto-final-content i {

    color: var(--hidro-accent);

    font-size: 20px;

}


.contacto-final-content p {

    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 11px;

    text-align: center;

}


.contacto-final-content strong {

    color: var(--hidro-secondary);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .contacto-section {

        padding: 90px 8%;

    }


    .contacto-header {

        margin-bottom: 50px;

    }


    .contacto-intro {

        margin-top: 10px;

    }


    .contacto-info {

        padding: 20px 0;

    }


    .contacto-form-card {

        padding: 35px 30px;

    }

}


@media (max-width: 767px) {

    .contacto-section {

        padding: 80px 25px;

    }


    .contacto-title {

        font-size: 42px;

    }


    .contacto-intro {

        font-size: 14px;

    }


    .contacto-info h3 {

        font-size: 30px;

    }


    .contacto-form-card {

        padding: 30px 22px;

    }


    .contacto-final {

        margin-top: 70px;

    }


    .contacto-final-line {

        display: none;

    }


    .contacto-final-content {

        justify-content: center;

        flex-direction: column;

        text-align: center;

    }

}
/* =====================================================
   BOTÓN FLOTANTE WHATSAPP
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #25D366;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 28px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, .18);

    z-index: 2000;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


/* Hover */

.whatsapp-float:hover {

    color: #ffffff;

    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .22);

}


/* =====================================================
   ANIMACIÓN SUAVE
===================================================== */

.whatsapp-float::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid rgba(37, 211, 102, .25);

    animation: whatsapp-pulse 2.2s infinite;

}


@keyframes whatsapp-pulse {

    0% {

        transform: scale(.9);

        opacity: .8;

    }

    70% {

        transform: scale(1.15);

        opacity: 0;

    }

    100% {

        transform: scale(1.15);

        opacity: 0;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 575px) {

    .whatsapp-float {

        right: 18px;

        bottom: 18px;

        width: 52px;

        height: 52px;

        font-size: 25px;

    }

}