/*=============== ROOT ================*/
:root {
    --primary: #EA3235;
    --dark: rgb(6, 18, 50);
    --white: #FFFFFF;
    --gray: #f5f5f5;
    --dark-gray: #333;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Kufam', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    color: var(--dark);
    line-height: 1.6;
}




/*=============== NAV ================*/


.main-nav {
    position: fixed;
    width: 100%;
    padding: 3.3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: var(--white);
    height: 75px;
    position: fixed;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.logo img {
    height: 7ch;
    /* Logo más grande */
    width: 100%;
    transition: transform 0.3s ease;

}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 500px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-column {
    flex: 1;
}

.menu-column h3 {
    color: rgba(48, 48, 174, 0.756);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--dark);
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

/* Modifica el color base de los iconos */
.menu-column i {
    background-image: linear-gradient(135deg, #04112A, #21548D, #BC3A56);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

/* Estilo para el hover con degradado suave */
.menu-column ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.menu-column ul li a:hover {
    background: linear-gradient(45deg,
            rgba(49, 80, 139, 0.1),
            rgba(49, 80, 139, 0.05));
    border-radius: 4px;
    transform: translateX(5px);
}

.menu-column ul li a:hover i {
    transform: scale(1.1);
}

/* Estilos para el botón hamburguesa */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary);
}

/* Media queries para responsive */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    /* Ajustes para el mega-menu en móvil */
    .mega-menu {
        position: relative;
        width: 100%;
        top: 0;
        box-shadow: none;
        padding: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .mega-menu.active {
        display: flex;
        flex-direction: column;
    }

    .menu-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    /* Ajuste para el logo */
    .logo img {
        height: 5ch;
    }

    .main-nav {
        transition: top 0.3s ease-in-out;
    }

    .main-nav.active {
        top: 0;
    }

}

/* Ajustes adicionales para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .nav-links {
        padding: 15px;
    }

    .mega-menu {
        padding: 5px;
    }

    .menu-column h3 {
        font-size: 1rem;
    }

    .menu-column ul li a {
        font-size: 0.9rem;
    }
}

/*=============== HEADER ================*/
.header-home {
    overflow: hidden;
    position: relative;
    z-index: 0;
    /**/
    height: 100vh;
    color: var(--white);
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    background-image: url(../imgs/home/1.png),
        linear-gradient(to bottom,
            rgba(6, 18, 50, 0.8),
            rgba(255, 255, 255, 0.3));
    width: 100%;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    justify-content: center;
}

.hero {
    max-width: 60%;
    margin-top: 60px;
}

.hero h1 {
    font-family: 'Kufam', sans-serif;
    font-size: 4rem;
    margin: 2rem 0 1.5rem 0;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 1.5rem 0;
}

.description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 80%;
    color: var(--white);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.btn-contact a {
    text-decoration: none;
    color: var(--white);
}

.btn-contact:hover {
    background: #d6282a;
    transform: translateX(5px);
}

/*=============== DEGRADE ENTRE CAJAS ================*/
.header-home::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.90),
            #ffffff);
    z-index: 1;
    pointer-events: none;
}




/*=============== MAIN SECTIONS ================*/
/* main {
    padding: 40px 5%;
} */

section {
    margin-bottom: 80px;
    padding: 40px 5%;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark);
    text-align: center;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
}

.sec_general h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

/*====================CARRUSEL PRUEBAS==============*/


.solucion-content {
    display: flex;
    flex-direction: row;
    height: 150ch;
    width: 100%;
    justify-content: space-between;
    
}


.content-left,
.content-right {
    width: 100%;
}


.content-right {
    display: flex;
    height: 100%;
    width: 100%;


}





/*.slider-container,
.cont_hero {
    width: 100%;
    overflow: hidden;
}*/


@media (max-width: 768px) {
    .solucion-content {
        flex-direction: column;
        text-align: center;
    }

    .content-right,
    .content-left {
        width: 100%;
    }
}


.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;

}


.solucion-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    /*border-radius: 20px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 450px;
    overflow: hidden;
    scroll-snap-align: start;
    margin-right: 30px;
    /* Reemplaza el gap para mejor compatibilidad */
}

/*------------------*/
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}


.solucion-item {
    flex: 0 0 auto;
    width: 100vw;
    /* O el ancho deseado */
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* QUIENES SOMOS SECTION */
.quienes_somos {
    position: relative;
    padding: 60px 5%;
    background: var(--white);
}

.borde-superior {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #394D9200;
}

.quienes_somos .sec_1 {
    border-top: solid #321CA8 5px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px auto 60px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 85%;
}

.logo-empresa {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.descripcion-empresa {
    text-align: left;
    padding: 20px 0;
}

.descripcion-empresa p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.mapa-peru {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.mapa-peru:hover {
    transform: scale(1.05);
}

.sec_general {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sec_item {

    border-top: solid 10px #EE3049;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sec_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .quienes_somos .sec_1 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .descripcion-empresa {
        text-align: center;
    }

    .mapa-peru {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sec_general {
        grid-template-columns: 1fr;
    }

    .quienes_somos .sec_1 {
        width: 95%;
        padding: 20px;
    }
}

/* CARRUSEL */
.nuestras_soluciones {
    padding: 1px 5%;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

.nuestras_soluciones h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
}

.nuestras_soluciones h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background-color: #EA3235;
}

.soluciones-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucion-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 7px 5px 5px 11px rgba(0, 0, 0, 0.1);
}


.solucion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 50px;
}


.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    margin-bottom: 20px;
    background-color: #EA3235;
    width: 60%;
    height: 5ch;
    border-radius: 2ch;
    padding: 2ch;
    TEXT-ALIGN: center;
}

.icon-title i {
    font-size: 1.2rem;
}

.icon-title span {
    font-size: 0.9rem;
    font-weight: 500;
}

.content-left h3 {
    color: #EA3235;
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 30px;
}

.saber-mas {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #EA3235;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s;
}

.saber-mas:hover {
    gap: 15px;
}

.content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.explorar-container {
    text-align: center;
    margin-top: 40px;
}

.btn-explorar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #394D92;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    height: 7ch;
    transition: transform 0.3s;
}

.btn-explorar:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .solucion-content {
        grid-template-columns: 1fr;
    }

    .content-right {
        order: -1;
    }

    .content-right img {
        height: 250px;
    }

    .nuestras_soluciones h1 {
        font-size: 2rem;
    }
}

/* Estilos para la sección de Productos/Soluciones */
.productos-soluciones {
    padding: 80px 5%;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

.productos-soluciones h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
}

.productos-soluciones h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background-color: var(--primary);
}

.productos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.productos-slider {
    position: relative;
    overflow: hidden;
}

.productos-track {
    display: flex;
    transition: transform 0.5s ease;
}

.producto-item {
    min-width: 100%;
    background: var(--white);
    /*border-radius: 20px;*/
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.producto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
    /* Altura fija para mantener consistencia */
}

.producto-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.producto-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    width: fit-content;
}

.producto-tag i {
    font-size: 1.1rem;
}

.producto-info h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.producto-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 30px;
}

.producto-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s;
}

.producto-link:hover {
    gap: 15px;
}

.producto-imagen {
    height: 100%;
    overflow: hidden;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .producto-content {
        grid-template-columns: 1fr;
        height: auto;
    }

    .producto-imagen {
        height: 300px;
        order: -1;
    }

    .producto-info {
        padding: 30px;
    }
}

*/

/* CONTACTO SECTION */
.contacto {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--gray) 0%, #ffffff 100%);
}

.contacto-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(234, 50, 53, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.contacto-wrapper:hover {
    transform: translateY(-5px);
}

.contacto-titulo {
    color: var(--primary);
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contacto-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.contacto-subtitulo {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.contacto-coment {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 50, 53, 0.1);
    outline: none;
}

.ruc-input {
    width: 100%;
}

.contact-form textarea {
    height: 150px;
    border-radius: 15px;
    resize: none;
}

.btn-enviar {
    background: var(--primary);
    color: var(--white);
    padding: 15px 50px;
    font-size: 1.1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(234, 50, 53, 0.3);
    width: fit-content;
    margin: 0 auto;
}

.btn-enviar:hover {
    background: #d6282a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 50, 53, 0.4);
}

.form-message {
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Botón para subir */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #d6282a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(234, 50, 53, 0.4);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contacto-wrapper {
        padding: 20px;
    }

    .contacto-titulo {
        font-size: 2rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }

    .contacto {
        margin: 20px;
        padding: 20px;
    }

    .contacto-titulo {
        font-size: 2rem;
    }
}

/* FOOTER STYLES */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary);
}

.whatsapp-contact {
    color: #25D366;
    cursor: pointer;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons .tiktok {
    background-color: #000000;
}

.social-icons .linkedin {
    background-color: #0077B5;
}

.social-icons .instagram {
    background: #E4405F;
}

.social-icons .facebook {
    background-color: #1877F2;
}

.social-icons .twitter {
    background-color: #000000;
}



.libro-reclamaciones img {
    width: 150px;
    height: auto;
    margin-top: 15px;
}

.footer-bottom {
    height: 5ch;
    display: flex;
    justify-content: space-around;
    align-items: center
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-link {
    background-color: var(--white);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 0.9rem;
    width: 65%;
    font-weight: 500;
}


.footer-link a {
    color: black;
}


.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Estilos responsive para móviles */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    /* Ajustes para la información de contacto */
    .contact-info li {
        justify-content: center;
    }

    /* Ajustes para iconos sociales */
    .social-icons {
        justify-content: center;
        grid-template-columns: repeat(5, auto);
        gap: 20px;
        margin: 20px auto;
    }

    /* Ajuste para libro de reclamaciones */
    .libro-reclamaciones {
        text-align: center;
        margin-top: 30px;
    }

    .libro-reclamaciones img {
        width: 120px;
        margin: 10px auto;
    }

    /* Footer bottom */
    .footer-bottom {
        height: auto;
        padding: 15px 0;
    }

    .footer-link {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        padding: 15px;
    }

    .footer-link span {
        order: -1;
        /* Mueve el copyright al principio en móviles */
        margin: 10px 0;
    }

    /* Ajustes adicionales para mejor espaciado */
    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .whatsapp-contact {
        margin-top: 15px;
    }

    /* Mejora la interactividad en móviles */
    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .footer-link a,
    .footer-link span {
        font-size: 0.9rem;
        padding: 5px 0;
    }
}

/* Media query para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Estilos para Equipo de Expertos */
.equipo-expertos {
    padding: 80px 0;
    text-align: center;
    margin: auto;
}

.equipo-expertos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.equipo-expertos h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.equipo-expertos h2:after {
    display: none;
}

.equipo-expertos .intro {
    color: var(--dark);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.divider-line {
    width: 100px;
    height: 3px;
    background-color: var(--dark);
    margin: 30px auto 50px;
}

.expertos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.experto-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin: auto;
}

.experto-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.experto-info h3 {
    color: var(--dark);
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .expertos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .equipo-expertos h2 {
        font-size: 2rem;
    }

    .equipo-expertos .intro {
        font-size: 1.1rem;
    }
}




/* Estilos para Nuestras Alianzas */
.nuestras-alianzas {
    background-color: var(--gray);
    padding: 80px 0;
}

.nuestras-alianzas h2 {
    text-align: center;
    margin-bottom: 50px;
}

.alianzas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.alianza-categoria {
    margin-bottom: 60px;
    display: flex;
}

.categoria-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.categoria-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

#clientes_ {
    color: #2E64D4;
    font-weight: 100;
    margin: 0 1.5ch 0 0;
}

#socios_ {
    color: #d42e2e;
    font-weight: 100;
    margin: 0 1.5ch 0 0;
}

/* Contenedor principal del slider */
.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}






.slider-track img {
    height: 15ch;
    width: auto;
    object-fit: contain;
}

/*normal*/
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* Hover effect para pausar el slider */
.logos-slider:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .categoria-header {
        justify-content: center;
    }

    .slider-track {
        gap: 20px;
    }

    .slider-track img {
        height: 40px;
    }
}

/* Estilos para Noticias */
.noticias {
    background: linear-gradient(45deg, #090E1B, #220B24, #090E1B);
    padding: 80px 0;
    color: var(--white);
}

.noticias .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.noticias-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.noticias-intro h2 {
    color: #4864D9;
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 20px;
}

.noticias-intro h2:after {
    display: none;
}

.noticias-intro .subtitulo {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.leer-mas {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.noticias-destacadas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.noticia-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 40ch;
    cursor: pointer;
}

.noticia-item img {
    width: 100%;
    height: 40ch;
    object-fit: cover;
    transition: transform 0.3s;
}

.noticia-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.noticia-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.noticia-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.arrow-icon {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.noticia-item:hover img {
    transform: scale(1.05);
}

.noticia-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(10px);
}

@media (max-width: 1024px) {
    .noticias-grid {
        grid-template-columns: 1fr;
    }

    .noticias-destacadas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .noticias-intro .subtitulo {
        font-size: 2rem;
    }

    .noticia-item img {
        height: 250px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .noticias-intro {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .experto-item {
        flex-direction: column;
        text-align: center;
    }

    .icono-svg {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .logo-item {
        width: 160px;
        height: 70px;
        padding: 15px 20px;
    }
}

@media (max-width: 1200px) {
    .noticias .container {
        padding: 0 30px;
    }

    .noticias-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .noticias-intro {
        text-align: center;
    }

    .noticias-intro h2 {
        text-align: center;
    }

    .leer-mas {
        justify-content: center;
    }

    .noticias-destacadas {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .noticias {
        padding: 40px 0;
    }

    .noticias .container {
        padding: 0 20px;
    }

    .noticias-intro .subtitulo {
        font-size: 2.5rem;

        br {
            display: none;
        }
    }

    .noticia-item {
        height: auto;
        aspect-ratio: 16/9;
    }

    .noticia-item img {
        height: 55ch;
    }

    .noticia-content {
        padding: 20px;
    }

    .noticia-content h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .noticia-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .noticias {
        padding: 30px 0;
    }

    .noticias-intro .subtitulo {
        font-size: 2rem;
    }

    .noticia-content {
        padding: 15px;
    }

    .noticia-content h3 {
        font-size: 1.2rem;
    }

    .noticia-content p {
        font-size: 0.9rem;
    }

    .leer-mas {
        font-size: 1rem;
    }

    .arrow-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .noticias-intro .subtitulo {
        font-size: 1.8rem;
    }

    .noticia-content {
        padding: 12px;
    }

    .noticia-content h3 {
        font-size: 1.1rem;
    }

    .noticia-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero {
        max-width: 80%;
    }

    .quienes_somos .sec_1 {
        grid-template-columns: 1fr;
    }

    .sec_general {
        grid-template-columns: 1fr;
    }

    .solucion-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea,
    .btn-enviar {
        grid-column: span 1;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}



/* Contenedor principal del slider */
.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Asegura que nada se desborde */
    margin: 0 auto;
}

.cont_hero {
    display: flex;
    gap: 40px;
    width: calc(100% * 20);
    /* Para duplicar contenido */
    padding-right: 40px;
    /* Compensa el último gap */
    flex-direction: row;
    overflow-x: visible;
    animation: scroll 170s linear infinite;

    padding: 20px 10px;
}

/* El resto del CSS se mantiene igual */
/* Estilos para las imágenes */
.cont_hero img {
    height: 30ch;
    /* Altura fija para consistencia */
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    /* Evita que las imágenes se reduzcan */
}


/* Efecto hover para pausar */
.logos-slider:hover .cont_hero {
    animation-play-state: paused;
}

/* Versión responsive */
@media (max-width: 768px) {
    .categoria-header {
        padding-top: 30px;
        justify-content: center;
    }

    .cont_hero {

        display: flex;
        gap: 40px;
   
        /* Para duplicar contenido */
        padding-right: 40px;
        /* Compensa el último gap */
        flex-direction: row;
        overflow-x: visible;
        gap: 40px;
        width: calc(100% * 20);

        animation: scroll 5s linear infinite;
        padding: 20px 0;
    }

    .cont_hero img {
        height: 40px;

    }
}

/*ALIANZAS*/
.nuestras-alianzas {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.nuestras-alianzas h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.alianzas-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.alianza-categoria {
    padding: 10px 20px;
}

.categoria-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.categoria-title1 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    margin-right: 400px;
    font-size: 25px;
}

.categoria-title img {
    width: 50px;
    height: auto;
}

.categoria-title h3 {
    font-size: 1.8rem;
    color: #444;
}

/*  */
.logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 180px;
}

.logos-slider1 {
    overflow: hidden;
    position: relative;
    width: 220px;
    height: 180px;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}




.slider-track1 {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
    gap: 100px;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.slider-track img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 160px;
}

.slider-track img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .logos-slider {
        height: 140px;
    }

    .slider-track {
        animation: scroll 15s linear infinite;
        gap: 30px;
    }

    .slider-track img {
        max-height: 120px;
    }
}

/*boton*/
.explorar-container {
    margin: 40px 0;
    /* margen arriba y abajo */
    text-align: center;
}

.btn-explorar {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #BC3A56, #194274);
    /* Degrade morado-rosado */
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: auto;
    padding-top: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.btn-explorar i {
    margin-right: 10px;
}

.btn-explorar:hover {
    transform: scale(1.05);
}




/* Responsive */
@media (max-width: 1024px) {

    .solucion-item,
    .cont_hero,
    .slider-wrapper {
        height: auto !important;
        min-height: auto !important;
        overflow: visible;
        width: 100%;
    }

    .solucion-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding: 20px;
        width: 100%;
    }

    .content-left,
    .content-right {
        width: 90%;
    }

    .content-right img {
        width: 100%;
        /* Ocupa todo el ancho, reina total */
        height: auto;
        display: block;
        margin: -30ch;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        object-fit: cover;
    }

    .solucion-item {
        padding-bottom: 40px;
        width: 100%;
    }

    .icon-title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        font-size: 16px;
        margin-bottom: 10px;
        text-align: left;
        width: 100%;
        overflow-wrap: anywhere;
        /* por si el texto es largo */
    }

    .icon-title i {
        font-size: 20px;
        min-width: 20px;
    }

    .icon-title span {
        font-weight: bold;
        flex: 1;
        line-height: 1.2;
    }
}

/* 
================= IN FORM ================== */











.form-message {
    padding: 12px 20px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Animación de entrada */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animación de salida */
.form-message.hide {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/*===============RESPONSIVE - ALIANZAS-----------------*/
@media (max-width: 1024px) {
    .nuestras-alianzas {
        padding: 40px 20px;
        text-align: center;
    }

    .alianza-categoria {
        margin-bottom: 40px;
    }

    .categoria-title,
    .categoria-title1 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        text-align: center;
    }

    .categoria-title img,
    .categoria-title1 img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .categoria-title h3,
    .categoria-title1 h3 {
        font-size: 20px;
    }

    .logos-slider,
    .logos-slider1 {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 0;
    }

    .slider-track,
    .slider-track1 {
        display: flex;
        align-items: center;
        gap: 20px;
        width: max-content;
    }

    .slider-track img,
    .slider-track1 img {
        height: 60px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .slider-track img:hover,
    .slider-track1 img:hover {
        transform: scale(1.1);
    }

    /* Scroll suave y ocultar scrollbar */
    .logos-slider::-webkit-scrollbar,
    .logos-slider1::-webkit-scrollbar {
        display: none;
    }

    .logos-slider,
    .logos-slider1 {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .logos-slider1 {
        width: 100px;
        scrollbar-width: none;
    }

    .categoria-header {
        padding-top: 50px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .categoria-title1 {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        margin-bottom: 20px;
        margin-right: 7ch;
        font-size: 25px;
    }

    .logos-slider1 {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .slider-track1 img {
        scroll-snap-align: center;
    }


}

/*BOTON EXPLORAR*/
@media (max-width: 768px) {
    .btn-explorar {
        padding: 12px 20px;
        font-size: 14px;
        height: auto;
        /* Quitamos height fija para que fluya */
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .explorar-container {
        margin-top: 30px;
        padding: 0 10px;
        /* Un poco de aire en los lados */
    }
}


.top-bar {
    background-color: #2c3e50;
    /* Color oscuro profesional */
    color: white;
    padding: 8px 0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 5px;
    color: #EA3235;
    /* Color corporativo */
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.client-portal {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
}

.client-portal:hover {
    color: #EA3235;
}

.social-mini a {
    color: white;
    margin-left: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.social-mini a:hover {
    color: #EA3235;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
        /* Ocultar en móviles para ahorrar espacio */
    }
}



/* =============== TOP NAV - CORPORATIVO INTENSO ================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #04112A 0%, #21548D 50%, #04112A 100%);
    color: white;
    z-index: 1100;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(2, 18, 43, 0.3);
    border-bottom: 1px solid rgba(167, 199, 255, 0.2);
}

.top-nav.mobile-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-nav-links {
    display: flex;
    gap: 2.8rem;
    margin-left: 4ch;
}

.top-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.top-nav-link:hover {
    color: white;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);

}

.top-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f14042c2);
    transition: width 0.4s ease;
}

.top-nav-link:hover::before {
    width: 100%;
}

.main-nav.scrolled {
    top: 0;
    transition: top 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.top-nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/*LOGIN*/

.login_boton {
    background: linear-gradient(to right, #0e284b, 
    #05152f);
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.login_icono {

    color: white;
    margin-right: 8px;
    font-size: 16px;

}

.i_login {

    list-style: none;

}

.link_login {

    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;

}


/*=======================SWIPPER======================*/
/**/
.swiper-slide {
    width: 100% !important;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .solucion-item {

    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .swiper {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    
  }
  

  .solucion-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border-radius: 20px;
    overflow: visible;
    /*box-shadow: 7px 5px 5px 11px rgba(0, 0, 0, 0.1);*/

    height: 50%; /* Esto hace que cada slide tome la altura total disponible */
   
   
}

.solucion-content {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    padding: 60px;
    width: 100%;
    justify-content: space-between;
    height: 100%;
    
}

/*BOTONES*/
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after,
.swiper-pagination::after {
    color: #4361a1 !important;
    font-size: 20px;
}

.swiper-pagination-bullet {
    background-color: #4361a1!important;
    
}

.swiper-pagination-bullet-active {
    background-color: #EA3235 !important; /* Para el que está activo, un morado más claro o pastel ✨ */
}


/*ADAPTACION MOVILES SWIPER*/@media screen and (max-width: 768px) {
    .solucion-content {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .solucion-item {
        height: auto;
    }

    .swiper {
        height: auto;
        position: relative; /* Necesario para las flechas posicionadas en el contenedor */
    }

    .swiper-slide {
        flex-direction: column;
        padding: 20px 0;
    }

    /* Estilo para las flechas */
    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        bottom: 30px; /* Aquí las mueves un poco más abajo si quieres */
        width: 30px;
        height: 30px;
        font-size: 12px;
        background-color: transparent;
    }

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-nav-buttons {
        display: none !important;
    }

    /* Alineación de la paginación */
    .swiper-pagination {
        position: absolute;
        bottom: 10px; 
        left: 50%;
        transform: translateX(-50%);
    }

    .content-left, .content-right {
        width: 100%;
        padding: 10px 0;
        height: 10ch;
       
    }


    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .saber-mas {
        font-size: 14px;
        display: inline-block;
        margin-top: 10px;
        padding: 8px 16px;
    }
}


/*------------------prueba------------------*/
/* Estilos base para todas las imágenes */
.content-right img, .img_cont {
    width: 90ch;
    height: 45ch;
    object-fit: cover;
    border-radius: 20px;
    display: block;
   
}

/* Clases para diferentes posiciones */
.img-right {
    object-position: right; /* Enfoca la parte derecha */
}

.img-left {
    object-position: left; /* Enfoca la parte izquierda */
}

.img-center {
    object-position: center; /* Enfoca el centro (valor por defecto) */
}

/* Responsividad (opcional) */
@media screen and (max-width: 768px) {
    .content-right img, .img_cont {
        width: 100%;
        max-width: 250px;
        height: 30ch;
        margin-bottom: -200px;
    }
}