/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

.logoinicio {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 5;
}

.logoinicio:hover .stoc {
    opacity: 70%;
    filter: drop-shadow(0 0 2px #06e5f5);
}

.stoc {
    width: 70px;
    height: 70px;
    transition: opacity 0.3s, filter 0.3s;
}


/* Estilos pago */

/* Estilos del encabezado */
.nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        background: white;
        position: relative;
        z-index: 1000;
        width: 100%;
        border-bottom: 3px solid #d8d8d8; /* Línea azul en la parte inferior */
    }
    
    .nav-container {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    /* Estilos del logo */
    .logo img {
        height: 70px;
        width: auto;
        display: block;
    }
    
    /* Estilos de los enlaces de navegación para desktop */
    .desktop-nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-link {
        text-decoration: none;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        position: relative;
        padding: 0.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .active-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: transparent;
        margin-top: 5px;
        transition: background-color 0.3s ease;
    }
    
    .nav-link.active {
        color: #2e3192; /* Azul oscuro para el texto activo */
    }
    
    .nav-link.active .active-dot {
        background-color: #2e3192; /* Punto azul para el enlace activo */
    }
    
   
 /* Estilos del botón CTA */
    .cta-button {
        background-color: #2e3192; /* Azul oscuro para el botón */
        color: white;
        padding: 0.7rem 1.5rem;
        border-radius: 0rem;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }
    
    .cta-button:hover {
        background-color: #232578; /* Un poco más oscuro al pasar el mouse */
    }
    .form-button-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
        
   .btncontacto {
    background-color: #2e3192; /* Azul oscuro para el botón */
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 0rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
}
/* Hover para escritorio */
.btncontacto:hover {
    background-color: #232578; /* Un poco más oscuro al pasar el mouse */
}

/* Estilos adaptados para pantallas pequeñas */
@media (max-width: 768px) {
    .btncontacto {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}

    /* Estilos del botón de menú móvil */
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        flex-direction: column;
        gap: 5px;
    }
    
    .menu-icon {
        display: block;
        width: 24px;
        height: 2px;
        background: #333;
        transition: all 0.3s ease-out;
    }
    
    /* Estilos del menú móvil */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 999;
        padding: 2rem 1rem;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 40%;
        gap: 1.5rem;
    }
    
    .mobile-nav-link {
        text-decoration: none;
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        position: relative;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .mobile-nav-link.active {
        color: #0055a4;
    }
    
    .mobile-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
        height: 2px;
        background-color: #0055a4;
    }
    
    .mobile-cta-button {
        background-color: #0055a4;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 0.25rem;
        text-decoration: none;
        font-weight: 600;
        margin-top: 1rem;
        text-align: center;
        width: 80%;
        max-width: 250px;
    }
    
    /* Estilos para dispositivos móviles */
    @media (max-width: 768px) {
        .nav {
            padding: 1rem;
        }
        
        .desktop-nav-links, .desktop-cta {
            display: none;
        }
        
        .menu-toggle {
            display: flex;
        }
        
        .nav-container {
            justify-content: flex-end;
        }
    }

     /* FIN NAV */


/* Estilos del footer */

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding: 20px 20px;
    
    margin-bottom: 0;
}

.footer-container {
  max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.ff{
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.fff{
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-logo {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
}


.footer-info {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    font-size: 1.2rem;
    color: #a2d45e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fff;
}

.social-link i {
    margin-right: 0.5rem;
}
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 2%; 
    border-radius: 2px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.map-container iframe {
    max-width: 100%;
    min-width: 100px;;
    max-height: 100%;
    min-height:100px;
    border: none;
}
@media (max-width: 768px) {
    .map-container {
        margin-top: 20px; /* Ajusta el valor para moverlo más hacia abajo */
    }
}
@media (max-width: 480px) {
    .map-container {
        margin-top: 40px; /* Ajusta aún más si es necesario */
    }
}
.footer-map {
    flex: 1;
    min-width: 250px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Estilos para la página de contacto */
.contact-header {
    background-color: #2842a0;
    color: white;
    text-align: center;
    padding: 3rem 5%;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    padding: 4rem 5%;
    background-color: #fff;
    margin: auto auto;
    justify-content: center;
}

.contact-container {
   display: flex;
   grid-template-columns: 1fr 1fr;
   margin: auto auto;
   text-align: center;
}

.contact-info  h2{
    margin: 0 -3px;

}

.contact-info h2 {
    color: #2842a0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-info{
    color: #2842a0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-info h2, .contact-info h2 {
    color: #2842a0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-detail, .social-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
}

.rea{
    display: grid;
    width: 90%;
    margin: auto auto;
    padding-bottom: 5rem;
    padding-top: 5rem;
    color: #1a169d;
    
}
.asa{
    width: auto;
}
.ase{
    width: auto;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  svg {
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  a.gray {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  .gray {
    color: #838383;
  }

  .info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24rem;
    margin-bottom: 3rem;
    margin: auto;
    width: auto;
    height: auto;
    
}
.med{
    width: 70%;
    margin: auto auto;
}
@media (min-width: 1101px) and (max-width: 1500px) {
    .info-columns {
        gap: 12rem;
    }
    .med{
        width: 90%;
    }
}
@media (max-width: 1150px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
.wh{
    color:#fff;
}

/* Pantallas entre 769px y 1100px */
@media (min-width: 769px) and (max-width: 1100px) {
    .info-columns {
        gap: 6rem;
    }
    .med{
        width: 100%;
    }
}

/* Pantallas menores o iguales a 768px */
@media (min-width: 200px) and (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .asa{
        margin-right: 0rem;
    }
    .ase{
        margin-left: 0rem;
    }
    .med{
        width: 100%;
    }
}

.blu{
    color: #191f94;
}
.red{
    color: #f00;
}
.gray{
    color: #444444;
}
ul {
  list-style: none; /* Quita los puntos o guiones */
  padding-left: 0;
}
a {
    text-decoration: none; /* Quita el subrayado */
    color: inherit; /* Mantiene el color del texto si lo deseas igual que el resto */
}


.contact-icon, .social-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f1fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #2842a0;
}

.contact-form-container {
    background-color: #f0f1fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #2842a0;
    font-size: 1.5rem;
}

.form-header span {
    color: #3e5fd4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.mar_d{
    padding-bottom: 20px;
}
.pad_d{
    padding-left: 60px;
}
.required {
    color: red;
}
.asd{
    color: #43d3ff;

}
.form-group input, .form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.submit-button {
    background-color: #2842a0;
    color: white;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  
}

.submit-button:hover {
    background-color: #1e3180;
}

/* Estilos para la página de noticias */
.news-hero {
    position: relative;
    height: 300px;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-1dWbk.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.news-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.news-hero-content {
    position: relative;
    z-index: 1;
}

.news-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-hero-content h1 {
    font-size: 2.5rem;
}

.news-hero-content span {
    color: #a2d45e;
}

.news-content {
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-header h3 {
    font-size: 1.5rem;
    color: #2842a0;
}

.news-section {
    margin-bottom: 4rem;
}

.news-section h3 {
    font-size: 1.5rem;
    color: #2842a0;
    margin-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2842a0;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.carousel-button.prev {
    margin-right: 1rem;
}

.carousel-button.next {
    margin-left: 1rem;
}

.arrow-icon {
    font-size: 1.2rem;
}

.carousel-track {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 1rem;
    width: 100%;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 0.67rem);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-news {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.play-button-news::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid white;
    margin-left: 4px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #2842a0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Estilos para notebooks y tablets grandes */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }

    .payment-illustration {
        width: 300px;
    }

    .steps-title {
        font-size: 2rem;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-image {
        max-width: 200px;
        margin: 0 auto 2rem;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    /* Estilos para iPads y tablets */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 5%;
        width: 100%;
        display: block;
    }

    .nav-links a.active::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 5%;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .benefits-container {
        flex-direction: column;
    }

    .payment-options {
        flex-direction: column;
    }

    .payment-illustration {
        display: none;
    }

    .payment-steps {
        height: auto;
    }



    .steps-content {
        padding: 3rem 5%;
    }

    

 
    .videos-container {
        flex-direction: column;
        align-items: center;
    }

    .video-card {
        max-width: 100%;
    }

    .products-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-column {
        width: 100%;
    }

    .footer-map {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .carousel-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    /* Estilos para celulares Android y iOS */
    .navbar {
        padding: 1rem 3%;
    }

    .logo img {
        height: 30px;
    }

    .hero {
        padding: 2rem 3%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        width: 180px;
        height: 180px;
    }

    .benefits {
        padding: 3rem 3%;
    }

    .benefits h2 {
        font-size: 1.7rem;
    }

    .benefits p {
        font-size: 1rem;
    }

    .payment-methods {
        padding: 3rem 3%;
    }

    .payment-header h2 {
        font-size: 1.7rem;
    }

    .payment-header p {
        font-size: 1rem;
    }

    .payment-steps {
        padding: 0;
    }

    .steps-title {
        font-size: 1.7rem;
    }

    .steps-subtitle {
        font-size: 1rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .know-more {
        padding: 3rem 3%;
    }

    .know-more-header h2 {
        font-size: 1.7rem;
    }

    .know-more-header p {
        font-size: 1rem;
    }

    .faq-title {
        font-size: 1.7rem;
    }

    .other-products-title {
        font-size: 1.7rem;
    }
    
    .news-hero-content h1 {
        font-size: 2rem;
    }
}

/* Estilos para dispositivos específicos */
/* iPhone */
@media only screen 
and (min-device-width: 375px) 
and (max-device-width: 812px) 
and (-webkit-min-device-pixel-ratio: 3) {
    .navbar {
        padding: 0.8rem 3%;
    }
}

/* iPad */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) {
    .hero-image {
        width: 220px;
        height: 220px;
    }
}

/* Dispositivos Android */
@media screen 
and (max-width: 640px) {
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* CATALOGO */

        /* SECTION 1: BENEFICIOS */
        .catalogo-beneficios {
            padding: 80px 20px;
            background: white;
        }

        .catalogo-contenedor {
            max-width: 1200px;
            margin: 0 auto;
        }

        .catalogo-titulo-principal {
            font-size: 2.2rem;
            text-align: center;
            color: #1f2937;
            margin-bottom: 60px;
            font-weight: 600;
        }

        .catalogo-beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .catalogo-beneficio-card {
            background: #f8fafc;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .catalogo-beneficio-card:hover {
            transform: translateY(-5px);
        }

        .catalogo-beneficio-icono {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
           
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
        }

        .catalogo-beneficio-titulo {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .catalogo-beneficio-descripcion {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* SECTION 2: MÓDULOS */
        .catalogo-modulos {
            padding: 60px 20px;
            background: #f8fafc;
        }

        .catalogo-modulos-titulo {
            font-size: 2rem;
            text-align: center;
            color: #1f2937;
            margin-bottom: 40px;
            font-weight: 600;
        }

        /* TABS RESPONSIVOS */
        .catalogo-tabs-wrapper {
            margin-bottom: 40px;
            padding: 0 10px;
        }

        .catalogo-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
        }

        .catalogo-tab {
            background: white;
            border: 2px solid #e5e7eb;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9rem;
            color: #6b7280;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            min-height: 44px;
            font-weight: 500;
        }

        .catalogo-tab:hover {
            border-color: #3b82f6;
            color: #3b82f6;
            transform: translateY(-1px);
        }

        .catalogo-tab.activo {
            background: #1e40af;
            border-color: #1e40af;
            color: white;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .catalogo-tab-icono {
            font-size: 1rem;
        }

        /* CARRUSEL */
        .catalogo-carrusel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 1000px;
            margin: 0 auto;
            min-height: 400px;
        }

        .catalogo-carrusel-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .catalogo-slide {
            min-width: 100%;
            padding: 40px;
            display: flex;
            align-items: center;
        }

        .catalogo-detalle-contenido {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        .catalogo-detalle-texto {
            padding-right: 20px;
        }

        .catalogo-detalle-titulo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .catalogo-detalle-subtitulo {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .catalogo-detalle-lista {
            list-style: none;
            margin-bottom: 30px;
        }

        .catalogo-detalle-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: #374151;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .catalogo-detalle-item::before {
            content: '✓';
            background: #3b82f6;
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .catalogo-detalle-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .catalogo-imagen-principal {
            width: 100%;
            max-width: 280px;
            height: 180px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #e5e7eb, #d1d5db);
        }

        .catalogo-imagen-principal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .catalogo-mockup-movil {
            position: absolute;
            right: -15px;
            top: 15px;
            width: 100px;
            height: 160px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            padding: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .catalogo-mockup-contenido {
            text-align: center;
            font-size: 0.75rem;
            color: #374151;
        }

        /* CONTROLES */
        .catalogo-controles {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            padding: 0 20px;
        }

        .catalogo-boton-nav {
            background: #e2e8f0;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.4rem;
            color: #64748b;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .catalogo-boton-nav:hover {
            background: #1e40af;
            color: white;
            transform: scale(1.05);
        }

        .catalogo-indicadores {
            display: flex;
            gap: 8px;
        }

        .catalogo-indicador {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .catalogo-indicador.activo {
            background: #1e40af;
            transform: scale(1.2);
        }

        /* DESKTOP (PC) - 1200px+ */
        @media (min-width: 1200px) {
            .catalogo-tabs {
                gap: 16px;
            }

            .catalogo-tab {
                padding: 14px 24px;
                font-size: 1rem;
            }

            .catalogo-slide {
                padding: 50px;
            }

            .catalogo-detalle-titulo {
                font-size: 1.8rem;
            }
        }

        /* LAPTOP/NOTEBOOK - 1024px a 1199px */
        @media (min-width: 1024px) and (max-width: 1199px) {
            .catalogo-tabs {
                gap: 14px;
            }

            .catalogo-tab {
                padding: 12px 22px;
                font-size: 0.95rem;
            }

            .catalogo-slide {
                padding: 45px;
            }
        }

        /* TABLET (iPad) - 768px a 1023px */
        @media (min-width: 768px) and (max-width: 1023px) {
            .catalogo-modulos {
                padding: 50px 15px;
            }

            .catalogo-tabs {
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .catalogo-tab {
                padding: 10px 18px;
                font-size: 0.85rem;
                margin-bottom: 8px;
            }

            .catalogo-slide {
                padding: 35px 25px;
            }

            .catalogo-detalle-contenido {
                gap: 30px;
            }

            .catalogo-detalle-titulo {
                font-size: 1.4rem;
            }
        }

        /* MÓVIL - LAYOUT VERTICAL CON IMAGEN ABAJO */
        @media (max-width: 767px) {
            .catalogo-beneficios {
                padding: 50px 20px;
            }

            .catalogo-titulo-principal {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }

            .catalogo-beneficios-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .catalogo-modulos {
                padding: 50px 15px;
            }

            .catalogo-modulos-titulo {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }

            /* TABS MÓVIL */
            .catalogo-tabs-wrapper {
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .catalogo-tabs {
                gap: 8px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .catalogo-tab {
                padding: 10px 16px;
                font-size: 0.8rem;
                margin-bottom: 6px;
                min-height: 42px;
            }

            /* CARRUSEL MÓVIL - LAYOUT VERTICAL */
            .catalogo-carrusel-wrapper {
                margin: 0 10px;
                border-radius: 15px;
                min-height: 550px;
            }

            .catalogo-slide {
                padding: 30px 20px;
                align-items: flex-start;
            }

            .catalogo-detalle-contenido {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: left;
            }

            /* TEXTO ARRIBA */
            .catalogo-detalle-texto {
                order: 1;
                padding-right: 0;
                margin-bottom: 20px;
            }

            /* IMAGEN ABAJO */
            .catalogo-detalle-visual {
                order: 2;
                justify-content: center;
                margin-top: 20px;
            }

            .catalogo-detalle-titulo {
                font-size: 1.4rem;
                margin-bottom: 15px;
                text-align: center;
            }

            .catalogo-detalle-subtitulo {
                font-size: 1rem;
                margin-bottom: 25px;
                text-align: center;
                color: #6b7280;
            }

            .catalogo-detalle-lista {
                margin-bottom: 25px;
            }

            .catalogo-detalle-item {
                font-size: 0.9rem;
                margin-bottom: 12px;
                line-height: 1.6;
            }

            .catalogo-detalle-item::before {
                width: 20px;
                height: 20px;
                font-size: 0.8rem;
            }

            /* IMAGEN CENTRADA Y MÁS GRANDE */
            .catalogo-imagen-principal {
                max-width: 280px;
                height: 160px;
                margin: 0 auto;
            }

            .catalogo-mockup-movil {
                position: static;
                width: 90px;
                height: 130px;
                margin: 15px auto 0;
                padding: 10px;
            }

            .catalogo-mockup-contenido {
                font-size: 0.7rem;
            }

            /* CONTROLES MÓVIL */
            .catalogo-controles {
                gap: 15px;
                margin-top: 25px;
                padding: 0 15px;
            }

            .catalogo-boton-nav {
                width: 42px;
                height: 42px;
                font-size: 1.3rem;
            }

            .catalogo-indicadores {
                gap: 6px;
            }

            .catalogo-indicador {
                width: 10px;
                height: 10px;
            }
        }

        /* MÓVIL PEQUEÑO - hasta 480px */
        @media (max-width: 480px) {
            .catalogo-beneficios {
                padding: 40px 15px;
            }

            .catalogo-titulo-principal {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .catalogo-beneficio-card {
                padding: 30px 20px;
            }

            .catalogo-beneficio-icono {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .catalogo-modulos {
                padding: 40px 10px;
            }

            .catalogo-modulos-titulo {
                font-size: 1.4rem;
                margin-bottom: 25px;
            }

            .catalogo-tabs-wrapper {
                padding: 0 5px;
            }

            .catalogo-tab {
                padding: 8px 14px;
                font-size: 0.75rem;
                min-height: 38px;
            }

            .catalogo-carrusel-wrapper {
                margin: 0 5px;
                min-height: 500px;
            }

            .catalogo-slide {
                padding: 25px 15px;
            }

            .catalogo-detalle-contenido {
                gap: 25px;
            }

            .catalogo-detalle-titulo {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .catalogo-detalle-subtitulo {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .catalogo-detalle-item {
                font-size: 0.85rem;
                margin-bottom: 10px;
            }

            .catalogo-imagen-principal {
                max-width: 240px;
                height: 140px;
            }

            .catalogo-mockup-movil {
                width: 80px;
                height: 110px;
                margin-top: 12px;
                padding: 8px;
            }

            .catalogo-mockup-contenido {
                font-size: 0.65rem;
            }
        }

        /* iOS ESPECÍFICO */
        @supports (-webkit-touch-callout: none) {
            .catalogo-tab {
                -webkit-tap-highlight-color: transparent;
                -webkit-appearance: none;
            }

            .catalogo-boton-nav {
                -webkit-tap-highlight-color: transparent;
            }

            /* iOS Safari específico */
            @media screen and (-webkit-min-device-pixel-ratio: 2) {
                .catalogo-detalle-titulo {
                    -webkit-font-smoothing: antialiased;
                }
            }
        }

        /* ANDROID ESPECÍFICO */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {
            .catalogo-tab:focus {
                outline: none;
            }

            /* Android Chrome específico */
            .catalogo-slide {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
        }

        /* MODO PAISAJE MÓVIL */
        @media (max-height: 500px) and (orientation: landscape) and (max-width: 767px) {
            .catalogo-slide {
                padding: 20px 15px;
            }

            .catalogo-carrusel-wrapper {
                min-height: 350px;
            }

            .catalogo-detalle-contenido {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                text-align: left;
            }

            .catalogo-detalle-texto {
                order: 1;
            }

            .catalogo-detalle-visual {
                order: 2;
            }

            .catalogo-detalle-titulo {
                font-size: 1.1rem;
                text-align: left;
            }

            .catalogo-detalle-subtitulo {
                text-align: left;
            }

            .catalogo-imagen-principal {
                max-width: 200px;
                height: 120px;
            }

            .catalogo-mockup-movil {
                position: absolute;
                right: -10px;
                top: 10px;
                width: 70px;
                height: 90px;
            }
        }

/* HOME testimonio y plataforma*/

        /* SECTION 1: PROCESO SOFTWARE */
        .software-proceso {
            background: linear-gradient(135deg, #081f5f 0%, #3b82f6 100%);
            padding: 80px 20px;
            color: white;
            text-align: center;
            width: 68%;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
              margin: 60px auto; /* ← Espacio arriba y abajo */
        }

        .software-titulo {
            font-size: 2.5rem;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .software-flujo {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .software-item {
            text-align: center;
        }

        .software-dispositivo {
            width: 90%;
            max-width: 100%;
            height: auto;
            margin: 0 auto 20px;
        }

        .software-label {
            font-size: 0.9rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .software-flecha {
            font-size: 2.5rem;
            color: #60a5fa;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .software-flujo {
                flex-direction: column;
            }

            .software-flecha {
                transform: rotate(90deg);
            }
        }


        /* SECTION 2: TESTIMONIOS */
        .software-testimonios {
            background: #0046D70F;
            padding: 80px 20px;
        }

        .software-contenedor {
            max-width: 800px;
            margin: 0 auto;
        }

        .software-carrusel {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .software-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .software-slide {
            min-width: 100%;
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .software-foto {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #e2e8f0;
            flex-shrink: 0;
            overflow: hidden; /* importante para que la imagen no se salga */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .software-foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 50%;
        }

        .software-texto {
            flex: 1;
        }

        .software-cita {
            font-size: 1.1rem;
            font-style: italic;
            color: #374151;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .software-autor {
            font-weight: bold;
            color: #1e40af;
            margin-bottom: 5px;
        }

        .software-cargo {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .software-controles {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .software-boton {
            background: #e2e8f0;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #64748b;
        }

        .software-boton:hover {
            background: #1e40af;
            color: white;
        }

        .software-puntos {
            display: flex;
            gap: 10px;
        }

        .software-punto {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            border: none;
            cursor: pointer;
        }

        .software-punto.activo {
            background: #1e40af;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .software-proceso {
                padding: 60px 15px;
            }

            .software-titulo {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }

            .software-flujo {
                flex-direction: column;
                gap: 20px;
            }

            .software-flecha {
                transform: rotate(90deg);
            }

            .software-testimonios {
                padding: 60px 15px;
            }

            .software-slide {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .software-foto {
                width: 80px;
                height: 80px;
            }

            .software-cita {
                font-size: 1rem;
            }
        }
        
        /* Responsive ajuste de imagen también */
        @media (max-width: 768px) {
            .software-foto {
                width: 80px;
                height: 80px;
            }
        }
.promedi-products-section {
    background: linear-gradient(135deg, #081f5f 0%, #3b82f6 100%);
    min-height: 60vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.promedi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.promedi-section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.promedi-products-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: nowrap;
}

.promedi-product-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 380px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.promedi-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.promedi-icon-image {
    width: 90px;
    height: 90px;
    object-fit: contain; /* para que la imagen mantenga proporción */
}

.promedi-product-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    top: -60px;
    margin-bottom: -20px;
    flex-shrink: 0;
}





.promedi-product-title {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}

.promedi-product-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.promedi-product-button {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    align-self: center;
}

.promedi-product-button:hover {
    background: linear-gradient(135deg, #65a30d 0%, #4d7c0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(132, 204, 22, 0.3);
}

.promedi-product-button svg {
    transition: transform 0.3s ease;
}

.promedi-product-button:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .promedi-container {
        max-width: 1100px;
    }
    
    .promedi-product-card {
        min-width: 280px;
        padding: 35px 20px;
    }
    
    .promedi-product-title {
        font-size: 1.2rem;
    }
    
    .promedi-product-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .promedi-products-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .promedi-product-card {
        flex: 0 1 calc(50% - 15px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .promedi-products-section {
        padding: 60px 0;
    }
    
    .promedi-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .promedi-products-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .promedi-product-card {
        flex: none;
        width: 100%;
        max-width: 400px;
        padding: 30px 20px;
    }
    
    .promedi-product-icon {
        width: 70px;
        height: 70px;
        top: -40px;
    }
}

@media (max-width: 480px) {
    .promedi-container {
        padding: 0 15px;
    }
    
    .promedi-section-title {
        font-size: 1.8rem;
    }
    
    .promedi-product-card {
        padding: 25px 15px;
        min-width: auto;
    }
}
/* HOME PRODUCTOS*/

        .producto-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            padding: 60px 20px;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .producto-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .producto-title {
            color: white;
            font-size: 2rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 50px;
        }

        .producto-title-span {
            font-weight: 600;
        }

        .producto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .producto-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .producto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .producto-logo-container {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .producto-medidor-logo {
            background: #0ea5e9;
            color: white;
            font-size: 2rem;
        }

        .producto-blue-logo {
            background: white;
            border: 3px solid #e5e7eb;
        }

        .producto-blue-logo-text {
            font-weight: bold;
            color: #0ea5e9;
            font-size: 1.2rem;
        }

        .producto-blue-logo-accent {
            background: #8b5cf6;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 2px;
            vertical-align: top;
        }

        .producto-card-content {
            margin-top: 40px;
        }

        .producto-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .producto-card-description {
            color: #6b7280;
            font-size: 0.95rem;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .producto-btn-conoce-mas {
            background: #84cc16;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .producto-btn-conoce-mas:hover {
            background: #65a30d;
            transform: translateX(2px);
        }

        .producto-btn-conoce-mas::after {
            content: '→';
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .producto-btn-conoce-mas:hover::after {
            transform: translateX(3px);
        }

       
        @media (max-width: 768px) {
            .producto-section {
                padding: 40px 15px;
            }

            .producto-title {
                font-size: 1.5rem;
                margin-bottom: 40px;
            }

            .producto-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .producto-card {
                padding: 35px 25px;
            }

            .producto-card-title {
                font-size: 1.1rem;
            }

            .producto-card-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .producto-section {
                padding: 30px 10px;
            }

            .producto-title {
                font-size: 1.3rem;
                margin-bottom: 30px;
            }

            .producto-card {
                padding: 30px 20px;
            }

            .producto-logo-container {
                width: 70px;
                height: 70px;
                top: -20px;
            }

            .producto-medidor-logo {
                font-size: 1.7rem;
            }

            .producto-card-content {
                margin-top: 35px;
            }

            .producto-card-title {
                font-size: 1rem;
            }

            .producto-card-description {
                font-size: 0.85rem;
            }

            .producto-btn-conoce-mas {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

        /* Tablet específico */
        @media (min-width: 769px) and (max-width: 1024px) {
            .producto-grid {
                gap: 25px;
            }

            .producto-card {
                padding: 35px 25px;
            }
        }

        /* Desktop grande */
        @media (min-width: 1200px) {
            .producto-section {
                padding: 80px 20px;
            }

            .producto-title {
                font-size: 2.2rem;
                margin-bottom: 60px;
            }

            .producto-grid {
                gap: 40px;
            }
        }
    
/* Header Section */
        .hero-section {
            padding: 40px 10px;
            text-align: center;
            background: linear-gradient(135deg, #fbfbfc 0%, #ffffff 100%);
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-home {
            display: inline-block;
            background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
        }


        /* Companies Section */
        .companies-section {
            padding: 60px 0;
            background: white;
            text-align: center;
        }

        .companies-title {
            font-size: 1.3rem;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .companies-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .company-logo {
            opacity: 0.6;
            transition: opacity 0.3s ease;
            font-size: 1.5rem;
            font-weight: 700;
            color: #6c757d;
        }

        .company-logo:hover {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .dashboard-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .side-image {
                order: -1;
            }

            .side-image:last-child {
                order: 1;
            }

            .meter-device {
                position: static;
                margin-top: 20px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .companies-grid {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .dashboard-section {
                padding: 40px 0;
            }

            .access-buttons {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .dashboard-stats {
                grid-template-columns: 1fr;
            }

            .companies-grid {
                gap: 30px;
            }

            .company-logo {
                font-size: 1.2rem;
            }

            .side-image img {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 20px 15px;
            }

            .hero-section {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .dashboard-frame {
                padding: 15px;
            }

            .dashboard-content {
                padding: 20px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .companies-grid {
                flex-direction: column;
                gap: 20px;
            }
        }
        .single-image-center {
        display: flex;
        justify-content: center;
        align-items: center;
        
        text-align: center;
    }

    .single-image-center img {
        max-width: 80%;
        height: auto;
    
        
        transition: all 0.3s ease;
    }

    /* Media Query para pantallas pequeñas */
    @media (max-width: 768px) {
        .single-image-center img {
            max-width: 90%;
        }
    }

    @media (max-width: 480px) {
        .single-image-center {
            padding: 20px 10px;
        }

        .single-image-center img {
            max-width: 100%;
        }
    }

    /* tutorial */

        .classtutorial-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .classtutorial-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .classtutorial-main-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 10px;
        }

        .classtutorial-subtitle {
            font-size: 18px;
            color: #6b7280;
            margin-bottom: 20px;
        }

        .classtutorial-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .classtutorial-stat {
            text-align: center;
            padding: 15px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .classtutorial-stat-number {
            font-size: 24px;
            font-weight: 700;
            color: #1e40af;
        }

        .classtutorial-stat-label {
            font-size: 14px;
            color: #6b7280;
        }

        .classtutorial-youtube-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ff0000;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .classtutorial-youtube-badge:hover {
            background: #cc0000;
            transform: translateY(-2px);
        }

        .classtutorial-youtube-icon {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .classtutorial-youtube-icon::before {
            content: '▶';
            color: #ff0000;
            font-size: 14px;
        }

        /* Search Bar */
        .classtutorial-search {
            margin-bottom: 30px;
            text-align: center;
        }

        .classtutorial-search-input {
            width: 100%;
            max-width: 500px;
            padding: 12px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .classtutorial-search-input:focus {
            border-color: #1e40af;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        /* Navigation Tabs */
        .classtutorial-nav-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
            justify-content: center;
        }

        .classtutorial-nav-tab {
            padding: 12px 18px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            border-radius: 8px 8px 0 0;
            font-weight: 500;
        }

        .classtutorial-nav-tab.classtutorial-active {
            color: #1e40af;
            border-bottom-color: #1e40af;
            font-weight: 600;
            background: rgba(30, 64, 175, 0.05);
        }

        .classtutorial-nav-tab:hover {
            color: #1e40af;
            background: rgba(30, 64, 175, 0.05);
        }

        /* Cards Grid */
        .classtutorial-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .classtutorial-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .classtutorial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .classtutorial-card.classtutorial-available {
            border: 2px solid #10b981;
        }

        .classtutorial-card.classtutorial-available::before {
            content: '🎥 DISPONIBLE';
            position: absolute;
            top: 10px;
            right: 10px;
            background: #10b981;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            z-index: 3;
        }

        .classtutorial-video-thumbnail {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            margin: 0 auto 10px;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .classtutorial-video-iframe-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        .classtutorial-thumbnail-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #f8fafc;
        }

        .classtutorial-video-placeholder-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            text-align: center;
            border-radius: 8px;
        }

        .classtutorial-video-placeholder-card h4 {
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .classtutorial-video-placeholder-card p {
            font-size: 12px;
            opacity: 0.8;
        }

        .classtutorial-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .classtutorial-card:hover .classtutorial-play-overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .classtutorial-play-button {
            width: 60px;
            height: 60px;
            background: rgba(255, 0, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            border: 3px solid white;
        }

        .classtutorial-card:hover .classtutorial-play-button {
            background: #ff0000;
            transform: scale(1.1);
        }

        .classtutorial-video-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            font-size: 11px;
            margin-top: 8px;
            border-radius: 6px;
        }

        .classtutorial-video-link {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 500;
        }

        .classtutorial-video-link:hover {
            color: #93c5fd;
        }

        .classtutorial-card-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            padding: 15px;
            text-align: center;
            position: relative;
        }

        .classtutorial-video-thumbnail {
            width: 100%;
            height: 180px;
            border-radius: 8px;
            margin: 0 auto 10px;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .classtutorial-thumbnail-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #f8fafc;
        }

        .classtutorial-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .classtutorial-card:hover .classtutorial-play-overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .classtutorial-play-button {
            width: 60px;
            height: 60px;
            background: rgba(255, 0, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            border: 3px solid white;
        }

        .classtutorial-card:hover .classtutorial-play-button {
            background: #ff0000;
            transform: scale(1.1);
        }

        .classtutorial-video-number {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .classtutorial-duration-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
        }

        .classtutorial-card-body {
            padding: 16px;
        }

        .classtutorial-channel-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 10px;
        }

        .classtutorial-channel-avatar {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 10px;
        }

        .classtutorial-card-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 12px;
        }

        .classtutorial-card-category {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 500;
        }

        .classtutorial-card-category.classtutorial-aspectos {
            background: #dbeafe;
            color: #1e40af;
        }

        .classtutorial-card-category.classtutorial-informes {
            background: #dcfce7;
            color: #166534;
        }

        .classtutorial-card-category.classtutorial-formularios {
            background: #fef3c7;
            color: #92400e;
        }

        .classtutorial-card-category.classtutorial-software {
            background: #e0e7ff;
            color: #5b21b6;
        }

        .classtutorial-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .classtutorial-card-subtitle {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .classtutorial-video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
            padding-top: 12px;
        }

        /* Load More Button */
        .classtutorial-load-more {
            text-align: center;
            margin-top: 40px;
        }

        .classtutorial-load-more-btn {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            border: none;
            padding: 15px 30px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 16px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .classtutorial-load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

        .classtutorial-load-more-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Loading State */
        .classtutorial-loading {
            display: none;
            text-align: center;
            padding: 40px;
            color: #6b7280;
        }

        .classtutorial-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f4f6;
            border-top: 4px solid #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* No Results */
        .classtutorial-no-results {
            text-align: center;
            padding: 60px 20px;
            color: #6b7280;
        }

        .classtutorial-no-results h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* Video Modal */
        .classtutorial-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .classtutorial-modal.classtutorial-active {
            display: flex;
        }

        .classtutorial-modal-content {
            background: white;
            border-radius: 12px;
            width: 100%;
            max-width: 1000px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .classtutorial-modal-header {
            padding: 20px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .classtutorial-modal-title {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }

        .classtutorial-modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #6b7280;
            padding: 5px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .classtutorial-modal-close:hover {
            background: #f3f4f6;
            color: #1f2937;
        }

        .classtutorial-modal-body {
            padding: 20px;
        }

        .classtutorial-video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            margin-bottom: 20px;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
        }

        .classtutorial-video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .classtutorial-video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            text-align: center;
        }

        .classtutorial-video-placeholder-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .classtutorial-video-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .classtutorial-action-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .classtutorial-action-btn.classtutorial-primary {
            background: #ff0000;
            color: white;
        }

        .classtutorial-action-btn.classtutorial-primary:hover {
            background: #cc0000;
            transform: translateY(-2px);
        }

        .classtutorial-action-btn.classtutorial-secondary {
            background: #f3f4f6;
            color: #374151;
        }

        .classtutorial-action-btn.classtutorial-secondary:hover {
            background: #e5e7eb;
        }

        .classtutorial-video-info {
            background: #f8fafc;
            padding: 20px;
            border-radius: 8px;
        }

        .classtutorial-video-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .classtutorial-video-meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: #9ca3af;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .classtutorial-container {
                padding: 15px;
            }

            .classtutorial-main-title {
                font-size: 24px;
            }

            .classtutorial-subtitle {
                font-size: 16px;
            }

            .classtutorial-stats {
                gap: 15px;
            }

            .classtutorial-stat {
                padding: 10px 15px;
            }

            .classtutorial-nav-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 15px;
            }

            .classtutorial-nav-tab {
                font-size: 12px;
                padding: 10px 14px;
                white-space: nowrap;
            }

            .classtutorial-cards-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .classtutorial-video-thumbnail {
                height: 180px;
            }
            
            .classtutorial-video-controls {
                padding: 6px 10px;
                font-size: 10px;
            }

            .classtutorial-modal-content {
                margin: 10px;
                max-height: 95vh;
            }

            .classtutorial-modal-header {
                padding: 15px;
            }

            .classtutorial-modal-body {
                padding: 15px;
            }

            .classtutorial-video-actions {
                flex-direction: column;
            }

            .classtutorial-action-btn {
                justify-content: center;
            }
        }

        @media (min-width: 1200px) {
            .classtutorial-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .classtutorial-video-thumbnail {
                height: 220px;
            }
        }

          .icoslider-section {
  
  padding: 60px 20px;
  overflow: hidden;
}

.icoslider-container {
  max-width: 1200px;
  margin: 0 auto;
}

.icoslider-title {
  background-color: white;         /* Fondo blanco */
  text-align: center;              /* Centrado */
  font-size: 28px;
  margin: 0 auto 40px auto;
  padding: 20px;
  color: #1e3a8a;
  font-weight: bold;
  
  width: fit-content;
}

.icoslider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.icoslider-track {
  display: flex;
  width: calc(200px * 10); /* Ajusta según la cantidad de slides */
  animation: icoslider-scroll 25s linear infinite;
}

.icoslider-slide {
  width: 200px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.icoslider-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.icoslider-slide img:hover {
  filter: grayscale(0);
}

@keyframes icoslider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1000px); /* Ajusta según el total de logos visibles */
  }
}