.why-us {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: sans-serif;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature {
    background-color: #f9f9ff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.feature:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 28px;
    color: #7f56d9;
    display: block;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    color: #444;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Mantiene la imagen y el texto separados */
    padding: 150px 70px 60px;
    background-color: #ffffff;
    font-family: sans-serif;
    flex-wrap: wrap;
}

.hero-text {
    /* flex: 1 1 50%; /* Mantén esto para el control de ancho flexible */
    max-width: 600px;
    text-align: left;
    margin-left: 200px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    /* text-align: center; /* No es necesario aquí si ya lo pones en .hero-text */
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
    /* text-align: center; /* No es necesario aquí si ya lo pones en .hero-text */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Para centrar los botones dentro de hero-text, si quieres que estén centrados también */
    justify-content: left;
}

.btn-primary {
    background-color: #03cafc;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #03cafc;
}

.btn-secondary {
    color: #03cafc;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    background: none;
}

.btn-secondary:hover {
    text-decoration: underline;
}

.hero-image {
    flex: 1 1 40%;
    text-align: left;
        margin-left: 100px;
    /* Esto ya centra la imagen dentro de hero-image */
}

.hero-image img {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.icon-caracteristica {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-top: 20px;
    /* Opcional: para que se ajuste sin distorsión */
    /* display: block; /* Opcional: si quieres que se comporte como un elemento de bloque */
}
.icon-caracteristica img {
    width: 60px;
    height: 60px;
    /* object-fit: cover; /* Opcional: Para asegurar que la imagen cubra el área sin distorsionarse, recortando si es necesario */
    /* display: block; /* Opcional: Si quieres que la imagen se comporte como un bloque y eliminar el espacio extra debajo */
}




.contenedor {
    max-width: 800px;
    margin: auto;
}

.item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.titulo {
    padding: 15px;
    font-weight: bold;
    background-color: #eee;
    transition: background-color 0.3s;
}

.titulo:hover {
    background-color: #ddd;
}

.contenido {
    padding: 15px;
    display: none;
    border-top: 1px solid #ccc;
}

.contenido.activo {
    display: block;
}



.cuentas-box {
    background-color: #fff;
    border: 2px solid #03cafc;
    border-radius: 10px;
    padding: 25px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.cuentas-titulo {
    font-size: 28px;
    font-weight: bold;
    color: #03cafc;
    margin-bottom: 20px;
    text-align: center;
}

.cuentas-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.cuentas-texto h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #03cafc;
}

.cuentas-texto ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
}

.cuentas-texto li {
    margin-bottom: 10px;
}

.botones-container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-link {
    background: #03cafc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex: 1 1 120px;
    text-align: center;
    box-shadow: 0 3px 8px rgb(3,202,252);
    user-select: none;
}

.btn-link:hover {
    background: #03cafc;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgb(3, 202, 252);
}

.ultima-actualizacion {
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 24px;
    /* tamaño grande */
    color: #000000;
    /* negro */
    font-weight: bold;
}

.ultima-actualizacion .fecha {
    color: #000000;
    text-decoration: none;
}


/* --- MÓVIL --- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
            /* 👈 aumenta el top (antes 40px) */
        /* menos padding en móvil */
    }

    .hero-text {
        margin-left: 0;
        /* quitar margen fijo */
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        /* más pequeño en móvil */
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-left: 0;
        /* quitar margen fijo */
        text-align: center;
        flex: unset;
    }

    .hero-image img {
        width: 100%;
        /* ocupa todo el ancho del contenedor */
        max-width: 350px;
        /* pero no más grande de 350px */
        margin: 0 auto;
    }
}