.pricing ul li {
    padding: 3px 0;
    display: flex;
    align-items: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 70px;
    /* Ajusta esta propiedad para subirlo */
    right: 15px;
    background-color: #25d366;
    color: white;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    /* Asegura que se muestre por encima de otros elementos */
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    #sitename {
        font-size: 18px;
        margin-left: 25%;
    }

    #social-links {
        justify-content: center;
    }

    .btn-getstarted {
        display: none;
    }
    #Inicio.hero {
        padding: 0 !important;
    }
}

.footer-newsletter iframe {
    width: 100%;
    /* Hace que el mapa ocupe el 100% del contenedor */
    height: 250px;
    /* Ajusta la altura */
}

@media (max-width: 768px) {
    .footer-newsletter iframe {
        height: 200px;
        /* Altura más pequeña en móviles */
    }
}

.footer-links {
    text-align: center;
}

.footer-links ul {
    padding: 0;
    margin: 0 auto;
    /* Centra el `ul` horizontalmente */
    display: inline-block;
    /* Permite que el `ul` se ajuste a su contenido */
    text-align: left;
    /* Para que los elementos dentro se alineen correctamente */
}

.footer-links ul li {
    list-style: none;
}

/* SEGUNDA PARTE */

@media (max-width: 768px) {
    /* Para pantallas de 768px o menos (tablets y móviles) */
    #Inicio h2 {
        font-size: 1.5rem;
        /* Tamaño similar a un h3 */
        font-weight: bold;
        /* Asegura el mismo grosor de letra */
    }

    .video-preview iframe {
        height: 250px;
        width: 100%;
        /*todo el ancho disponible */
    }
}

.hero:before {
    content: "";
    background: color-mix(in srgb, #12011a, transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ======== Estilos para Menú en Móviles ======== */
@media (max-width: 350px) {
    .navmenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #9b59b6;
        /* Color lila */
        padding: 20px;
        display: flex;
        flex-direction: column;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }

    .navmenu.active {
        left: 0;
    }

    .navmenu ul {
        flex-direction: column;
        padding: 0;
        margin-top: 20px;
    }

    .navmenu ul li {
        width: 100%;
        /* Ocupar todo el ancho */
        margin-bottom: 10px;
        text-align: center;
    }

    .navmenu ul li a {
        display: block;
        width: 100%;
        padding: 12px;
        background: #8e44ad;
        /* Lila más oscuro */
        color: white;
        font-size: 18px;
        border-radius: 5px;
        text-transform: uppercase;
        font-weight: bold;
        transition: background 0.3s ease-in-out;
    }

    .navmenu ul li a:hover {
        background: #6a0dad;
        /* Lila más oscuro al pasar el mouse */
    }

    /* Botón de WhatsApp en móviles */
    .btn-getstarted {
        display: block;
        width: 100%;
        text-align: center;
        background: #6a0dad;
        padding: 12px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 10px;
        color: white;
        text-decoration: none;
        transition: background 0.3s ease-in-out;
    }

    .btn-getstarted:hover {
        background: #4a0785;
    }

    /* Ícono del menú móvil */
    .mobile-nav-toggle {
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
}

@media (max-width: 768px) {
    .navmenu1 {
        box-shadow:
            0 40px 120px rgb(104 44 165 / 89%),
            0 0 10px rgba(170, 119, 218, 0.637);
    }
}

@media (max-width: 480px) {
    section,
    .section {
        color: var(--default-color);
        background-color: var(--background-color);
        padding: 25px 0;
        scroll-margin-top: 100px;
        overflow: clip;
    }

    .navmenu1 {
        box-shadow:
            0 40px 120px rgb(104 44 165 / 89%),
            0 0 10px rgba(170, 119, 218, 0.637);
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
        height: 300px;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        box-shadow: #9e8dd9 0px 0px 2px;
        font-family: var(--nav-font);
        text-align: center;
        font-size: 17px;
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        transition: 0.3s;
        color: #fff;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background: linear-gradient(
            135deg,
            #26122e 0%,
            #1a1a2e 50%,
            #51166d 100%
        );

        border: 3px solid #9333ea;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow:
            0 40px 120px rgb(104 44 165 / 89%),
            0 0 10px rgba(170, 119, 218, 0.637);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #c08cf1;
    }

    .bi-x::before {
        content: "\f62a";
        background: #9333ea;
        border-radius: 25px;
    }
}

#agendarDemo {
    display: none;
}

@media (max-width: 480px) {
    #agendarDemo {
        display: block;
    }

    #agendarDemoPC {
        display: none;
    }
}

/* ===============================================
ESTILOS PARA EL SLIDER
================================================== */

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    /* min-height: 500px; */
    position: relative;
}

.slide-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(
        135deg,
        rgba(164, 27, 223, 0.842),
        rgba(74, 144, 226, 0.6)
    ); */
    z-index: 1;
}

.slide-content {
    flex: 1;
    padding: 60px 100px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.3s forwards;
}

.slide-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.slide-button {
    background: linear-gradient(135deg, #8e44ad, #4a90e2);
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.9s forwards;
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.3);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navegación */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #8e44ad;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-nav:hover {
    background: #8e44ad;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(218, 215, 215, 0.795);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgb(255, 255, 255);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        /* overflow-x: hidden; */
        overflow-y: visible;
    }

    .slide {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* ya lo tienes */
        height: auto;
    }

    .slide-image {
        width: 45%;
        height: 200px;
    }

    .slide-content {
        width: 50%;
        padding: 20px;
    }

    .slide-title {
        font-size: 1.2rem;
    }

    .slide-description {
        font-size: 0.95rem;
        display: none;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #8e44ad;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .fa {
        display: inline-block;
        font: normal normal normal 14px / 1 FontAwesome;
        text-rendering: auto;
        font-size: 12px !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Animación para slides */
.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-button {
    animation: slideInUp 1s ease-out forwards;
}

.titu {
    color: #12011a;
    font-weight: 600;
}
.titu:hover {
    color: #12011a;
    font-weight: 600;
}

/* ===============================
FONDO NUBE LILA
================================== */
.nubelila {
    color: #fff;
    background-image: url("../img/nubelila.png");
    background-size: cover; /* Para cubrir toda el área */
    background-position: center; /* Centrar la imagen */
    background-repeat: no-repeat; /* Que no se repita */
    position: relative; /* Necesario si agregas overlays u otros elementos */
    z-index: 1;
}

/* ===============================
BOTON SOLICITAR PLAN
================================== */
.buy-btn {
    color: #fff;
    background-color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
}

.buy-btn:hover {
    background: var(--accent-color);
    border-color: var(--background-color);
    color: var(--contrast-color);
}

/* ===============================
PARA NUESTROS PLANES PARA LOS DOS TIPOS DE PLANES
================================== */
.main-container {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-section {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.character-container {
    width: 250px;
    height: 300px;
    position: relative;
    margin-right: 60px;
    flex-shrink: 0;
}

.character-figure {
    width: 180px;
    height: 250px;
    position: relative;
    margin: 0 auto;
}

.character-body {
    width: 120px;
    height: 180px;
    background: linear-gradient(145deg, #764ba2, #667eea);
    border-radius: 60px 60px 20px 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.character-head {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #f4a261, #e76f51);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.character-hair {
    width: 90px;
    height: 60px;
    background: linear-gradient(145deg, #e76f51, #d62d20);
    border-radius: 45px 45px 20px 20px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.character-tool {
    position: absolute;
    right: -20px;
    top: 40px;
    font-size: 30px;
    color: #333;
    z-index: 3;
}

.title-content {
    flex: 1;
}

.main-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    /* letter-spacing: 3px; */
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-selector {
    background: rgba(255, 255, 255, 0.61);
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.397);
}

.plan-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 28px;
    border-radius: 45px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 2px;
}

.plan-btn.active {
    background: linear-gradient(135deg, #764ba2, #667eea);
    color: white;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.5);
}

.workers-badge {
    background: linear-gradient(135deg, #764ba2, #667eea);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    /* display: inline-block; */
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.trabajadores {
    background: linear-gradient(135deg, #ffffff, #ecddf0);
    color: white;
    padding: 1px 15px;
    color: #000000;
    border: 4px solid #7d0dfb; /* Borde visible */
    border-radius: 25px; /* Esquinas redondeadas */
    box-shadow: inset 0 0 10px #ffffff; /* Borde interior sutil */
}

.description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cards-container {
    /* margin-top: 60px; */
    position: relative;
}

.plan-set {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.plan-fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.plan-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.price-card {
    position: relative;
    background: white;
    color: #333;
    border-radius: 30px;
    padding: 20px 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .price-card:hover{
    box-shadow: 0 0 20px white;
} */

.corner-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 63px; /* o 90px si prefieres */
}

.price-card:hover {
    /* transform: translateY(-15px); */
    box-shadow: 0 0px 45px rgba(252, 251, 251, 0.932);
}

.price-card.featured {
    background: linear-gradient(135deg, #764ba2 0%, #d329e2 100%);
    color: white;
    transform: scale(1.01);
    border: 3px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}

.price-card.featured2 {
    background: linear-gradient(135deg, #96009b 0%, #e02fba 100%);
    color: white;
    transform: scale(1.01);
    border: 3px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}

.featured2 .order-btn {
    background: white;
    color: #764ba2;
}

.price-card.featured:hover {
    /* transform: scale(1.08) translateY(-15px); */
    /* transform: scale(1.08) translateY(-15px); */
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.price-amount {
    /* font-size: 4rem; */
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-period {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.special-offer {
    background: rgba(231, 111, 81, 0.15);
    color: #e76f51;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
}

.order-btn {
    background: linear-gradient(135deg, #764ba2, #d329e2);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(118, 75, 162, 0.5);
}

.featured .order-btn {
    background: white;
    color: #764ba2;
}

.featured .order-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.implementation-note {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

.gift-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e76f51, #f4a261);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cards-container {
        gap: 20px;
    }
    .price-card {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .header-section {
        flex-direction: column;
        text-align: center;
    }
    .character-container {
        /*  margin-right: 0; */
        margin-bottom: 30px;
    }
    .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 10px 10px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .plan-set {
        flex-direction: column;
        align-items: center;
        gap: 55px;
    }
    .price-card {
        width: 100%;
        max-width: 300px;
    }

    .price-card.featured2 {
        background: linear-gradient(135deg, #96009b 0%, #e02fba 100%);
        color: white;
        border: 3px solid rgba(255, 255, 255, 0.4);
        z-index: 2;
    }

    .price-card.featured {
        transform: none;
    }
    .price-card.featured:hover {
        transform: translateY(-15px);
    }
    .main-title {
        font-size: 2.5rem;
    }

    .trabajadores {
        background: linear-gradient(135deg, #ffffff, #ecddf0);
        color: white;
        padding: 2px 10px;
        color: #000000;
        border: 4px solid #7d0dfb; /* Borde visible */
        border-radius: 25px; /* Esquinas redondeadas */
        box-shadow: inset 0 0 10px #ffffff; /* Borde interior sutil */
    }

    .cards-container {
        /* margin-top: 60px; */
        position: relative;
        display: flex; /* ← importante */
        flex-wrap: wrap; /* Para que se acomoden en filas si hay varios */
        align-items: center; /* Centrado vertical */
        justify-content: center; /* Centrado horizontal */
        gap: 20px; /* (opcional) separación entre tarjetas */
    }

    .btn-sonido-animado {
        display: none;
    }
}

/* ===========================
PARA BOTON , PONER AUDIO AL VIDEO
=============================*/

.btn-sonido-animado {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background-color: #7d0dfb;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px rgba(166, 76, 166, 0.6);
    transition: transform 0.3s;
}

.btn-sonido-animado:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.973);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(166, 76, 166, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(166, 76, 166, 0);
    }
}

/* ==============================
PARA SLIDERS PRINCIPAL
=================================*/
/* Tablets verticales */
/* @media (max-width: 1200px) {
    .contenedor-deslizador {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .contenedor-deslizador {
        height: 60vh;
    }
} */

.contenedor-deslizador {
    position: relative;
    width: 100%;
    height: 86vh;
    overflow: hidden;
}

.deslizador {
    position: relative;
    width: 100%;
    height: 100%;
}

.diapositiva {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.diapositiva.activa {
    opacity: 1;
}

.diapositiva img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flecha-navegacion {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.flecha-navegacion:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.flecha-navegacion.anterior {
    left: 30px;
}

.flecha-navegacion.siguiente {
    right: 30px;
}

.indicadores-diapositiva {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicador.activo {
    background: white;
    transform: scale(1.2);
}

.contenido-diapositiva {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 60px 30px 30px;
    z-index: 5;
}

.titulo-diapositiva {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.descripcion-diapositiva {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 600px;
}

.section-title h2 {
    padding-top: 40px !important;
}

@media (max-width: 1600px) {
    .slider-container {
        display: none;
    }

    .contenedor-deslizador {
        height: 56.25vw;
        /* 16:9 aspect ratio */
        min-height: 300px;
        max-height: 70vh;
    }
}

@media (max-width: 1200px) {
    .slider-container {
        display: none;
    }

    .contenedor-deslizador {
        height: 56.25vw;
        /* 16:9 aspect ratio */
        min-height: 300px;
        max-height: 55vh;
    }
}

/* Diseño Responsivo */
@media (max-width: 768px) {
    .slider-container {
        display: none;
    }

    .contenedor-deslizador {
        height: 56.25vw;
        /* 16:9 aspect ratio */
        min-height: 300px;
        max-height: 70vh;
    }

    .flecha-navegacion {
        padding: 10px 15px;
        font-size: 20px;
    }

    .flecha-navegacion.anterior {
        left: 15px;
    }

    .flecha-navegacion.siguiente {
        right: 15px;
    }

    .contenido-diapositiva {
        padding: 40px 20px 20px;
    }

    .titulo-diapositiva {
        font-size: 2rem;
    }

    .descripcion-diapositiva {
        font-size: 1rem;
    }

    .indicadores-diapositiva {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    /* PARA LA SEÑORITA IMAGEN */
    .character-figure {
        width: 180px;
        height: 250px;
        position: relative;
        margin: 0 auto;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .character-container {
        margin-left: 25px;
        padding-bottom: 0;
        margin-bottom: 0;
        height: 270px;
    }

    .main-title {
        margin-bottom: 10px;
        font-size: 28px;
        /* border-radius: 25px;
        background-color: #8c2edf;
        border: 1px solid #f0ebf3; */
    }

    .muchacha {
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center; /* Centra verticalmente también */
        margin-left: 0 !important;
        padding: 0;
    }

    .container-fila {
        display: flex;
        align-items: center;
        gap: 10px; /* Espacio entre elementos */
    }

    .ideal {
        display: none;
    }

    .plan-selector {
        margin-bottom: 0;
    }

    .h5,
    h5 {
        font-size: 1rem;
    }
    .price-card {
        padding: 0;
    }
    .implementation-note {
        display: none;
    }
    .plan-selector {
        padding: 1px;
    }
    .plan-btn {
        padding: 8px 25px;
    }
    .order-btn {
        margin-bottom: 17px;
    }

    .muchacha_centro {
        display: flex;
        justify-content: center;
        item-align: center;
    }

    .slider-container {
        display: block;
    }
    .slide-image {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 220px;
    }

    .slide-content {
        display: none;
    }

    .contenedor-deslizador {
        height: 42.25vw;
        min-height: 10px;
        /* height: 56.25vw;
        min-height: 250px; */
        max-height: 60vh;
    }

    .flecha-navegacion {
        padding: 8px 12px;
        font-size: 18px;
    }

    .flecha-navegacion.anterior {
        left: 10px;
    }

    .flecha-navegacion.siguiente {
        right: 10px;
    }

    .titulo-diapositiva {
        font-size: 1.5rem;
    }

    .descripcion-diapositiva {
        font-size: 0.9rem;
    }

    .cantidadTrabajadores {
        margin-bottom: 15px;
    }

    div i,
    div h5 {
        display: inline-block;
        vertical-align: middle;
    }

    div h5 {
        margin-left: 15px;
        margin-bottom: 0;
    }

    .section-title h2 {
        padding-top: 0 !important;
    }
}
/* ==================================
ICONOS DE LAS REDES SOCIALES EN LA BARRA DE NAVEGACION
============================================= */
@media (max-width: 480px) {
    #redes {
        display: none;
    }

    .contact .info-item {
        background-color: var(--surface-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        padding: 24px 0 30px 0;
        text-align: center;
    }
    #redes1 {
        display: none;
    }
    #redes2 {
        display: none;
    }
    .footer-about {
        text-align: center;
    }
}
.navmenu a i,
.navmenu a:focus i {
    font-size: 20px;
    line-height: 0;
    margin-left: 3px;
    transition: 0.3s;
}

/* ==================================
PARA EL BOTION DE CANTIDAD DE EMPLEADOS
============================================= */

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(135deg, #fdf8ff 0%, #e8dcf5 100%);
    color: rgb(36, 36, 36);
    border: none;
    padding: 8px 30px 10px 8px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(186, 102, 234, 0.4);
}

.custom-select select:hover {
    transform: translateY(-0px);
    box-shadow: 0 8px 25px rgba(219, 102, 234, 0.5);
}

.custom-select select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.custom-select::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: rgb(152, 44, 224);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select select option {
    background: white;
    color: #333;
    padding: 10px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Variación con gradiente diferente */
.variant-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.variant-purple:hover {
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}

/* Variación verde */
.variant-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.variant-green:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.select-group {
    margin-bottom: 10px;
}

/* ==================================
PARA ESPACIOS DE LA MUCHACHA RESPONSIVO
============================================= */
@media (max-width: 767.98px) {
    .muchacha_centro {
        position: static !important; /* Quitar position absolute */
        text-align: center;
        padding: 0 !important;
        /* margin-bottom: 20px; */
    }

    .muchacha_centro img.muchacha {
        margin-left: 0 !important; /* Centrar imagen */
        width: 120px !important; /* Ajustar tamaño para móvil */
    }

    /* Ajustar el contenido en móvil */
    .offset-md-2 {
        margin-left: 0 !important; /* Quitar offset en móvil */
        padding-top: 0 !important;
    }

    .divmuchacha {
        padding-top: 15px !important;
    }

    .custom-select select {
        width: 90%;
    }

    .custom-select::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: 33px;
        transform: translateY(-50%);
        color: rgb(152, 44, 224);
        pointer-events: none;
        transition: transform 0.3s ease;
    }
}
