* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.dragging-active {
    user-select: none;
    -webkit-user-select: none;
}

a.logo svg {
    height: 25px;
}
a.logo .fil0 {fill:#fff}
a.logo .fil1 {fill:#FFD166}

body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: "mons", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #6D6D6D;
    background-color: #E6E8E6;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    width: 100%;
    height: 100dvh;
}

/* .logo {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    top: 3%;
    left: 3%;
} */

/* --- 1. Estilos del Botón Hamburguesa --- */
.hamburger-button {
    display: none; /* Oculto en desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Debe estar por encima del menú */
    position: absolute;
    top: 3%;
    right: 3%;
}

.hamburger-line {
    width: 2rem;
    height: 0.20rem;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
}


.menu-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;

    z-index: 999;
    text-align: center;
    padding: 3%;
    box-sizing: border-box;
}
.menu {
    text-align: right;
}
.logo {text-align: left;}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

#sections-container {
    position: fixed; /* ¡CLAVE! Fija el contenedor en la vista */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    touch-action: pan-y;
    /* La altura total de este contenedor será ajustada por JS
       para que todas las secciones quepan verticalmente sin scroll nativo */
}

.section {
    width: 100%; /* Ocupa el 100% del ancho de la ventana */
    height: 100vh; /* Ocupa el 100% del alto de la ventana */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;

}

.video-fondo2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    /* filter: grayscale(40%) brightness(1.1) contrast(1.1); */
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1F3A4A;
    opacity: 1; /* Puedes subir hasta 0.35 si querés más dramatismo */
    pointer-events: none;
    width: 100%;
    height: 100vh;
}

.contenedor-hero {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}



.contenedor-hero p{
    font-size: 1.618rem;
    font-weight: 300;
    font-family: "lato", sans-serif;

}

h1, h2 {
	font-size: 4.234rem;
    margin-bottom: 1.618rem;
    font-weight: 700;
    line-height: 1;
    color: #1F3A4A;
    font-family: "MuseoModerno", sans-serif;
    font-style: normal;
    letter-spacing: -0.03em;
    word-spacing: -0.05em;
    width: 100%;
}

.clara {
    color: #E6E8E6 !important;
}
.amarilla {
    color: #FFD166;
}

.botones-hero {
	opacity:1;
	gap:2.617rem;
  
    display: flex;
    justify-content: center;
    z-index: 15;
    margin: 0 auto;
    width: 50%;

}
.gral-primario {
	color: #1F3A4A;
    background-color: #FFD166;
    
}


button:hover{
    background-color: #ffcd38;
    color: #1F3A4A;
    }


.gral-sec {
    background-color: transparent;
}

.btn-planes.nav-contacto:hover {
    background-color: #ffcd38;
    color: #1F3A4A;
}
.gral-secundario /*boton supuestamente general*/{
	transition: all 0.3s ease;
	color: #1A2A40;
	font-size: 1rem;
	border: none;
	font-weight: 300;
	text-decoration:none;
	position: relative;
	display: inline-block;
	cursor: pointer;
	transition: color 0.3s ease;
}


.gral-secundario:hover {
  color: #6be6f0; 
}
	
.gral-secundario::after {
  content: '';
  position: absolute;
  bottom: -0.145rem;
  left: 0;
  width: 100%;
  height: 0.145rem;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.gral-secundario:hover::after {
  transform: scaleX(1.1);
  background-color: #6be6f0;
}

@keyframes buttonsAnimation {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}



/*--------------------------------PANTALLA GRANDE -------------------------
-------------------------------------------------------------------------*/
@media (orientation: landscape) {
    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.618rem;
    }
button {
    padding: 1rem 2.617rem;
    font-weight: 600;
    font-size: 1rem;
    border: 0.145rem solid #FFD166;
    cursor: pointer;
    border-radius: 0.618rem;
    flex-grow: 1;
    flex-basis: 0;
    transition: all 0.5s ease;
    
}

.contenedor {
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}
.columna-izquierda,
.columna-derecha {
  box-sizing: border-box;
}

.columna-izquierda {
    width: 44%;
    margin-left: 3%;
    margin-right: 3%;
 
}
.columna-derecha {
  width: 50%;
 
}

.columna-derecha .video-fondo {
 
    width: 100%;
    height: 100vh;
    object-fit: cover;
     /* 👈 Este es el truco */
    z-index: 0;
    pointer-events: none;
    overflow: hidden;

  }




}
/*--------------------------------PANTALLA CHICA -------------------------
-------------------------------------------------------------------------*/
@media (orientation: portrait) {
    /* Mostramos el botón hamburguesa */
    .hamburger-button {
        display: flex;
    }

    /* Ocultamos la navegación de la forma tradicional */
    .main-nav {
        display: none; /* La ocultamos inicialmente */
        position: fixed; /* La sacamos del flujo normal del documento */
        top: 0;
        right: 0;
        width: 80%; /* Ocupa el 80% del ancho */
        height: 100vh; /* Ocupa toda la altura */
        background-color: #333;
        
        /* La movemos fuera de la pantalla */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    /* Hacemos que la lista de enlaces sea vertical */
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .main-nav a {
        color: white;
        font-size: 1.5rem;
    }

    /* --- 3. ESTADO ACTIVO (Cuando se hace clic) --- */

    /* Mostramos el menú */
    .main-nav.is-active {
        display: block; /* La volvemos a mostrar */
        transform: translateX(0);
        z-index: 998;
    }
    
    /* Animamos el botón para que sea una 'X' */
    .hamburger-button.is-active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(0.6rem, 0.6rem);
    }

    .hamburger-button.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-button.is-active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(0.6rem, -0.6rem);
    }
    /* ... Tus otras reglas de CSS para móviles/tablets que no modificamos aquí ... */
    .section {
        width: 100%; /* Mejor que 100vw */
        height: 100dvh;
        box-sizing: border-box;
        padding: 3%;

    
    }
    .hero {
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .overlay {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    h1, h2 {
        font-size: 2rem;
        margin-bottom: 0rem;
    }
    .contenedor-hero p{
        font-size: 1.2rem;
        padding: 5%;
    }
    .botones-hero {
        opacity: 1; /* Asegúrate de que esto se maneje con JS si debe mostrarse/ocultarse */
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0 10%;
    }
    .botones-hero .gral-primario,
    .botones-hero .gral-sec {
        width: 100%;
        /* .gral-sec border: none; se mantiene */
    }
    .section button {
        padding: 1rem 2.617rem;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        border-radius: 0.618rem;

        flex-basis: 0;
        transition: all 0.5s ease;
        
    }
    .contenedor-hero h2 {
        font-size: 3.5rem;
    }
    .contenedor {
        display: flex;
        width: 100%;
        margin: 0 auto;
        gap: 30px;
        align-items: center;
        position: absolute;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
        overflow: hidden;
    }

    .columna-izquierda {

    position: absolute;
    z-index: 1;
    left: 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: Flex;
    flex-direction: column;
    gap: 10px;

    }
    .columna-izquierda button {
        max-width: 300px;
    }
    .columna-izquierda .gral-sec {
        border: none;
        color: #FFD166;
        padding-left: 0;
        text-align: left;
        margin-bottom: 0;
        padding-bottom: 0;
        padding: 0;
    }
    .columna-izquierda h2 {
        color: #E6E8E6;
        margin-bottom: 0rem;
    }
    .columna-izquierda p{
        width: 90%;
        color: #E6E8E6;
        font-size: 1.2rem;
        font-weight: 300;
        font-family: "lato", sans-serif;
        overflow: hidden;
    }
    .columna-derecha {
        position: absolute;
        width: 100%;
        height: 100%; /* Revisa si este height es intencional y si es compatible con el resto del layout */
        background-size: cover;
        background-position: center;
        background-color: #1F3A4A;
        box-sizing: border-box;
        overflow: hidden;
    }
    .columna-derecha .video-fondo {
        position: absolute;
        width: 100%;
        height: 100%; /* Revisa si este height es intencional y si es compatible con el resto del layout */
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
        opacity: 0.3;
        object-position: 35% 90%;
        overflow: hidden;
    }
    .opc-l {
        display: none;
    }
    .portfolio {
        width: 100%;
        height: 100%;
        background-color: #1F3A4A;
        display: flex !important;
        flex-direction: column; /* Apila los elementos hijos verticalmente */
        box-sizing: border-box;



    }


/* Contenedor principal del slider */

.titulo-porfolio {
    display: flex;
    
    width: 100%;
    height: 15%;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.titulo-porfolio h2 {
    color: #E6E8E6;
}
.slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Oculta todo lo que se salga del contenedor */
    cursor: grab; /* Indica que el elemento es arrastrable */
    background-color: #fff;

    border:none;
    position:absolute;

}
.fondo-portfolio {
    display: flex;
    width: 100%;
    height: 40%;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column; /* Apila los elementos hijos verticalmente */
    box-sizing: border-box;
    gap: 15px;
    color: #E6E8E6;
    padding: 5%;
    padding-top: 30%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, #E6E8E6 45%, transparent);
    

}
.botones-info {
    display: flex;
    position: absolute;
    right: 3%;
    bottom: 30%;
    color: #ffcd38;
}
.boton-portfolio {
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column; /* Apila los elementos hijos verticalmente */
    box-sizing: border-box;
    gap: 15px;
    color: #101820;
    padding: 5%;
    font-size: 1.2rem;
    position: absolute;
    bottom: 0;
    /* background: linear-gradient(to top, #101820 65%, transparent); */
    

}
.image-container {
    display: flex;
    width: 100%;
    height: 100%;
    
}
.data-container {
    width: 100%;
    height: 40%;
    flex-direction: column;
    position:absolute;
    bottom:0;
    gap: 3%;
    display: flex;
    box-sizing: border-box;
    padding: 5%;
    background: rgba(5, 5, 5, 0.4); /* 1. Fondo translúcido */
    backdrop-filter: blur(8px);             /* 2. Desenfoque del fondo */
    -webkit-backdrop-filter: blur(8px);     /* Soporte para Safari */
    color: #E6E8E6 !important;
    justify-content: center;
    align-items: center;
    text-align: left;
    display:none;

}

/* Wrapper que contiene todas las diapositivas */
.slider-wrapper {
    display: flex; /* La magia para poner los slides en línea */
    width: 100%;
    height: 100%;
    will-change: transform; /* Optimización para la animación de transformación */
}

/* Cada diapositiva individual */
.slide {
    width: 100%; /* Cada slide ocupa el 100% del ancho de la ventana */
    height: 100%; /* Cada slide ocupa el 100% del alto de la ventana */
    flex-shrink: 0; /* Evita que los slides se encojan */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Estilo de las imágenes dentro de los slides */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el slide sin deformarse */
    user-select: none; /* Evita que la imagen sea seleccionada al arrastrar */
    pointer-events: none; /* Evita que la imagen interfiera con los eventos de arrastre */
    object-position: top;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el slide sin deformarse */
    user-select: none; /* Evita que la imagen sea seleccionada al arrastrar */
    pointer-events: none; /* Evita que la imagen interfiera con los eventos de arrastre */
    object-position: top;
}

    /* .slider-container {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow: hidden; 
    }
    .image-grid {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;


    }

    .image-grid .image-item {
        position: absolute;
        width: 100%;
        height: 100vh;
        overflow: hidden;

    }
    .image-grid .image-item img {
        height: 100vh;
        width: 400px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        object-fit: cover;
        object-position: top;
    } */


    /* .pricing-header {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 0;
        height: 20%;
        padding: 3% 0 3% 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pricing-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 4%;
        padding: 4%;
        justify-content: center;
        width: 100%;
        margin: 0;
        perspective: 1000px;
        height: 80%;
        margin-bottom: 0;
        box-sizing: border-box;

    }
    .pricing-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        position: relative;
        cursor: pointer;
        box-sizing: border-box;
        overflow: hidden;
        box-shadow: 0 0 1px rgb(0 0 0 / 8%), 0 4px 16px rgb(0 0 0 / 12%);
        background-color: #fff;
        padding: 5%;
}
    .pricing-card-inner {
        display: block;
        box-sizing: border-box;
        overflow: hidden;
        padding: 0;
        box-shadow: none;
        border: none;
        display: flex;
    justify-content: center;
    }

    .destacado {
        transform: scale(1.0);
    }
    .pricing-actions {
        position: absolute;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
    }
    .pricing-card .gral-primario {
        display: none;
    
    }
    .pricing-actions a.gral-sec {
        margin: 0;
        width: 100%;
        border: none;
        text-decoration: none;
        height: 50%;
        text-align: center;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 6%;
        background-color: #FFD166;
        color: #fff;
    }
    .features {
        display: none;
    }
    .price {
        font-size: 1.5rem;
        padding: 0;
        border-radius: 6px;
        font-weight: 700;
        text-align: center;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40%;
        height: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .price h3 {
        text-align: center;
    }
 */
    /*

    .section-content h1, .section-content h2 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }*/

/*





.titulo-cards {
    float: left;
    width: 100%;
    height: 20%;
    box-sizing: border-box;
}

.price h3 {
    background-color: #1F3A4A;
    color: #fff;
    padding: 2%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
} */

/* 

.price {
    float: right;
    width: 40%;
    position: relative;
    top: auto;
    right: auto;
    height: 60%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

*/
/*  */
/* .ideal-for {
    border: none;
    width: 60%;
    float: left;
    margin: 0;
    padding: 3% 3% 3% 0;
    height: 60%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}*/
/* .ideal-for {
    border: none;
    width: 60%;
    float: left;
    margin: 0;
    padding: 3% 3% 3% 0;
    box-sizing: border-box;
    
} */

/* ==========================================================================
   ESTILOS COMPLETOS Y DEFINITIVOS PARA EL SLIDER DE PRECIOS
   ========================================================================== */

/*
 * --- ESTILOS BASE (VISTA POR DEFECTO / LANDSCAPE) ---
 * Aquí definimos cómo se ven las tarjetas cuando el slider NO está activo.
 * Usamos Grid para una maquetación de escritorio limpia y moderna.
*/

.pricing-slider-wrapper {
    /* Contenedor principal que se centra y tiene un ancho máximo en escritorio */
    width: 100%;
    max-width: 1200px;  /* Ancho máximo para pantallas grandes */
    margin: 0 auto;       /* Centra el contenedor en la página */
    padding: 0 40px;      /* Espacio lateral para que no se pegue a los bordes */
    box-sizing: border-box;
}

.pricing-cards-container {
    /* Usamos Grid para crear una cuadrícula perfecta */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas de igual tamaño */
    gap: 30px;                             /* Espacio de 30px entre cada tarjeta */
}

.pricing-card {
    /* En modo Grid, no necesitamos definir anchos; la tarjeta se adapta a su celda. */
    /* Este selector se mantiene por si quieres añadir estilos como sombras o bordes a la tarjeta. */
    width: 100%; /* Asegura que la tarjeta llene la celda del grid */
}

/* Las flechas del slider están ocultas por defecto. */
.slider-arrow {
    display: none;
}
.pricing-card h3 {
    color: #1F3A4A;
    font-weight: 600;
    text-align: left;
    width: 100%;
    font-size: 1.5rem;
    
    /* text-align: center; */
}
.ideal-for {
    color: #6D6D6D;
    font-size: 0.96rem;
    margin-top: 1.5rem;
    font-weight: 400;
    text-align: left;
    font-style: italic;
    /* text-align: center; */
    border-top: 1px solid #DADADA;
    padding-top: 1rem;


}
.features ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 2rem;

    
}
.features {
    margin-top: auto; /* Empuja el div .features al medio, consumiendo espacio superior */
margin-bottom: auto; /* Empuja el div .features al medio, consumiendo espacio inferior */
}

.features li {
margin-top: 0.95rem;
color: #1A1A1A;
position: relative;

font-weight: 400;
position: relative;
padding-left: 25px; /* Crea espacio para el icono */

}

.features ul li::before {
content: ''; /* Obligatorio */
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 18px; /* Tamaño del icono */
height: 18px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.pricing-actions {
    display: grid;
    flex-direction: column;
    gap: 10px;
	text-align: center;
	align-items: center;
    margin-top: auto;
}


/*
 * --- ESTILOS DEL SLIDER (VISTA ACTIVA / PORTRAIT) ---
 * Estas reglas SOBREESCRIBEN las anteriores cuando el JavaScript añade la clase '.slider-active'.
 * Aquí usamos Flexbox para crear el efecto de "tira de película".
*/
.pricing-header {
    height: 15%;
}

.pricing-slider-wrapper.slider-active {
    /* El wrapper ahora ocupa el 100% de la pantalla y oculta lo que se desborde */
    width: 100%;
    max-width: none;      /* Quitamos el límite de ancho */
    overflow: hidden; 
    padding: 0;           /* Quitamos el padding para el efecto de ancho completo */
    height: 85%;  
    /* Truco para centrarlo perfectamente en el viewport */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-slider-wrapper.slider-active .pricing-cards-container {
    /* Cambiamos a Flexbox para crear la "tira" horizontal */
    display: flex;
    grid-template-columns: none; /* Anulamos la regla de grid */
    flex-wrap: nowrap;           /* ¡Esencial! Forzamos una sola línea */
    justify-content: flex-start; /* Alineamos las tarjetas al inicio */
    gap: 0; 
    height: 100%;                     /* Quitamos el espacio entre tarjetas */
}

.pricing-slider-wrapper.slider-active .pricing-card {
    /* Cada tarjeta ahora ocupa el 100% del ancho del wrapper */
    width: 100%;
    flex-shrink: 0;   /* ¡Esencial! Evita que las tarjetas se encojan */
    padding: 5%;       /* Quitamos el padding de la tarjeta para el efecto full-bleed */
    border: 0;        /* Nos aseguramos de que no haya bordes que afecten el cálculo */
}

.pricing-slider-wrapper.slider-active .pricing-card-inner {
    /* El contenido DENTRO de la tarjeta sí tiene padding para que no se pegue a los bordes */
    padding: 25px;
    box-sizing: border-box;
        display: flex; /* Habilita flex para el contenido interno */
    flex-direction: column; /* Apila los elementos internos */
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #DADADA;
    background-color: #fff;
    z-index: 2;
    transition: all 0.40s ease;
    overflow: hidden;
    box-shadow: 0 0 1px rgb(0 0 0 / 8%), 0 4px 16px rgb(0 0 0 / 12%);
}

.pricing-slider-wrapper.slider-active .slider-arrow {
    /* Mostramos y posicionamos las flechas */
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;

    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s, background-color 0.3s;

    padding: 0; 
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    flex-grow: 1;
    flex-basis: 0;
    transition: all 0.5s ease;
}

.pricing-slider-wrapper.slider-active .slider-arrow.prev { left: 15px; }
.pricing-slider-wrapper.slider-active .slider-arrow.next { right: 15px; }

.section-content {
    width: 100%;
    height: 100%;
}
.contenedor-text-icon-h2{
    width: 100%;
    height: 10%;  
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5%;
    color: #E6E8E6;
}
.contenedor-text-icon-h2 h2{
    color: #E6E8E6;
}
.problema {
    width: 100%;
    height: 100%;
    background-color: #1F3A4A;
    color: #E6E8E6;
}
.solucion {
    background-color: #101820;
    width: 100%;
    height: 100%;
    color: #E6E8E6;
}
.contenedor-text-icon {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10%;
    box-sizing: border-box;
    padding: 20% 5%;
    justify-content: center;
    align-items: center;

}
.text-icon-icon {
    width: 75px;
    height: 75px;
    box-sizing: border-box;
    
}
.text-icon {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 25px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}
.slider-container {
    touch-action: pan-x;
}
 }


 