/* ============================================
   DISEÑO MODERNO 2026 - CLEANING SERVICES
   ============================================ */

/* === RESET Y CONFIGURACIÓN BASE === */
:root {
    --color-principal: #7faa40;
    --color-secundario: #11597a;
    --color-oscuro: #1a1a1a;
    --color-texto: #555555;
    --sombra-suave: 0 10px 30px rgba(0, 0, 0, 0.08);
    --sombra-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transicion: all 0.3s ease;
    --border-radius: 18px;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--color-texto);
    line-height: 1.7;
}

/* === NAVEGACIÓN === */
.navbar-nav .nav-item a{
    padding: 10px 0;
    transition: var(--transicion);
    position: relative;
}

.navbar-nav .nav-item a:hover {
    color: var(--color-principal) !important;
}

.navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-principal);
    transition: var(--transicion);
}

.navbar-nav .nav-item a:hover::after {
    width: 80%;
}

.mw-200{
    max-width: 200px;
}
.w-60{
    width: 60px;
}
.dropdown-menu{
    padding: 10px 20px;
    border: none;
    box-shadow: var(--sombra-suave);
    border-radius: 12px;
}
.dropdown-item.active, 
.dropdown-item:active{
    background-color: transparent;
}

/* === RESPONSIVE === */
@media (max-width:991px){
    .overflow-mobile-hidden{
        overflow: hidden;
    }
    .navbar-toggler {
        text-align: center;
        float: right;
        padding-top: 20px;
        border: 2px solid var(--color-principal);
        border-radius: 10px;
    }
}

.pointer{
    cursor: pointer;
}

/* === HERO SECTION CON OVERLAY DEGRADADO === */
.slider-wrapper {
    position: relative;
}

.slider-section {
    position: relative;
}

@media (min-width: 992px) {
    .slider-section .single-slider {
        min-height: 600px;
    }
}

.slider-section .single-slider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.slider-section .single-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(135deg, rgba(17, 89, 122, 0.85) 0%, rgba(26, 51, 50, 0.85) 100%);
    z-index: -1;
}

/* === CONTENIDO DEL SLIDER MODERNO === */
.slider-content-modern {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

/* Badge de Satisfacción */
.satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(127, 170, 64, 0.15);
    border: 2px solid var(--color-principal);
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--color-principal);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.satisfaction-badge i {
    font-size: 24px;
    color: var(--color-principal);
}

/* Título Hero */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .text-green {
    color: var(--color-principal);
}

/* Subtítulo */
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Responsive Hero */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .slider-section .single-slider {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .slider-section .single-slider {
        padding: 60px 0;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .satisfaction-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .satisfaction-badge i {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
}

.slider-title {
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

/* === SERVICIOS FLOTANTES - BARRA VERDE CONTINUA === */
.services-floating-bar {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 15px;
}

.service-inner-bar {
    background-color: var(--color-principal);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-card-green {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.service-card-green.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card-green:hover {
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
    transform: translateY(-5px);
}

/* Ícono circular con fondo oscuro */
.service-icon-dark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2d3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.service-icon-dark i {
    font-size: 36px;
    color: #ffffff;
}

.service-card-green:hover .service-icon-dark {
    background: #4CAF50;
    border-color: #ffffff;
    transform: scale(1.05);
}

/* Textos en blanco */
.service-title-white {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-desc-white {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Ajustar espaciado después del header */
/* .header {
    margin-bottom: 180px;
} */

.first-section-after-services {
    padding-top: 100px !important;
}

@media (max-width: 1199px) {
    .services-floating-bar {
        bottom: -100px;
    }
    
   
}

@media (max-width: 991px) {
    .services-floating-bar {
        position: relative;
        bottom: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .header {
        margin-bottom: 0;
    }
    
    .service-card-green {
        padding: 35px 25px;
        border-radius: 0 !important;
    }
    
    .service-card-green.border-right {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .service-inner-bar {
        border-radius: 20px !important;
    }
    
    .first-section-after-services {
        padding-top: 3rem !important;
    }
}

@media (max-width: 767px) {
    .service-card-green {
        padding: 30px 20px;
    }
    
    .service-title-white {
        font-size: 18px;
    }
    
    .service-desc-white {
        font-size: 13px;
    }
    
    .service-icon-dark {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-dark i {
        font-size: 32px;
    }
}

/* === SECCIONES === */
section {
    position: relative;
    padding: 80px 0;
}

section:nth-child(even) {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    margin-bottom: 50px;
}

.section-title .color-verde {
    color: var(--color-principal) !important;
}

.section-title .color_principal {
    color: var(--color-secundario) !important;
}

/* === DIVIDER === */
.section-divider{
    position: relative;
    border-top: 3px solid var(--color-principal);
}

.section-divider .img-container{
   position: absolute;
   bottom: -2px;
    left: 50%;
    transform: translate(-50%);
    font-size: 2.3em;
    color: var(--color-oscuro);
    background: #fff;
    width: 100px;
    text-align: center;
    padding: 0 15px;
}

/* === TARJETAS MODERNAS === */
.card-inicio {
    background: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-suave);
    transition: var(--transicion);
    overflow: hidden;
    min-height: 643px;
    position: relative;
}

.card-inicio:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.card-inicio .card-body {
    padding: 30px 25px;
}

.card-inicio .color-verde {
    color: var(--color-secundario) !important;
    transition: var(--transicion);
}

.card-inicio:hover .color-verde {
    color: var(--color-principal) !important;
}

.card2 {
    box-shadow: var(--sombra-suave);
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transicion);
}

.card2:hover {
    box-shadow: var(--sombra-hover);
}

.div-custom{
    border-radius: var(--border-radius);
    padding: 2.3em 1em;
    transition: var(--transicion);
    min-height: 100%;
    background: #fff;
}

.div-custom:hover{
    box-shadow: var(--sombra-hover);
    transform: translateY(-5px);
}

.card-section{
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
}

/* === IMÁGENES DE TARJETAS === */
.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.img-wrapper img {
    transition: var(--transicion);
}

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

.img-shadow {
    position: absolute;
    width: 130%;
    height: 120%;
    background-image: url(../img/inicio/shadow.png);
    bottom: -137px;
    left: -116px;
    z-index: -2;
    background-size: cover;
    transition: var(--transicion);
}

.card-inicio:hover .img-shadow {
    z-index: 1;
}

/* === ÍCONOS CIRCULARES MODERNOS === */
.icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
    box-shadow: 0 8px 25px rgba(127, 170, 64, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 15;
    transition: var(--transicion);
}

.card-inicio:hover .icon-wrapper {
    margin-top: -80px;
    background: linear-gradient(135deg, var(--color-secundario) 0%, var(--color-principal) 100%);
    box-shadow: 0 15px 35px rgba(17, 89, 122, 0.3);
    transform: rotate(360deg);
}

/* === BOTONES MODERNOS === */
.theme-btn,
.fondo_verde_claro {
    background: linear-gradient(135deg, var(--color-principal) 0%, #6a9335 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transicion);
    box-shadow: 0 8px 20px rgba(127, 170, 64, 0.25);
    display: inline-block;
}

.theme-btn:hover,
.fondo_verde_claro:hover {
    background: linear-gradient(135deg, #6a9335 0%, var(--color-principal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(127, 170, 64, 0.35);
    color: #ffffff;
}

.btn-menu {
    background: var(--color-principal);
    width: 56px;
    height: 50px;
    padding-top: 0;
    border-radius: 10px !important;
    transition: var(--transicion);
}

.btn-menu:hover {
    background: var(--color-secundario);
    transform: scale(1.05);
}

/* === CARACTERÍSTICAS / FEATURES === */
.row.py-3.my-2 {
    border-radius: 15px;
    box-shadow: var(--sombra-suave);
    transition: var(--transicion);
    background: #ffffff;
}

.row.py-3.my-2:hover {
    box-shadow: var(--sombra-hover);
    transform: translateX(10px);
}

.row.py-3.my-2 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* === SOMBRAS Y EFECTOS === */
.shadow-contact {
    box-shadow: var(--sombra-suave);
    border-radius: var(--border-radius);
    transition: var(--transicion);
}

.shadow-contact:hover {
    box-shadow: var(--sombra-hover);
}

/*** Contact ***/

.contact1 {
        width: 100%;
        min-height: 100%;
        padding: 15px;
        padding-bottom: 50px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .container-contact1 {
        width: 1163px;
        background: #ffffff;
        background-image: url('../img/elements/botella-contacto.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        border-radius: 20px;
        overflow: hidden;

        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;

        padding: 90px 130px 88px 148px;

        box-shadow: var(--sombra-suave);
        transition: var(--transicion);
    }

    .container-contact1:hover {
        box-shadow: var(--sombra-hover);
    }

    /*------------------------------------------------------------------
[  ]*/
    .contact1-pic {
        width: 296px;
    }

    .contact1-pic img {
        max-width: 100%;
    }


    /*------------------------------------------------------------------
[  ]*/


    .contact1-form-title {
        display: block;
        font-size: 24px;
        color: var(--color-secundario);
        line-height: 1.2;
        text-align: center;
        padding-bottom: 44px;
        font-weight: 700;
    }

    input.input1 {
        height: 50px;
        border-radius: 12px;
        padding: 0 30px;
        border: 2px solid rgba(127, 170, 64, 0.2);
        transition: var(--transicion);
    }

    input.input1:focus {
        border-color: var(--color-principal);
        outline: none;
    }

    input.input1+.shadow-input1 {
        border-radius: 12px;
    }

    textarea.input1 {
        min-height: 150px;
        padding: 12px 30px;
        border: 2px solid rgba(127, 170, 64, 0.2);
        border-radius: 12px;
        resize: none;
        transition: var(--transicion);
    }

    textarea.input1:focus {
        border-color: var(--color-principal);
        outline: none;
    }

    textarea.input1+.shadow-input1 {
        border-radius: 12px;
    }

    /*---------------------------------------------*/
    .wrap-input1 {
        position: relative;
        width: 100%;
        z-index: 1;
        margin-bottom: 20px;
    }

    .input1 {
        display: block;
        width: 100%;
        background: #f8f9fa;
        font-size: 15px;
        line-height: 1.5;
        color: #000;
        border: none;
    }

    .shadow-input1 {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        box-shadow: 0px 0px 0px 0px;
        color: rgba(87, 184, 70, 0.5);
    }

    .input1:focus+.shadow-input1 {
        -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
        animation: anim-shadow 0.5s ease-in-out forwards;
    }

    @-webkit-keyframes anim-shadow {
        to {
            box-shadow: 0px 0px 80px 30px;
            opacity: 0;
        }
    }

    @keyframes anim-shadow {
        to {
            box-shadow: 0px 0px 80px 30px;
            opacity: 0;
        }
    }

    /*---------------------------------------------*/
    .container-contact1-form-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact1-form-btn {
        border: none;
        min-width: 193px;
        height: 50px;
        border-radius: 25px;
        background: linear-gradient(135deg, var(--color-principal) 0%, #6a9335 100%);
        font-size: 15px;
        line-height: 1.5;
        color: #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 25px;

        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        box-shadow: 0 8px 20px rgba(127, 170, 64, 0.25);
    }

    .contact1-form-btn i {
        margin-left: 7px;

        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

    .contact1-form-btn:hover {
        background: linear-gradient(135deg, var(--color-secundario) 0%, #0d4661 100%);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(17, 89, 122, 0.3);
    }

    .contact1-form-btn:hover i {
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
        transform: translateX(10px);
    }




    /*------------------------------------------------------------------
[ Responsive ]*/

    @media (max-width: 1200px) {
        .contact1-pic {
            width: 33.5%;
        }

     
    }

    @media (max-width: 992px) {
        .container-contact1 {
            padding: 90px 80px 88px 90px;
            background-position: -200px;
        }

        .contact1-pic {
            width: 35%;
        }

        .contact1-form {
            width: 55%;
        }
    }

    @media (max-width: 768px) {
        .container-contact1 {
            padding: 90px 80px 88px 80px;
            background-image: none;
        }

        .contact1-pic {
            display: none;
        }

        .contact1-form {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .container-contact1 {
            padding: 90px 15px 88px 15px;
        }
    }

    .dbox {
        width: 100%;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    @media (min-width: 768px) {
        .dbox {
            margin-bottom: 0;
            padding: 0;
        }
    }

    .dbox p {
        margin-bottom: 0;
        font-size: 16px;
    }

    .dbox p span {
        font-weight: 500;
        color: #000;
    }

    .dbox p a {
        color: var(--color-secundario);
        transition: var(--transicion);
    }

    .dbox p a:hover {
        color: var(--color-principal);
    }

    .dbox .icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
        margin: 0 auto;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(127, 170, 64, 0.25);
        transition: var(--transicion);
    }

    .dbox .icon:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(127, 170, 64, 0.35);
    }

    .dbox .icon span {
        font-size: 20px;
        color: #fff;
    }

    .dbox .text {
        width: 100%;
    }
    .negrita{font-weight: 900;}


button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
}
button.learn-more {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    padding: 1.25em 2em;
    background: linear-gradient(135deg, var(--color-principal) 0%, #6a9335 100%);
    border: 2px solid var(--color-principal);
    border-radius: 50px;
    transform-style: preserve-3d;
    transition: var(--transicion);
    box-shadow: 0 8px 20px rgba(127, 170, 64, 0.25);
}
button.learn-more::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-secundario);
    border-radius: inherit;
    box-shadow: 0 0 0 2px var(--color-secundario), 0 0.625em 0 0 rgba(127, 170, 64, 0.3);
    transform: translate3d(0, 0.75em, -1em);
    transition: var(--transicion);
}
button.learn-more:hover {
    color: #fff;
    background: var(--color-secundario);
    transform: translate(0, 0.25em);
}
button.learn-more:hover::before {
    box-shadow: 0 0 0 2px var(--color-secundario), 0 0.5em 0 0 rgba(127, 170, 64, 0.3);
    transform: translate3d(0, 0.5em, -1em);
}
button.learn-more:active {
    background: var(--color-secundario);
    transform: translate(0em, 0.75em);
}
button.learn-more:active::before {
    box-shadow: 0 0 0 2px var(--color-secundario), 0 0 rgba(127, 170, 64, 0.3);
    transform: translate3d(0, 0, -1em);
}

.nav-link {
    /*padding: .5rem !important;*/
    margin-right: 5px;
    margin-left: 5px;
    transition: var(--transicion);
}

.nav-link:hover {
    color: var(--color-principal) !important;
}

.theme-btn:hover {
    box-shadow: 0 12px 30px rgba(127, 170, 64, 0.35);
}

.font-oswald-bold{    
    font-family: "Poppins", sans-serif;
    font-weight: 600 !important;
}

.font-normal{    
    font-family: "Poppins", sans-serif;
}
.lh-1_6{line-height: 1.6em;}
.linetop{position: absolute;
    top: 0;
    margin-top: -17px;
    left: 0;
    right: 0;
    font-weight: 900;
}
@media (min-width: 992px) {
.dropdown-menu2{
    top: 112px!important;
    position: fixed !important;width: 100% !important; left: 0; right: 0; border-radius:0 !important; padding-top: 0;
}}
.heauto{height: auto !important;}
.div-img-menu{
    position: relative; margin-top: -50px;
    z-index: 3;}
.borrar{
    filter: blur(3.5px);
     position: fixed;
     height: 100%;
     width: 100%;
     backdrop-filter: blur(5px);
     z-index: -9;
 }
.borrar-show{
    z-index: 9;display:block;}
.lh-3{line-height: 3em;}

@media (min-width: 768px) {
    .banner0 {
        background-image: url("../img/slider/banner3.jpg");
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
    .banner1 {
        background-image: url("../img/slider/banner2.jpg");
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
    .banner2 {
        background-image: url("../img/slider/banner1.jpg");
        background-size: cover;
        background-position: center;
    }
    .bannernosotros {
        background-image: url("../img/nosotros/banner.jpg");
        background-size: cover;
        background-size: cover;
        background-position: top;
    }
    .bannercontacto {
        background-image: url("../img/nosotros/contacto.jpg");
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
    .bannerservicios {
        background-image: url("../img/servicios/banner.jpg");
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
    .icon-contact{
        background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
        color: #fff;
        width: 75px;
        height: 75px;
        font-size: 35px;
        padding: 5px;
        margin: auto;
        line-height: 65px;
        text-align: center;
        display: block;
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(127, 170, 64, 0.25);
        transition: var(--transicion);
    }
    
    .icon-contact:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(127, 170, 64, 0.35);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .icon-contact {
        background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
        color: #fff;
        width: 50px;
        height: 51px;
        font-size: 26px;
        padding: 5px;
        margin: auto;
        line-height: 41px;
    }
}

@media (max-width: 767px) {
    .banner0 {
        background-image: url("../img/slider/banner3.jpg");
        background-size: cover;
        background-position: 50% -5%;
    }
    .banner1 {
        background-image: url("../img/slider/banner2.jpg");
        background-size: cover;
        background-position: center;
    }
    .banner2 {
        background-image: url("../img/slider/banner1.jpg");
        background-size: cover;
        background-position: 70% 10%;
    }
    .bannernosotros {
        background-image: url("../img/nosotros/banner.jpg");
        background-size: cover;
        background-size: cover;
        background-position: top;
    }
    .bannercontacto {
        background-image: url("../img/nosotros/contacto.jpg");
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
    .bannerservicios {
        background-image: url("../img/servicios/banner.jpg");
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
    .icon-contact{
        background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
        color: #fff;
        width:40px;
        height:40px;
        font-size: 25px;
        padding: 5px;
        margin: auto;
        line-height: 20px;
        text-align: center;
        display: block;
        border-radius: 50%;
        box-shadow: 0 6px 15px rgba(127, 170, 64, 0.25);
        transition: var(--transicion);
    }
    
    .icon-contact:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(127, 170, 64, 0.35);
    }
}
.fs-19{font-size: 19px !important ;}

.box-divform{
    width: calc(100% - 1px) !important;
    padding: 8px 16px !important;
    box-shadow: 0 0 0 2px rgba(127, 170, 64, 0.2) inset !important;
    border-radius: 12px !important;
    display: inline-block !important;
    transition: var(--transicion);
}

.box-divform:focus-within {
    box-shadow: 0 0 0 2px var(--color-principal) inset !important;
}
.span-form-input{
    position: relative !important;
    -webkit-flex: 1 !important;
    -ms-flex: 1 1 0% !important;
    flex: 1 !important;
    padding: 0px !important;
    color:#00000080;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 2px;
    line-height: .9;
}
.form-control3{min-height: 31px !important;
    font-size: 17px;
    color: #000 !important;
    width: 100%;
    outline: transparent;
    border:none;
    background-color: transparent !important;
    font-family: "Poppins";
    font-weight:200 !important;
    line-height: inherit !important;
    -webkit-appearance: none !important;
    margin: 0px !important;
    padding: 0px !important;
}
.form-control3::placeholder {color: #4f4f4f78;
}
@media (min-width: 992px) {
    .modal-lg {
        --bs-modal-width: 582px;
    }
}
@media (max-width: 767px) {
.theme-btn{
    width: 100%;
}
    .slider-section .single-slider{
        height: 65vh;
    }

    .header {
        padding-top: 50px;
    }
    .navbar-brand img {
        max-width: 220px;
        transition: .3s;
        overflow: auto;
        padding-left: 10px;
    }
}
.btn-menu{
    background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
    width: 56px;
    height: 50px;
    padding-top: 0;
    border-radius: 10px !important;
    box-shadow: 0 6px 15px rgba(127, 170, 64, 0.25);
    transition: var(--transicion);
}

.btn-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(127, 170, 64, 0.35);
}
.centrar-navs{display: flex;
    margin: auto;
    flex-wrap: nowrap;
    justify-content: space-evenly;}
@media (max-width:1199px) {
    .cuadro-az{padding: 40px; }
}
@media (min-width:1200px) and (max-width: 1700px) {
    .div550 {
        height:500px;

    }
    .cuadro-az{padding-left: 40px; padding-right: 40px;
        width: 50%;}
    .img-cuadro-az{width: 50%;padding: 0; height: 500px; object-fit: cover;}
}

@media (min-width:1701px) {
    .div550 {
        height:560px;
        max-width:1550px ;
        margin: auto;
    }
    .cuadro-az{padding-left: 40px; padding-right: 40px;
        width: 40%;}
    .img-cuadro-az{width: 60%;padding: 0; height: 560px; object-fit: cover;}
}

.cuadro-az{padding-left: 40px; padding-right: 40px; }
/* The Image container */


.boton-distribuidor{
    position: absolute;
right: 0;
    background:#fff ;
    top: 0;
    padding: 1.2em;

}

.grid {
    position: relative;
    clear: both;
    margin: 0 auto;
    padding: 1em 0 4em;
    max-width: 1000px;
    list-style: none;
    text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    height: auto;
    background: #3085a3;
    text-align: center;

}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;}
/*---------------*/
/***** Julia *****/
/*---------------*/

figure.effect-ineos {
    background: #2f3238;
}

figure.effect-ineos img {
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-ineos figcaption {
    text-align: left;
}

figure.effect-ineos h2 {
    position: relative;
    padding: 0.5em 0;
}

figure.effect-ineos p {
    display: inline-block;
    margin: 0 0 0.25em;
    padding: 0.4em 1em;
    background: #B61615;
    color: #fff;
    text-transform: none;
    font-weight: 500;
    font-size: 75%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-360px,0,0);
    transform: translate3d(-360px,0,0);
}

figure.effect-ineos p:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

figure.effect-ineos p:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.effect-ineos p:nth-of-type(3) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

figure.effect-ineos:hover p:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

figure.effect-ineos:hover p:nth-of-type(2) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

figure.effect-ineos:hover p:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.effect-ineos:hover img {
    opacity: 0.4;
    -webkit-transform: scale3d(1.1,1.1,1);
    transform: scale3d(1.1,1.1,1);
}

figure.effect-ineos:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.spanabajo{
    position: absolute;
    bottom: 92px;
}

.abajo{
    position: absolute;
    bottom: 40px;
}

.ml-toleft{
    margin-left: -15px;
}

.sombreado-text{
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

/* Estilos de carrusel modern */
.carousel-inner {
    display: flex;
    overflow: hidden;
}

.carousel-item {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    width: 100%;
}

.d-flex {
    display: flex;
    justify-content: space-between;
}

.carousel-item-image {
    flex: 0 0 14.2857%;
    padding: 5px;
    transition: var(--transicion);
}

.carousel-item-image:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: var(--transicion);
}

.carousel-item img:hover {
    filter: grayscale(0%);
}

@media (min-width:992px) {
    .slider-section .single-slider.interior {
        height: 45vh;
    }
    .slider-interior.slider-section .single-slider .slider-content .interior .slider-title{
        font-size: 65px;
    }
}

.fs-65{
    font-size: 65px !important;
}

/*EFECTO ANTES DESPUES */
main {
    display: grid;
    place-items: center;
}

.container-img {
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    --position: 50%;
    box-shadow: var(--sombra-suave);
    transition: var(--transicion);
}

.container-img:hover {
    box-shadow: var(--sombra-hover);
}

.image-container {
    border-radius: var(--border-radius);
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}

.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.slider:focus-visible ~ .slider-button {
    outline: 5px solid var(--color-principal);
    outline-offset: 3px;
}

.slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: absolute;
    background: linear-gradient(135deg, var(--color-principal) 0%, var(--color-secundario) 100%);
    color: #fff;
    padding: .5rem;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transicion);
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.totop-testimonio{
    margin-top: -160px;
}

.shadow-contact{
    box-shadow: var(--sombra-suave);
    border-radius: var(--border-radius);
    transition: var(--transicion);
}

.shadow-contact:hover {
    box-shadow: var(--sombra-hover);
}

.bradius50{
    border-radius: 50px;
}

/* === UTILIDADES ADICIONALES === */
.lh-1_6{
    line-height: 1.6em;
}

.lh-3{
    line-height: 3em;
}

.heauto{
    height: auto !important;
}

.fs-19{
    font-size: 19px !important;
}

/* === ANIMACIONES Y TRANSICIONES === */

/* WOW.js - Prevenir flash inicial */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* Animación fadeInUp mejorada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Animación fadeInUp de Animate.css para WOW */
.animate__fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BURBUJAS ANIMADAS === */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0), inset 1px -7px 13px rgba(255, 255, 255, 0.54);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 2s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(10) {
    width: 90px;
    height: 90px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 4s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

/* === COMPANY ABOUT SECTION V2 === */
.about-section-v2 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Galería de 2 imágenes con icono central */
.company-img-box2 {
    position: relative;
    max-width: 635px;
}

.company-img-box2 .shape-mockup svg {
    height: 100%;
}

.company-img1 {
    border-radius: 10px;
    overflow: hidden;
    margin-right: 30px;
}

.company-img1 img {
    width: 100%;
    transform: scale(1);
    transition: all 0.5s ease;
    border-radius: 10px;
}

.company-img2 {
    position: absolute;
    bottom: 0px;
    left: 0;
    border: 8px solid #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    max-height: 400px;
}

.company-img2 img {
    display: block;
    border-radius: 4px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.company-img-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background-color: var(--color-principal);
    border: 8px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(127, 170, 64, 0.4);
}

.company-img-icon i {
    font-size: 50px;
    color: #ffffff;
}

.company-img-icon:hover {
    background-color: var(--color-secundario);
    border-color: var(--color-principal);
}

.company-img-box2:hover .company-img1 img {
    transform: scale(1.1);
}

/* Contenido del lado derecho */
.company-content {
    padding-left: 20px;
}

.company-title-area {
    margin-bottom: 22px;
}

.company-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-principal);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.company-sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--color-oscuro);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.company-sec-title .text-highlight {
    color: var(--color-principal);
}

.company-text {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 12px;
}

.company-text-secondary {
    font-size: 15px;
    color: #8a8a8a;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Tab box con lista e imagen */
.company-tab-box {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.company-tab-list {
    flex: 1;
}

.company-list-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    color: var(--color-oscuro);
    margin-bottom: 15px;
}

.company-tab-list ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.company-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 160%;
    color: #555;
    margin-bottom: 8px;
}

.company-list-item i {
    font-size: 22px;
    color: var(--color-principal);
    flex-shrink: 0;
}

.company-tab-img {
    flex-shrink: 0;
    background: linear-gradient(270deg, var(--color-principal) 0%, #6a9435 100%);
    border-radius: 13px;
    padding: 6px;
    max-width: 280px;
}

.company-tab-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Box - Badge de teléfono */
.company-contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px dashed var(--color-principal);
    background: rgba(127, 170, 64, 0.05);
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.company-contact-box:hover {
    background: rgba(127, 170, 64, 0.1);
}

.company-contact-icon {
    width: 60px;
    height: 60px;
    background: var(--color-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-contact-icon i {
    font-size: 28px;
    color: #ffffff;
}

.company-contact-content {
    flex: 1;
}

.company-contact-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 2px;
}

.company-contact-title {
    margin-bottom: 0;
    line-height: 140%;
}

.company-contact-title a {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-oscuro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-contact-title a:hover {
    color: var(--color-principal);
}

/* Botón de servicio */
.company-about-inner {
    display: inline-block;
    margin-bottom: 24px;
}

.company-btn-service {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-principal);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 170, 64, 0.3);
}

.company-btn-service:hover {
    background: var(--color-secundario);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 89, 122, 0.4);
}

.company-btn-service i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.company-btn-service:hover i {
    transform: translateX(5px);
}

/* Responsive Company Section */
@media (max-width: 1199px) {
    .company-sec-title {
        font-size: 42px;
    }
    
    .company-tab-box {
        flex-direction: column;
    }
    
    .company-tab-img {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .company-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .company-sec-title {
        font-size: 36px;
    }
    
    .company-img-box2 {
        max-width: 100%;
    }
    
    .company-img2 {
        max-height: 280px;
    }
    
    .company-img2 img {
        height: 280px;
    }
    
    .company-img-icon {
        width: 110px;
        height: 110px;
    }
    
    .company-img-icon i {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .about-section-v2 {
        padding: 60px 0;
    }
    
    .company-sec-title {
        font-size: 32px;
    }
    
    .company-img1 {
        margin-right: 0;
    }
    
    .company-img2 {
        max-height: 250px;
        max-width: 280px;
    }
    
    .company-img2 img {
        height: 250px;
    }
    
    .company-img-icon {
        width: 90px;
        height: 90px;
        border: 6px solid #ffffff;
    }
    
    .company-img-icon i {
        font-size: 36px;
    }
    
    .company-contact-title a {
        font-size: 18px;
    }
    
    .company-btn-service {
        padding: 14px 32px;
        font-size: 14px;
    }
}

/* =========================== SERVICES SLIDER SECTION - FONDO VERDE OSCURO =========================== */
.services-slider-section {
    background-color: #077e90 !important;
    background: linear-gradient(135deg, #077e90 0%, #0f2d2d 100%) !important;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Franjas removidas por petición del usuario */
.services-slider-section::before {
    content: none;
}

.services-slider-section .container {
    position: relative;
    z-index: 2;
}

/* Header Content */
.services-header-content {
    text-align: left;
}

.services-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #7faa40;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.services-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Navigation Arrows - CIRCULARES */
.services-nav-arrows {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.service-arrow-btn {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid rgba(127, 170, 64, 0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-arrow-btn:hover {
    background: rgba(127, 170, 64, 0.2);
    border-color: #7faa40;
    transform: scale(1.05);
}

.service-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Services Cards Slider */
.services-cards-slider {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px 40px;
}

.services-cards-slider::-webkit-scrollbar {
    display: none;
}

/* Service Card Item - 4 SERVICIOS VISIBLES COMPLETOS */
.service-card-item {
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    flex-shrink: 0;
    margin: 0 20px;
}

/* Animación suave para las cards */
.service-card-item.wow {
    opacity: 0;
    transform: translateY(40px);
}

.service-card-item.wow.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

/* Animación específica para service cards con fadeInUp */
.service-card-item.fadeInUp {
    animation: serviceCardFadeInUp 0.6s ease-out forwards;
}

@keyframes serviceCardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 576px) {
    .service-card-item {
        min-width: calc(80% - 30px);
        max-width: calc(80% - 30px);
        margin: 0 15px;
    }
}

@media (min-width: 768px) {
    .services-cards-slider {
        gap: 20px;
        padding: 20px 2px 40px;
    }
    
    .service-card-item {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin: 0;
    }
}

@media (min-width: 992px) {
    .service-card-item {
        min-width: calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

@media (min-width: 1200px) {
    .service-card-item {
        min-width: calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}

@media (min-width: 1400px) {
    .service-card-item {
        min-width: calc(25% - 15px);
        max-width: 295px;
    }
}

/* Service Card Wrapper - BORDE BLANCO GRUESO */
.service-card-wrapper {
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.service-card-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

/* Image Container */
.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-wrapper:hover .service-card-image img {
    transform: scale(1.15);
}

/* Card Body */
.service-card-body {
    padding: 70px 20px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    position: relative;
}

/* Curva ondulada debajo del icono */
.service-card-body::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 40px;
    background: #ffffff;
    border-radius: 0 0 70px 70px;
    z-index: 1;
}

/* Icon Badge - DENTRO DE LA PARTE BLANCA */
.service-card-body .service-icon-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #7faa40;
    border: 5px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.icon-circle i {
    font-size: 38px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card-wrapper:hover .icon-circle {
    transform: rotate(360deg);
    background: #ffffff;
    border: 5px solid #7faa40;
}

.service-card-wrapper:hover .icon-circle i {
    color: #7faa40;
}

/* Ocultamos los triángulos angulares */
.shape-angle {
    display: none;
}

.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a3d3d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .services-main-title {
        font-size: 38px;
    }
    
    .service-card-image {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .services-slider-section {
        padding: 60px 0 80px;
    }
    
    .services-main-title {
        font-size: 32px;
    }
    
    .services-nav-arrows {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .service-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .services-slider-section {
        padding: 50px 0 70px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .service-arrow-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-body {
        padding: 50px 20px 25px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        top: -35px;
    }
    
    .icon-circle i {
        font-size: 32px;
    }
    
    .service-card-title {
        font-size: 20px;
    }
    
    .service-card-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .services-slider-section {
        padding: 40px 0 60px;
    }
    
    .services-main-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .services-subtitle {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .service-arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-body {
        padding: 45px 18px 20px;
    }
    
    .icon-circle {
        width: 65px;
        height: 65px;
        top: -32px;
        border-width: 4px;
    }
    
    .icon-circle i {
        font-size: 28px;
    }
    
    .service-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-card-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .service-card-wrapper {
        border-width: 8px;
    }
    
    .services-cards-slider {
        padding: 15px 2px 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .service-card-item {
        scroll-snap-align: center;
    }
}

/* =========================== CONTACT PRICE SECTION =========================== */
.contact-price-section {
    background: #f5f7fa;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.contact-price-section .container {
    max-width: 1320px;
}

.contact-price-section .row {
    position: relative;
}

.contact-content-wrapper {
    padding: 60px 80px 60px 60px;
    position: relative;
}

/* Decoración de puntos */
.contact-decoration-dots {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #e0e0e0 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
}

.contact-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #7faa40;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.contact-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a3d3d;
    line-height: 1.2;
    margin-bottom: 40px;
}

.contact-main-title .text-green {
    color: #7faa40;
}

/* Phone Box */
.contact-phone-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.phone-icon-circle {
    width: 70px;
    height: 70px;
    background: #7faa40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon-circle i {
    font-size: 32px;
    color: #ffffff;
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-label {
    font-size: 15px;
    color: #6c757d;
}

.phone-number {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a3d3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #7faa40;
}

/* Contact Action Button */
.btn-contact-action {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    background: #7faa40;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(127, 170, 64, 0.3);
}

.btn-contact-action:hover {
    background: #6a9235;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(127, 170, 64, 0.4);
}

/* Cleaning Bucket Icon */
.cleaning-bucket-icon {
    position: absolute;
    bottom: 30px;
    left: 60px;
    width: 120px;
    opacity: 0.9;
}

.cleaning-bucket-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Contact Image Wrapper - IMAGEN AL RAS DEL BORDE DERECHO */
.contact-price-section .col-lg-6:last-child {
    padding-right: 0;
    padding-left: 0;
}

.contact-image-wrapper {
    position: relative;
    min-height: 650px;
    margin-right: calc(-50vw + 50%);
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25%);
}

/* Overlay diagonal gris para cubrir la parte que no debe verse */
.contact-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
   width: 20%;
    height: 157%;
    background: linear-gradient(103deg, #f5f7fa 0%, #f5f7fa 48%, transparent 48%, transparent 100%);
    z-index: 3;
}

/* Green Corner Decoration */
.green-corner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 150px 150px 0 0;
    border-color: #7faa40 transparent transparent transparent;
    z-index: 5;
}

.green-corner-decoration::after {
    content: '';
    position: absolute;
    top: -145px;
    left: 5px;
    width: 120px;
    height: 120px;
    border-right: 3px solid rgba(255, 255, 255, 0.3);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Contact Section */
@media (max-width: 1199px) {
    .contact-main-title {
        font-size: 40px;
    }
    
    .contact-content-wrapper {
        padding: 50px 60px;
    }
}

@media (max-width: 991px) {
    .contact-price-section {
        padding: 80px 0;
    }
    
    .contact-main-title {
        font-size: 36px;
    }
    
    .contact-content-wrapper {
        padding: 40px 30px;
    }
    
    .contact-image-wrapper {
        min-height: 400px;
        margin-right: 0;
        margin-top: 40px;
        clip-path: none;
    }
    
    .contact-image-wrapper::before {
        display: none;
    }
    
    .cleaning-bucket-icon {
        left: 30px;
        width: 100px;
    }
}

@media (max-width: 767px) {
    .contact-price-section {
        padding: 60px 0;
    }
    
    .contact-main-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .contact-subtitle {
        font-size: 12px;
    }
    
    .contact-content-wrapper {
        padding: 30px 20px;
    }
    
    .contact-decoration-dots {
        width: 80px;
        height: 80px;
        background-size: 12px 12px;
    }
    
    .contact-phone-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .phone-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .phone-icon-circle i {
        font-size: 28px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .btn-contact-action {
        font-size: 14px;
        padding: 15px 35px;
    }
    
    .contact-image-wrapper {
        min-height: 320px;
    }
    
    .cleaning-bucket-icon {
        width: 80px;
        left: 20px;
        bottom: 20px;
    }
    
    .green-corner-decoration {
        border-width: 80px 80px 0 0;
    }
}

@media (max-width: 575px) {
    .contact-price-section {
        padding: 40px 0;
    }
    
    .contact-main-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    
    .contact-content-wrapper {
        padding: 25px 15px;
    }
    
    .contact-phone-box {
        padding: 18px 15px;
        margin-bottom: 30px;
    }
    
    .phone-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .phone-icon-circle i {
        font-size: 24px;
    }
    
    .phone-label {
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .btn-contact-action {
        font-size: 13px;
        padding: 14px 30px;
        width: 100%;
        text-align: center;
    }
    
    .contact-image-wrapper {
        min-height: 280px;
    }
    
    .cleaning-bucket-icon {
        width: 70px;
        bottom: 15px;
        left: 15px;
    }
    
    .green-corner-decoration {
        border-width: 60px 60px 0 0;
    }
    
    .green-corner-decoration::after {
        top: -56px;
        left: 4px;
        width: 90px;
        height: 90px;
    }
}

/* =========================== ABOUT US PAGE STYLES =========================== */

/* About Hero Banner */
.about-hero-banner {
    background: linear-gradient(135deg, #1a3d3d 0%, #103030 100%);
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0px 0;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 170, 64, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Banner Content */
.about-banner-content {
    padding: 20px 0;
}
.fondo-servicios{
    background-image: url(../img/nosotros/servicios.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
}
.fondo-nosotros{
    background-image: url(../img/nosotros/equipo-personas.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
}   
.fondo-contacto{
    background-image: url(../img/nosotros/contactanos.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
} 
/* Breadcrumb Navigation */
.breadcrumb-nav {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #7faa40;
}

.breadcrumb-nav .separator {
    color: #7faa40;
    margin: 0 12px;
}

.breadcrumb-nav .current {
    color: #7faa40;
}

/* About Hero Title */
.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 75px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 3px;
}

.about-hero-title .text-green {
    color: #7faa40;
}

/* Banner Image */
.about-banner-image {
    position: relative;
    padding: 0px 0;
    text-align: right;
}

.about-banner-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive About Banner */
@media (max-width: 1199px) {
    .about-hero-title {
        font-size: 65px;
        letter-spacing: 2px;
    }
}

@media (max-width: 991px) {
    .about-hero-banner {
        min-height: 340px;
        padding: 0px 0;
    }
    
    .about-hero-title {
        font-size: 55px;
        letter-spacing: 2px;
        line-height: .85em;
    }
    
    .about-banner-image {
        text-align: center;
        margin-top: 25px;
    }
    
    .about-banner-image img {
        max-height: 280px;
    }
}

@media (max-width: 767px) {
    .about-hero-banner {
        min-height: 200px;
        padding: 0px 0;
    }
    
    .about-hero-title {
        font-size: 42px;
        letter-spacing: 1px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }
    
    .breadcrumb-nav .separator {
        margin: 0 8px;
    }
    
    .about-banner-image img {
        /*max-height: 220px;*/
    }
}

@media (max-width: 575px) {
    .about-hero-banner {
        padding: 35px 0 0 0;
        min-height: 240px;
    }
    
    .about-hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .breadcrumb-nav {
        font-size: 11px;
    }
    
    .about-banner-content {
        padding: 10px 0;
    }
    
    .about-banner-image {
        margin-top: 20px;
    }
    
    .about-banner-image img {
        /*max-height: 180px;*/
    }
}

/* =========================== VIDEO SECTION (NOSOTROS) =========================== */
.video-section-wrapper {
    position: relative;
    padding: 0;
    min-height: 600px;
    overflow: visible;
}

/* Fondo blanco - mitad superior */
.video-bg-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    z-index: 0;
}

/* Fondo verde - mitad inferior */
.video-bg-green {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #7faa40;
    z-index: 0;
}

.video-section-wrapper .container {
    position: relative;
    z-index: 1;
}

.video-section-wrapper .row {

}

.video-box {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    border: 8px solid #7faa40;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 61, 61, 0.75) 0%, rgba(16, 48, 48, 0.75) 100%);
    z-index: 1;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.video-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 30px;
    text-transform: capitalize;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(127, 170, 64, 0.95);
    border: 5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: #7faa40;
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(127, 170, 64, 0.6);
}

.video-play-btn i {
    font-size: 40px;
    color: #ffffff;
    margin-left: 5px;
}

/* Modal Styles */
#videoModal .modal-content {
    background: #000000;
    border: none;
}

#videoModal .modal-body {
    background: #000000;
}

#videoModal .btn-close-white {
    filter: brightness(0) invert(1);
}

/* Responsive Video Section */
@media (max-width: 991px) {
    .video-section-wrapper {
        min-height: 500px;
    }
    
    .video-section-wrapper .row {
        margin-top: -200px;
        padding-top: 200px;
    }
    
    .video-box {
        height: 400px;
        border-width: 6px;
    }
    
    .video-title {
        font-size: 42px;
        margin-top: 25px;
    }
    
    .video-play-btn {
        width: 80px;
        height: 80px;
        border-width: 4px;
    }
    
    .video-play-btn i {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .video-section-wrapper {
        min-height: 400px;
    }
    
    .video-section-wrapper .row {
        margin-top: -150px;
        padding-top: 150px;
    }
    
    .video-box {
        height: 300px;
        border-width: 5px;
    }
    
    .video-title {
        font-size: 32px;
        margin-top: 20px;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }
    
    .video-play-btn i {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .video-section-wrapper {
        min-height: 350px;
    }
    
    .video-section-wrapper .row {
        margin-top: -125px;
        padding-top: 125px;
    }
    
    .video-box {
        height: 250px;
        border-width: 4px;
    }
    
    .video-title {
        font-size: 26px;
        margin-top: 15px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 24px;
    }
}

/* =========================== CLIENTS SECTION (NOSOTROS) =========================== */
.clients-section-wrapper {
    position: relative;
    background: #7faa40;
    padding: 0px 0 100px 0;
    z-index: 1;
}

.clients-title-box {
    padding-right: 30px;
}

.clients-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a3d3d;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0;
}

.clients-title .text-white {
    color: #ffffff;
}

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

.client-logo-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.client-logo-box:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Responsive Clients Section */
@media (max-width: 991px) {
    .clients-section-wrapper {
        padding: 80px 0;
    }
    
    .clients-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    
    .clients-title-box {
        padding-right: 0;
        text-align: center;
    }
    
    .clients-grid {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .clients-section-wrapper {
        padding: 60px 0;
    }
    
    .clients-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo-box {
        padding: 20px 15px;
        min-height: 100px;
    }
    
    .client-logo {
        max-height: 60px;
    }
}

@media (max-width: 575px) {
    .clients-section-wrapper {
        padding: 50px 0;
    }
    
    .clients-title {
        font-size: 28px;
    }
    
    .client-logo-box {
        padding: 15px 10px;
        min-height: 90px;
    }
    
    .client-logo {
        max-height: 50px;
    }
}

/* =========================== ALL SERVICES GRID (SERVICIOS.PHP) =========================== */
.all-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.all-services-section .row {
    row-gap: 24px !important;
}

.all-services-section .service-card-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin: 0;
    height: 100%;
}

.all-services-section .service-card-wrapper {
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.all-services-section .service-card-image {
    height: 240px;
    flex-shrink: 0;
}

.all-services-section .service-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 70px 20px 30px;
}

.all-services-section .service-card-title {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-services-section .service-card-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

/* Responsive All Services Grid */
@media (max-width: 991px) {
    .all-services-section {
        padding: 60px 0;
    }
    
    .all-services-section .service-card-wrapper {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .all-services-section {
        padding: 50px 0;
    }
    
    .all-services-section .row {
        row-gap: 20px !important;
        column-gap: 20px !important;
    }
    
    .all-services-section .service-card-wrapper {
        min-height: 380px;
    }
    
    .all-services-section .service-card-image {
        height: 200px;
    }
}

/* === FIN DEL ARCHIVO === */
/* === COLORES OFICIALES 2026 === */
:root {
    --main-color: #11597a;
}

.color_principal{
    color: var(--main-color);
}

.color-verde{
    color: #7faa40 !important;
}

.color_negro{
    color:#0C0C0C;
}

/*** Fondos ***/
.fondo_verde{
    background-color: #7faa40;
}

.fondo_verde_claro{
    background: linear-gradient(135deg, #7faa40 0%, #6a9335 100%);
}

.fondo-gris{
    background: #f8f9fa;
}

.fondo_negro{
    background: #000;
}

.fondo_negro2{
    background: #0C0C0C;
}

.color_azul{
    color: #11597a;
}

.fondo_azul{
    background: #11597a;
}

.fondo_blanco{
    background: #fff;
}

.fondo_transparente{
    background: transparent;
}

.color_rojo{
    color: #7faa40 !important;
}

.fondo_gris2{
    background: #E8E7E7;
}