*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg-color-purple: #7f1e52;
    --bg-color-grey: #00457a;
    --bg-color-plata: #c4c4c428;
    --bg-color-black: #000000;
    --bg-shadow-cuadro: #c4c4c4ca;
}

@font-face {
    font-family: 'Klaristha';
    src: url('../font/Klaristha.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Madegra';
    src: url('../font/Madegra.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ROSALINE';
    src: url('../font/Rosaline.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.Conta-landig{
    position: relative;
    height: 100dvb;
    background-color: #f2f2f2;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
}

.Conta-Body{
    position: relative;
    width: 100%;
}

.Conta-Bloque{
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1850px;
    padding: 5rem 1rem;
}

@media (max-width: 768px) {
    .Conta-Bloque {
        padding: 2rem 1rem;
        max-width: 700px;
    }
}


/*------------------ Secciones del landiespage -------------------*/




/* Nav */

/* Nav - Versión móvil */
.Conta-Nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateY(0);
    opacity: 1;
}

.CN-logo {
    width: 120px;
    height: 60px;
    margin-bottom: 0;
    z-index: 1001;
}

.CN-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Botón de menú hamburguesa */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 2.5px 0;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    transform-origin: center;
    border-radius: 3px;
}

/* Animación para el botón hamburguesa */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menú para móviles */
.CN-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    clip-path: circle(0px at calc(100% - 65px) 40px);
    transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1000;
}

.CN-list.active {
    clip-path: circle(150% at calc(100% - 65px) 40px);
}

.CN-list li {
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    transform: translateY(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 0.2s;
}

.CN-list.active li {
    opacity: 1;
    transform: translateY(0);
}

.CN-list li:nth-child(1) { transition-delay: 0.1s; }
.CN-list li:nth-child(2) { transition-delay: 0.2s; }
.CN-list li:nth-child(3) { transition-delay: 0.3s; }
.CN-list li:nth-child(4) { transition-delay: 0.4s; }

.CN-list li a {
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.CN-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #702750;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateX(-50%);
}

.CN-list li a:hover::after {
    width: 100%;
}

.CN-list li:hover {
    background-color: rgba(112, 39, 80, 0.3);
    box-shadow: 0px 0px 10px 3px rgba(63, 10, 38, 0.5);
    transform: translateY(-5px);
}

/* Estados fijos y ocultos */
.Conta-Nav.fixed {
    position: fixed;
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.98);
}

.Conta-Nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Contenido de ejemplo para hacer scroll */
.content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content h1 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Header */
.Conta-Header{
    height: calc(100dvb - 25dvb);
    position: relative;
    box-shadow: 0rem 1rem 1px 10px #702750d4;
    z-index: 1;
    overflow: hidden;
    
    & figure{
        height: 100%;
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;

        & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform-origin: center; /* Asegura que el zoom sea desde el centro */
            transition: transform 0.8s ease; /* Mover la transición aquí es más eficiente */
            filter: blur(3px);
        }
    }
       
    .Conta-Header-Text{
        position: absolute;
        content: '';
        top: 50%;
        right: 15%;
        transform: translate(-20%, -50%);
        color: #5a5a5a;
        z-index: 2;
        background: #ffffff36;
        padding: 5rem;
        width: max-content;
        border-radius: 2rem;
        box-shadow: 11px 13px 24px -1px #794969;
        
        & .CHT-Text{
            font-size: clamp(1.5rem, 3vw, 2.5rem);;

            & h1{
                font-size: clamp(3rem, 3vw, 2.5rem);;
            }

            & p{
                font-size: calc(0.75vw + 0.5rem);
            }
        }   

        & .CHT-Links{
            display: flex;
            gap: 1rem;
            list-style: none;
            margin: 2rem 0 0;
            padding: 0;
            & li{
                & a{
                    text-decoration: none;
                    color: #7027506e;
                    font-size: 1vw;
                }
                &:hover{
                    transition: all 0.3s ease;
                    transform: scale(1.15, 1.15);
                    & a{
                        color: #702750;   
                    }
                }
            }

        }

        & .CHT-Button{
            margin: 2rem 0 0;
            width: max-content;
            padding: 0.75rem 5rem;
            border:0;
            font-size: calc(0.75vw + 0.5rem);
            background: #00000066;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 40px;
            box-shadow: 0px 0px 1px 6px #000000;
            transition: all 0.3s ease;

            & a{
                text-decoration: none;
                color: white;
            }

            &:hover{
                background: #702750dc;
                transition: all 0.3s ease;
                box-shadow: 0px 0px 1px 6px #3f0a26;
            }
        }
    }

    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:url('../imagen/header/fondo-header-1.png') no-repeat;
        background-size: cover;
        /* background-attachment: scroll; */
        z-index: 1;
        opacity: 0.5;
    }

    &:hover {
        & figure img{
            transform: scale(1.05) translate(0, 3%); /* Zoom y desplazamiento hacia arriba */
            filter: blur(0px); /* Desenfoque al hacer hover */
        }

        & .Conta-Header-Text{
            color: black;
            transition: color 1s ease;
            & .CHT-Links{
                & li a{
                    color: #702750; /* Cambia el color del texto al hacer hover */
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .Conta-Header{
        & figure {
            aspect-ratio: 4/9;
            & img{
                transform: scale(1.05) translate(0, 3%); /* Zoom y desplazamiento hacia arriba */
                filter: blur(0px); /* Desenfoque al hacer hover */
            }
        }

        & .Conta-Header-Text{
            padding: 1rem;
            top: 50%;
            right: 0%;
            transform: translate(0%, -50%);
            width: 70%;
            margin: 0 auto;
            display: block;
            left: 0;
            & .CHT-Button{
                padding: 0.75rem 3rem;
                margin: 0 auto;
            }
        }
    }
}

@media (max-width: 480px) {
    .Conta-Header {
        & .Conta-Header-Text {
            transform: translate(15%, -70%);
            & .CHT-Text{
                & h2{
                    font-size: calc(1rem + 0.2rem);
                }
                & h1{
                    font-size: calc(1.8rem + 0.5rem);
                }
                & p{
                    font-size: calc(0.75vw + 0.5rem);
                    margin: 0;
                }
            }
            & .CHT-Links{
                margin: 0.5rem 0 1rem;
                & li {
                    & a {
                    text-decoration: none;
                    color: #7027506e;
                    font-size: calc(1.5vw + 0.5rem);
                    }
                }
            }
            & .CHT-Button {
                padding: 0.5rem 2rem;
                margin: 0 auto;
                font-size: calc(0.75vw + 0.5rem);
                box-shadow: 0px 0px 1px 4px #000000;
            }
        }
    }
}

/* Servicies */

.Conta-Bloque-Servicies-fondo{
    width: 100%;
    background: url('../imagen/servicios/fondo-services.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;

    /* & .Conta-Bloque-Servicies{
        padding: 2rem 0 0;
        display: grid; grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
        height: 60vh;
        gap: 1rem;
        position: relative;
        z-index: 2;
    
        & .CBS-items{
            height: 100%;
            position: relative;
            background: #f2f2f2;
            border-radius: 0px;
            box-shadow: 0px 0px 5px 2px #00000099;
            border-radius: 2rem;
            transition: all 0.5s ease;
        
            & .CBSI-Img{
                position: absolute;
                content:'';
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                border-radius: 2rem;
                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 2rem;

                }
        
                &::after{
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 25%;
                    height: 100%;
                    background-image: linear-gradient(to bottom, #800080e6, #000000e6);
                    border-radius: 2rem 0 0 2rem;
                    z-index: 1;
                }
            }
        
            & .CBSI-Text{
                width: auto;
                height: fit-content;
                padding: 1rem;
                color: white;
                position: absolute;
                left: -50%;
                top: 45%;
                transform: rotate(270deg) translate(-5%, -50%);
                z-index: 3;
                bottom: 0;
                right: 0;
                & p{
                    font-size: clamp(0.9rem, 2.5vw, 2rem);
                }
            }

            &:hover{
                & .CBSI-Context{
                    display: flex;
                    align-items: end;
                    justify-content: end;
                    flex-direction: column;
                    padding: 1rem 1.5rem 1.5rem;
                    transform: translateY(0%);
                    color : white;
                    width: 100%;
                    position: absolute;
                    bottom: 0;
                    cursor: pointer;
                    transition: all 2s ease-in-out;
                }
                & .CBSI-Text{
                    transform: rotate(0deg) translate(0%, 0%);
                    left: 0;
                    top: 0;
                    padding: 1.2rem 1.6rem 0;
                    text-align: left;
                    background: #800080e6;
                    border-radius: 2rem 2rem 0 0;
                    & p{
                        font-size: clamp(0.9rem, 2vw, 1.5rem);
                    }
                }
            }

            & .CBSI-Context{
                background: #000000e6;
                height: 100%;
                display: none;
                transition: all 2s ease;
                border-radius: 2rem;

                & p{
                    padding: 1rem 0;
                    font-size: clamp(0.8rem, 1.1vw, 1.4rem);
                    line-height: 1.5;
                    font-weight: 500;
                }

                & a{
                    text-decoration: none;
                    color: white;
                    font-size: clamp(0.8rem, 1.1vw, 1.4rem);
                    font-weight: bold;
                    background: var(--bg-color-purple);
                    padding: 0.85rem 2rem 1rem;
                    border-radius: 40px;
                }
            }
        }
    }

    & .Conta-Bloque-Servicies-Links{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        & a{
            text-decoration: none;
            color: white;
            font-size: clamp(0.8rem, 1.2vw, 1.5rem);
            font-weight: bold;
            background: var(--bg-color-purple);
            padding: 0.5rem 2rem;
            border-radius: 40px;
        }
    } */

    h1 {
            color: white;
            text-align: center;
            margin: 20px 0;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .subtitle {
            color: #f8f9fa;
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Grid para escritorio - Basado en tu CSS original */
        .Conta-Bloque-Servicies {
            padding: 2rem 0 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
            height: 60vh;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .CBS-items {
            height: 100%;
            position: relative;
            background: #f2f2f2;
            border-radius: 0px;
            box-shadow: 0px 0px 5px 2px #00000099;
            border-radius: 2rem;
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .CBSI-Img {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            border-radius: 2rem;
        }

        .CBSI-Img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 2rem;
        }

        .CBSI-Img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 25%;
            height: 100%;
            background-image: linear-gradient(to bottom, #800080e6, #000000e6);
            border-radius: 2rem 0 0 2rem;
            z-index: 1;
        }

        .CBSI-Text {
            width: auto;
            height: fit-content;
            padding: 1rem;
            color: white;
            position: absolute;
            left: -50%;
            top: 45%;
            transform: rotate(270deg) translate(-5%, -50%);
            z-index: 3;
            bottom: 0;
            right: 0;
        }

        .CBSI-Text p {
            font-size: clamp(0.9rem, 2.5vw, 2rem);
        }

        .CBSI-Context {
            background: #000000e6;
            height: 100%;
            display: none;
            transition: all 2s ease;
            border-radius: 2rem;
            padding: 1rem;
            color: white;
        }

        .CBSI-Context p {
            padding: 1rem 0;
            font-size: clamp(0.8rem, 1.1vw, 1.4rem);
            line-height: 1.5;
            font-weight: 500;
        }

        .CBSI-Context a {
            text-decoration: none;
            color: white;
            font-size: clamp(0.8rem, 1.1vw, 1.4rem);
            font-weight: bold;
            background: var(--bg-color-purple);
            padding: 0.85rem 2rem 1rem;
            border-radius: 40px;
            display: inline-block;
            margin-top: 10px;
        }

        /* Efectos hover */
        .CBS-items:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .CBS-items:hover .CBSI-Context {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-end;
            padding: 1rem 1.5rem 1.5rem;
            transform: translateY(0%);
            width: 100%;
            position: absolute;
            bottom: 0;
            cursor: pointer;
        }

        .CBS-items:hover .CBSI-Text {
            transform: rotate(0deg) translate(0%, 0%);
            left: 0;
            top: 0;
            padding: 1.2rem 1.6rem 0;
            text-align: left;
            background: #800080e6;
            border-radius: 2rem 2rem 0 0;
        }

        .CBS-items:hover .CBSI-Text p {
            font-size: clamp(0.9rem, 2vw, 1.5rem);
        }

        .Conta-Bloque-Servicies-Links{
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem 0;
            & a{
                text-decoration: none;
                color: white;
                font-size: clamp(0.8rem, 1.2vw, 1.5rem);
                font-weight: bold;
                background: var(--bg-color-purple);
                padding: 0.5rem 2rem;
                border-radius: 40px;
            }
        }

        /* Carrusel para móvil */
        @media (max-width: 768px) {
            .Conta-Bloque-Servicies {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                gap: 15px;
                padding: 10px 0 20px;
                height: auto;
                scrollbar-width: none; /* Firefox */
            }

            .Conta-Bloque-Servicies::-webkit-scrollbar {
                display: none; /* Chrome, Safari */
            }

            .CBS-items {
                scroll-snap-align: start;
                flex: 0 0 calc(85% - 10px);
                min-width: calc(85% - 10px);
                height: 400px;
            }
            
            .CBSI-Context {
                display: none !important; /* Mantenemos oculto por defecto en móvil */
            }

            .CBS-items:hover .CBSI-Context {
                display: flex !important; /* Solo se muestra al hacer hover */
                flex-direction: column;
                justify-content: flex-end;
                align-items: flex-end;
                padding: 1rem 1.5rem 1.5rem !important;
                opacity: 1 !important;
                transform: translateY(0%) !important;
            }
            
            .CBSI-Text {
                transform: rotate(0deg) translate(0%, 0%) !important;
                left: 0 !important;
                top: 0 !important;
                padding: 1.2rem 1.6rem 0 !important;
                text-align: left;
                background: #800080e6;
                border-radius: 2rem 2rem 0 0;
            }
            
            .CBSI-Text p {
                font-size: clamp(0.9rem, 4vw, 1.5rem) !important;
            }
        }

        /* Controles del carrusel */
        .carousel-controls {
            display: none;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .carousel-controls {
                display: flex;
            }
        }

        .carousel-btn {
            display: none;
            background: white;
            color: #3498db;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: #3498db;
            color: white;
        }

}

/* Lema */

.Conta-Lema{
    padding: 4rem 0;
    background-color: var(--bg-color-purple);
    color: white;
    text-align: center;
    & h2{
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }
}

/* Jobs */
.Conta-Jobs{
    padding: 4rem;
    /* background: url('../imagen/servicios/fondo-inf.png') no-repeat;
    background-size: cover; */
    /* max-width: 1850px;
    margin: 0 auto; */
    & .Conta-Jobs-Items{
        position: relative;
        margin: 0 auto;
        width: 100%;
        max-width: 1850px;
        padding: 5rem 1rem;
        display: grid; 
        grid-template-columns: 1fr 1fr;
        gap: 3rem;

        & .CJI-Text{
            width: 100%;
            color: var(--bg-color-purple);
            text-align: center;
            padding: 1rem 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            
            & .CJIT-Title{
                padding: 1rem 0;
            }

            & .CJIT-Img{
                display: grid;
                gap: 1%;
                grid-template-columns: repeat(auto-fit, minmax(32%, 1fr)); 
                width: 100%;
                
                & div{
                    background: black;
                    padding: 1rem;
                    width: 100%;
                    height: 100%;
                    margin-bottom: 0;
    
                    & video{
                        width: 100%;
                        height: 100%;
                        object-fit: scale-down;
                    }
                }
            }
            & .CJIT-Link{
                padding: 1rem 0;
                & a{
                    text-decoration: none;
                    color: white;
                    font-size: clamp(0.8rem, 1.2vw, 1.5rem);
                    font-weight: bold;
                    background: var(--bg-color-purple);
                    padding: 0.5rem 2rem;
                    border-radius: 40px;
                }
            }
        }
        & .CJI-Movie{
            width: fit-content;
            margin: 0 auto;
            height: 70vh;
            position: relative;
            & video{
                width: 100%;
                height: 100%;
                object-fit: scale-down;
                border-radius: 2rem; 
                border:0.75rem solid black;
                box-shadow: 0px 0px 0px 4px #c3c3c3, 0px 0px 0px 9px black, 0px 0px 0px 16px #c3c3c3, 0px 0px 16px 15px black;
                position: relative;

            }
            &::before{
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translate(-50%, 0%);
                width: 25%;
                height: 30px;
                background: black;
                border-radius: 6px;
                box-shadow: 0px 4px 10px 0px #00000033;
                z-index: 3;
            }
            &::after{
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translate(-50%, 50%);
                width: 15px;
                height: 15px;
                background: #c4c4c433;
                border-radius: 50%;
                z-index: 3;
            }
        }
    }
}

@media (max-width: 768px) {
    .Conta-Jobs .Conta-Jobs-Items {
        grid-template-columns: 1fr; /* Cambia a una sola columna en móvil */
        padding: 2rem 1rem; /* Reduce el padding para móvil */
    }

    .Conta-Jobs .Conta-Jobs-Items .CJI-Text .CJIT-Img {
        padding: 2rem 0 2rem;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        height: auto;
        scrollbar-width: none; /* Firefox */
        &::-webkit-scrollbar {
            display: none; /* Safari y Chrome */
        }
    }
}

/* Services */
.Conta-Servicios{
    padding: 5rem 0rem 2rem;
    height: auto;
    background: url('../imagen/abouts/fondo-1.png') no-repeat;
    background-size: cover;  
    background-attachment: fixed;
    position: relative;

    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(to bottom, #fcfcfcb8, #00000082);
        z-index: 1;
    }

    & .CS-Items{
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        height: 100%;
        position: relative;
        z-index: 2;

        & .CSI-Text{
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem;
            position: relative;
            
            & .CSIT-Img{
                width: 100%;
                height: 70dvb;
                overflow: hidden;
                border-radius: 3rem;
                box-shadow: 0px 0px 16px 6px #00000099, inset 0px 0px 0px 6px #fff;
                padding: 3px;
                position: relative;
                &::after{
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 20%;
                    height: 100%;
                    background-image: linear-gradient(to bottom, #800080e6, #000000e6);
                    z-index: 3;
                }
                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 3rem;
                }
            }

            & .CSIT-Content{
                width: 100%;
                height: fit-content;
                padding: 1rem;
                color: white;
                position: absolute;
                left: -30%;
                top: 45%;
                transform: rotate(270deg) translate(-20%, -50%);
                z-index: 3;
            }

        }
        & .CSIT-Info{
            width: 100%;
            height: 100%;
            padding: 2rem 2rem 1rem;
            text-align: left;
            background-image: linear-gradient(to right, transparent 0% 20%, #000000dc 20% 100%);
            border-radius: 3rem;
            position: absolute;
            left: 0;
            top: 0%;
            z-index: 3;
            display: none;
            opacity: 0.5;
            
            & p{
                font-size: clamp(0.9rem, 2vw, 1.5rem);
                line-height: 1.5;
                color: white;
                padding-left: 22%;
            }
        }

        & .CSI-Text:hover{
            left: -0%;
            top: 0;
            transition: all 0.75s ease;
            transform: scale(1.02, 1.02);
            cursor: pointer;
            
            & .CSIT-Info{
                display: flex;
                flex-direction: column;
                justify-content: center;
                transition: all 3s ease;
                opacity: 1;
            }
        }

        
        
    }
} 


        /* SOLO AGREGAMOS ESTILOS PARA MÓVIL */
        @media (max-width: 768px) {
            & .Conta-Servicios {
                padding: 3rem 0 2rem;
                & .CS-Items {
                    display: flex;
                    overflow-x: auto;
                    scroll-snap-type: x mandatory;
                    scroll-behavior: smooth;
                    -webkit-overflow-scrolling: touch;
                    gap: 10px;
                    padding: 10px 0px 0px;
                    scrollbar-width: none; /* Firefox */
                    
                    & .CSI-Text {
                        scroll-snap-align: start;
                        flex: 0 0 calc(100% - 10px);
                        min-width: calc(100% - 10px);
                        & .CSIT-Img {
                            height: 90dvb;
                            &::after {
                                width: 100%;
                                height: 100%;
                                background: #00000048;
                            }
                        }
                        & .CSIT-Content {
                            top: 3%;
                            left: 5.7%;
                            width: 88.5%;
                            background-image: linear-gradient(to bottom, #800080e6, #000000e6);
                            height: fit-content;
                            transform: rotate(0deg) translate(0%, 0%);
                            border-radius: 3rem 3rem 0 0;   
                            & h1{
                                font-size: calc(1.5rem + 0.2vw);
                                margin: 1rem 0;
                                text-align: center;
                            }     
                        }
                    }
                    
                    & .CSIT-Info {
                        width: 100%;
                        height: 100%;
                        padding: 2rem;
                        background: #000000dc;
                        border-radius: 3rem;
                        position: absolute;
                        left: 0%;
                        top: 0%;
                        z-index: 3;
                        opacity: 0.5;
                        & p {
                            font-size: calc(1rem + 0.5vw);
                            line-height: 1.5;
                            color: white;
                            padding-left: 0;
                            display: grid;
                            place-content: center;
                            height: 100%;
                        }
                    }
                }

                & .CS-Items::-webkit-scrollbar {
                    display: none; /* Chrome, Safari */
                }
            }
        }

        /* Controles del carrusel (solo móvil) */
        .carousel-controls {
            display: none;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .carousel-controls {
                display: flex;
            }
        }

        .carousel-btn {
            display: none;
            background: white;
            color: #800080;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: #800080;
            color: white;
        }

        /* Indicadores (solo móvil) */
        .carousel-indicators {
            display: none !important;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .carousel-indicators {
                display: flex !important;
            }
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(128, 0, 128, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: #800080;
            transform: scale(1.2);
        }

        /* Título de la sección */
        .section-title {
            text-align: center;
            color: #800080;
            margin-bottom: 30px;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

/* Abouts */
.Conta-Abouts{
    background: url('../imagen/abouts/fondo-1.png') no-repeat;
    background-size: cover;    
    background-attachment: fixed;
    position: relative;

    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(to top, #fcfcfcb8, #00000082);
        z-index: 1;
    }
    
    & .Conta-About-Bloque{
        padding: 7rem 0;
        display: grid;
        grid-template-columns: 1fr 0.9fr;
        grid-template-rows: 1fr;
        gap: 3%;
        min-height: 70vh;
        max-width: 1800px;
        margin: 0 auto;
        position: relative;
        z-index: 3;

        & .CBA-Text{
            width: 100%;
            height: 100%;
            gap: 1rem;
            display: grid;
            place-content: center;
            & .CBATT-Element{
                padding: 3rem 1.8rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                background: #eaeaea;
                color: #3e3e3e;
                border-radius: 10px;
                box-shadow: 0px 0px 2px 20px #80008033, 0px 0px 3px 6px #2d002df5;
                & h1{
                    font-size: clamp(2.5rem, 6vw, 8rem);
                    font-family: 'Rosaline';
                    font-weight: 500;
                    margin-bottom: 0;
                    line-height: 1;
                    letter-spacing: -5px;
                    color: #000;
                    text-shadow: 1px 1px 2px #fff;
                }
                & h3{
                    font-size: clamp(1rem, 1.5vw, 1.8rem);
                    color: var(--bg-color-grey);
                    border-bottom: 3px solid #5a5a5a;
                    width: fit-content;
                }
                & p{
                    padding: 1rem 0;
                    font-size: clamp(0.8rem, 1.2vw, 1.5rem);
                    line-height: 1.5;
                    font-weight: 500;
                    color: #3e3e3e;
                }
                & ul{
                    padding: 0rem 0 1rem;
                    list-style: none;
                    display: flex;
                    justify-content: start;
                    gap: 2.5rem;
                    & li{
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        & i{
                            padding: 0.75rem;
                            font-size: clamp(0.8rem, 1.5vw, 1.8rem);
                        }
                        & :hover{
                            color: #fff;
                            cursor: pointer;
                            background: var(--bg-color-grey);
                            transition: all 0.5s ease-in-out;
                            border-radius: 50%;
                        }
                    }
                }
                & a{
                    color: black;
                    text-decoration: none;
                    font-size: clamp(0.8rem, 1.2vw, 1.5rem);
                    font-weight: bold;
                    width: 100%;
                    display: flex;
                    justify-content: end;
                    gap: 0.5rem;
                    
                    & .CBATE-Link{
                        background-color: var(--bg-color-grey);
                        border-radius: 12px;
                        padding: 0.75rem 1.5rem;
                        display: flex;
                        align-items: center;
                        gap: 1rem;
                        color: #fff;
                        & span{
                            text-transform: uppercase;
                        }
                    }
                }
            }
        }
    
        & .CBA-Img{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 1rem;

            & .CBAI-Left{
                width: 100%;
                height: 100%;
                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 6rem 0.5rem 4rem 0.5rem; 
                    box-shadow: -3px -3px 18px 6px #00000099, 6px 6px 2px 6px #80008099;
                }
            }
            
            
            & .CBAI-Right{
                width: 100%;
                height: 70%;
                margin-left: -3rem;
                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 6rem 0.5rem 4rem 0.5rem; 
                    box-shadow: 3px 3px 18px 6px #00000099;
                }
            }
        }
    }

}

@media (max-width: 768px) {
    .Conta-Abouts {
        & .Conta-About-Bloque {
            margin: 0 1rem;
            grid-template-columns: 1fr;
            grid-template-rows: repeat(2, auto);
            height: auto;
            & .CBA-Text {
                & .CBATT-Element {
                    padding: 2rem 1rem;
                    & h1 {
                        font-size: clamp(2rem, 20vw, 5rem);
                        letter-spacing: 4px;
                        text-align: center;
                    }
                    & h3 {
                        font-size: clamp(1rem, 2vw, 1.5rem);
                    }
                    & p {
                        font-size: clamp(0.8rem, 1.5vw, 1.2rem);
                        padding: 0.5rem 0 0;
                    }
                    & ul{
                        padding: 0;
                        margin: 0;
                    }
                }
            }
        }
    }
}

/* seccion de porcentajes */
    .resultados-section {
        padding: 80px 20px;
        background-color: #702750;
        /* background-color: #f8f9fa; */
        text-align: center;
        font-family: 'Arial', sans-serif;
    }

    .resultados-section h2 {
        font-size: clamp(1.5rem, 2.5vw, 3rem);
        font-weight: bold;
        /* color: #2c3e50; */
        color: #fff;
        margin-bottom: 10px;
    }

    .subtitulo {
        font-size: clamp(1rem, 1.5vw, 1.8rem);
        color: #7f8c8d;
        margin-bottom: 50px;
    }

    .resultados-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        max-width: 1850px;
        margin: 0 auto;
    }

    .resultado-item {
        flex: 1;
        width: 100%;
        padding: 30px 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .resultado-item:hover {
        transform: translateY(-10px);
    }

    .resultado-item h3 {
        margin-top: 20px;
        color: #2c3e50;
        font-size: 1.5rem;
    }

    .resultado-item p {
        color: #7f8c8d;
        line-height: 1.6;
    }

    .circulo-progreso {
        position: relative;
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .circulo {
        width: 100%;
        height: 100%;
    }

    .circulo-fondo {
        fill: none;
        stroke: #ecf0f1;
        stroke-width: 3;
    }

    .circulo-relleno {
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        transition: stroke-dasharray 1.5s ease-in-out;
    }

    .porcentaje-texto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        font-weight: bold;
        color: #2c3e50;
    }

    /* Colores para cada círculo */
    .resultado-item:nth-child(1) .circulo-relleno {
        stroke: #3498db;
    }

    .resultado-item:nth-child(2) .circulo-relleno {
        stroke: #2ecc71;
    }

    .resultado-item:nth-child(3) .circulo-relleno {
        stroke: #e74c3c;
    }

    .resultado-item:nth-child(4) .circulo-relleno {
        stroke: #f39c12;
    }

.Conta-Teams{
    padding: 5rem 0 2rem;
    background-color: #ffffff;
    text-align: center;
    & h2{
        font-size: 2rem;
    }

    & .CT-Items{
        padding: 2rem 10rem;   

        & .CTI-Text{
            text-align: center;

            & h2{
                font-size: clamp(1.5rem, 2.5vw, 3rem); font-weight: bold; padding-bottom: 0rem 
            }

            & h4{
                padding: 1rem 0 3rem; color: #7f8c8d; font-size: clamp(1rem, 1.5vw, 1.8rem);
            }
        }

        & .CTI-Img{
            display: grid; grid-template-columns: repeat(auto-fit, minmax(30%, 1fr)); gap: 4rem 3rem; padding: 2rem 0 0;
            
            & .CTII-Items{
                display:grid; grid-template-columns: 250px 1fr; gap: 0rem;
                & figure{
                    background: purple; border-radius: 20px 0px 0px 20px; padding: 1rem; height: 100%; max-height: 400px;
                    & img{
                        object-fit: cover; border-radius: 20px 0px 0px 20px;
                    }
                }
                & .CTII-Content{
                    background: #f2f2f2; border-radius: 0px 0 20px 0px; padding: 1rem; height: 100%; text-align: left; position: relative;
                    & h4{
                        position: absolute; top: -10%; right: 0; background: #000; padding: 0.85rem 1.5rem; border-radius: 20px 20px 0px 0px; width: fit-content; color: #fff;
                    }
                    & .CTIIC-Text{
                        & h2{
                            color: #000; padding-top: 1.5rem ;
                            /* font-size: clamp(1.2rem, 2vw, 2rem); font-weight: bold; padding-bottom: 0.5rem; color: #800080; */
                        }
                        & p{
                            color: #979797; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; height: auto; z-index: 6;
                            /* font-size: clamp(0.9rem, 1.2vw, 1.4rem); line-height: 1.5; font-weight: 500; color: #3e3e3e; */
                        }
                        & span{
                            color: #fff;
                            /* font-size: clamp(1rem, 1.5vw, 1.8rem); padding-bottom: 1rem; color: #7f8c8d; */
                        }
                    }
                }
            }
        }

    }
}

@media (max-width: 768px) {
    .Conta-Teams .CT-Items {
        padding: 1rem;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .Conta-Teams .CT-Items .CTI-Img {   
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 1rem 0rem;
        margin: 0;
        width: 90vw;
        margin-left: calc(-45vw + 50%);
        scrollbar-width: none;
        -ms-overflow-style: none;
        grid-template-columns: unset;
        grid-auto-columns: unset;
        grid-auto-flow: unset;
        
        & .CTII-Items {
            flex: 0 0 calc(85% - 0.5rem);
            scroll-snap-align: start;
            min-width: 0;
            width: calc(85% - 0.5rem);
            
            /* Mantener grid interno */
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 250px 1fr;

            & figure {
                border-radius: 50% 50% 0;
                height: auto;
                max-height: none;
                width: 85%;
                margin: 0 0;
                & img {
                    border-radius: 50%;
                }
            }
            & .CTII-Content {
                border-radius: 0 0 20px 20px;
                text-align: center;
                & h4 {
                    top: -20%;
                    background: #000;
                    padding: 0.5rem 1rem;
                    border-radius: 20px 20px 0;
                    width: fit-content;
                    color: #fff;
                    margin: 0;
                    transform: translateY(6px);
                }
                & .CTIIC-Text {
                    & h2 {
                        padding-top: 0;
                    }
                }
            }
        }
    }

    .Conta-Teams .CT-Items .CTI-Img::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
}


/* seccion de los contactos */

.cita-section {
    padding: 4rem 1.5rem;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.cita-container {
    display: flex;
    max-width: 1850px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.info-contacto {
    flex: 1;
    padding: 60px 40px;
    background: #201d1d;
    color: white;
}

.info-contacto h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subtitulo-cita {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icono-contacto {
    margin-right: 20px;
    background-color: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-contacto svg {
    width: 24px;
    height: 24px;
    color: white;
}

.texto-contacto h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.texto-contacto p {
    opacity: 0.9;
    margin: 0;
}

.horario {
    margin-top: 50px;
}

.horario h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.horario ul {
    list-style: none;
    padding: 0;
}

.horario li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.formulario-cita {
    flex: 1;
    padding: 60px 40px;
    background-color: white;
}

.form-moderno {
    display: flex;
    flex-direction: column;
}

.form-grupo {
    margin-bottom: 25px;
}

.form-grupo.doble {
    display: flex;
    gap: 20px;
}

.form-grupo.doble .input-grupo {
    flex: 1;
}

.input-grupo {
    position: relative;
}

.input-grupo input,
.input-grupo select,
.input-grupo textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.input-grupo textarea {
    resize: vertical;
    min-height: 100px;
}

.input-grupo input:focus,
.input-grupo select:focus,
.input-grupo textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
    background-color: white;
}

.input-grupo label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #777;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #f9f9f9;
    padding: 0 5px;
}

.input-grupo input:focus + label,
.input-grupo input:not(:placeholder-shown) + label,
.input-grupo select:focus + label,
.input-grupo select:not([value=""]) + label,
.input-grupo textarea:focus + label,
.input-grupo textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #3498db;
    background-color: white;
}

.btn-enviar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #201d1d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-enviar svg {
    margin-left: 10px;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-enviar:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-enviar:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cita-section {
        padding: 3rem 1rem;
    }
}

/* Estilos para la notificación */
.notificacion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notificacion-overlay.mostrar {
    opacity: 1;
    visibility: visible;
}

.notificacion-contenido {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.notificacion-overlay.mostrar .notificacion-contenido {
    transform: translateY(0);
}

.notificacion-icono {
    margin-bottom: 20px;
}

.notificacion-icono svg {
    width: 60px;
    height: 60px;
}

.notificacion-titulo {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.notificacion-mensaje {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.notificacion-boton {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notificacion-boton:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.Conta-Footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: black;
    color: white;
    height: max-content;
}


/* Media Queries para responsividad */
@media (max-width: 1200px) {
    .Conta-Bloque-Servicies{
        grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
        height: auto;
    }

    .Conta-Jobs {
        padding: 2rem 1rem;
        & .Conta-Jobs-Items{
            grid-template-columns: 1fr;
            height: auto;
        }
    }

    .Conta-Abouts .Conta-About-Bloque{
        grid-template-columns: 1fr;
        height: auto;
    }
}

/* Media queries para versión desktop */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .CN-list {
        position: static;
        height: auto;
        flex-direction: row;
        clip-path: none;
        background: transparent;
        width: auto;
        gap: 0.5rem;
    }
    
    .CN-list li {
        opacity: 1;
    }
    
    .CN-list li a {
        font-size: 1rem;
    }
    
    .Conta-Nav {
        padding: 1.5rem 3rem;
    }
}

@media (max-width: 768px) {
    .resultados-container {
        flex-direction: column;
        align-items: center;
    }
    
    .resultado-item {
        max-width: 100%;
    }

    .cita-container {
        flex-direction: column;
    }
    
    .form-grupo.doble {
        flex-direction: column;
        gap: 25px;
    }
    
    .info-contacto,
    .formulario-cita {
        padding: 40px 25px;
    }

    .Conta-Abouts {
        & .Conta-About-Bloque {
            & .CBA-Img .CBAI-Left{
                margin: 0 auto;
                width: 80%;
                height: auto;
                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 2rem 0.5rem 4rem 0.5rem;
                    box-shadow: 3px 3px 18px 6px #00000099, 
                                -6px -6px 2px 6px #80008099;
                }
            }
            & .CBA-Img .CBAI-Right{
                margin: 0 auto;
                width: 80%;
                height: auto;
                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 0rem 2rem 0.5rem 4rem;
                    box-shadow: -3px -3px 18px 6px #00000099,
                                6px 6px 2px 6px #000000;
                }
            }
        }
    }

    .Conta-Footer{
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .Conta-Bloque-Servicies-fondo{
        & .Conta-Bloque-Servicies{
            grid-template-columns: 1fr;
            height: auto;
            & .CBS-items{
                height: calc(100vh - 30vh);
                & .CBSI-Img::after{
                    content: '';
                    position: absolute;
                    background: #000000a3;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                }
                &::after{
                    content: '';
                    position: absolute;
                    background: url('../imagen/servicios/click.png') no-repeat;
                    background-size: cover;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 50px;
                    height: 50px;
                    z-index: 1;
                    animation: pulse 2s infinite;
                }
            }
            .CBS-items:hover{
                &::after{
                    display: none;
                }
            }
        }
    }
    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.9;
        }
        50% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.9;
        }
    }
}


/******* Fin del CSS del landiespage *********/

/* Estilos secciones secundarias de la websites */
.banner-testimonios{
    background: url('../imagen/header/fondo-test.jpg') no-repeat;
    background-size: 100% 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    & .banner-picture{
        width: 100%;
        height: 100%;
        & img{
            width: 100%;
            height: 100%;
            object-fit: scale-down;
        }
    }

    & .banner-content{
        position: relative;
        z-index: 2;
        width: 100%;
        margin: 0 auto;
        & .banner-title{
            font-size: calc(10vw + 1rem);
            z-index: 2;
            color: var(--bg-color-black);
            font-family: 'Rosaline', cursive;
        }
        & .banner-subtitle{
            font-size: calc(1vw + 0.5rem);
            color: var(--bg-color-grey);
            margin-bottom: 20px;
            z-index: 2;
        }
    }
}

.Section-Testimonios{
    padding: 6rem 0;
    min-height: 100vh;

    & .Section-Testimonios-card{
        position: relative;
        margin-bottom: 2rem;
        
        
        & .STC-Bloque{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding:0 2rem 0 3rem; 
            height: 100%; 
            margin: 0 1rem;
            border-radius: 1rem;
            background: #ffffff;
            box-shadow: 0px 0px 16px 6px #00000029, inset 0px 0px 0px 6px #fff;

            & .STCB-Video{
                border-radius: 1rem; height: 100%;
                & video{
                    width: 250px; height: 100%; padding: 0; border-radius: 1rem; object-fit: contain; transform: scale(1.2);
                }
            }

            & .STCB-Body{
                padding:0 1rem 0 3rem; width: 100%; height: max-content;
            }
        }
    } 
}