/* RESET TOTAL */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #0f172a; background: #fff; line-height: 1.5; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { padding: 15px 0; border-bottom: 1px solid #eee; background: #fff; position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 800; }
.menu a { text-decoration: none; color: #0f172a; margin-left: 20px; font-weight: 600; font-size: 14px; }
.menu .alert { color: #e11d48; }

/* HERO */
.hero { padding: 30px 0 60px 0; background: #fcfcfd; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; }
.hero-text { flex: 1; margin-right: 40px; }

.hero-image .img-box {
    width: 100%;
    max-width: 350px; /* Ajusta este número (en píxeles) hasta que te guste el tamaño */
    margin: 0 auto;   /* Esto asegura que la foto se mantenga centrada en su columna */
    display: block;
}
/* Esto asegura que la imagen no se deforme y use el 100% de su nueva caja */
.hero-image .img-box img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Opcional: para que las esquinas se vean suaves */
}


.badge { background: #f5f3ff; color: #8b5cf6; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; display: inline-block; margin-bottom: 15px; }
h1 { font-size: 45px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #0f172a; }
.purple-text { color: #8b5cf6; }
.highlight-purple { color: #8b5cf6; }
p { font-size: 18px; color: #475569; margin-bottom: 30px; }

/* --- SECCION RAMOS --- */
.ramos { padding: 40px 0; background: #ffffff; }
.center-text { text-align: center; margin-bottom: 50px; }
.center-text p { margin: 10px auto; }

.grid-ramos { 
    display: flex; 
    flex-wrap: wrap; /* Esto permite que las tarjetas bajen a la siguiente fila */
    justify-content: center; /* Esto centra las 2 tarjetas de abajo */
    margin-top: 30px;
}

.card { 
    width: calc(33.33% - 20px); /* Intenta poner 3 por fila */
    min-width: 280px; /* Si no caben 3 (como en tablet), se ajustan solas */
    margin: 10px;
    padding: 40px; 
    border: 1px solid #f1f5f9; 
    border-radius: 20px; 
    background: #fff;
    transition: all 0.3s ease;
    text-align: left;
}

.card:hover { 
    border-color: #8b5cf6; 
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.card-icon-box {
    width: 54px; /* Un pelín más grande para que luzca la imagen */
    height: 54px;
    background: #f5f3ff; /* El morado clarito que ya tenías */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden; /* Por si la imagen es muy grande */
}

.card-icon-box img {
    width: 28px; /* Tamaño ideal para que "respire" dentro del cuadro */
    height: 28px;
    object-fit: contain; /* Evita que la imagen se deforme */
}

.card h3 { font-size: 22px; margin-bottom: 15px; color: #0f172a; }
.card p { font-size: 15px; color: #475569; margin-bottom: 25px; line-height: 1.6; }
.link-green { color: #22c55e; text-decoration: none; font-weight: 700; font-size: 14px; }
.link-green:hover { text-decoration: underline; }

/* BOTONES */
.buttons { display: flex; margin-bottom: 15px; }
.btn-green { background: #22c55e; color: #fff; padding: 15px 25px; border-radius: 10px; text-decoration: none; font-weight: 700; margin-right: 15px; }
/*.btn-outline { border: 2px solid #8b5cf6; color: #8b5cf6; padding: 13px 25px; border-radius: 10px; text-decoration: none; font-weight: 700; }*/
small { color: #94a3b8; font-size: 12px; }

/* IMAGEN */
.img-box { background: #eee; border-radius: 20px; min-height: 350px; overflow: hidden; }
.img-box img { width: 100%; height: auto; display: block; }

/* SECCION AUTOMATIZACION (OSCURA) */
.automation { padding: 40px 0; background: #0f172a; color: #ffffff; }
.automation p,
.tech-list li div { 
    color: #cbd5e1; /* Un gris claro azulado que se ve de lujo en el fondo oscuro */
}
.auto-flex { display: flex; align-items: center; justify-content: space-between; }
.auto-image { flex: 1; margin-right: 60px; }
.auto-text { flex: 1; }
.tag-purple { color: #8b5cf6; font-weight: 800; font-size: 12px; display: block; margin-bottom: 10px; }
.auto-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; color: #fff; }

.tech-list { list-style: none; margin-top: 30px; }
.tech-list li { display: flex; align-items: flex-start; margin-bottom: 20px; }

.check { min-width: 20px; width: 20px; height: 20px; background-color: #22c55e; border-radius: 4px; margin-right: 15px; position: relative; flex-shrink: 0; margin-top: 4px; }
.check::after { content: ''; position: absolute; left: 7px; top: 3px; width: 4px; height: 9px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tech-list strong { color: #fff; display: block; }

.tech-box { background: #1e293b; padding: 50px 40px; border-radius: 24px; border: 1px solid #334155; text-align: center; }
.ia-badge { background: #8b5cf6; color: #fff; padding: 6px 16px; border-radius: 8px; font-size: 11px; font-weight: 800; margin-bottom: 20px; display: inline-block; }
.loading-bar { width: 100%; height: 6px; background: #334155; border-radius: 10px; margin-top: 20px; position: relative; overflow: hidden; }
.loading-bar::after { content: ''; position: absolute; left: -50%; width: 40%; height: 100%; background: #22c55e; animation: load 2s infinite linear; }
@keyframes load { 0% { left: -50%; } 100% { left: 100%; } }

/* SECCIÓN CONTACTO */
.contact { padding: 80px 0; background: #f9fafb; }
.contact-box { background: #fff; border-radius: 30px; display: flex; flex-wrap: wrap; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }
.contact-info { flex: 1; background: #0f172a; color: #fff; padding: 60px; min-width: 320px; }
.contact-info h2 { font-size: 32px; margin-bottom: 20px; color: #ffffff;}
.contact-details { margin-top: 40px; }
.contact-info p,
.contact-details p { color: #cbd5e1; font-size: 15px; margin-bottom: 15px; }

/* Estilo para los links de contacto */
.contact-link {
    color: #b197fc; /* Mismo color lavanda para coherencia */
    text-decoration: none; /* Quitamos el subrayado aburrido */
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffffff; /* Al pasar el mouse, cambia a blanco */
    text-decoration: underline;
}

.main-form { flex: 1.5; padding: 60px; min-width: 320px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: #0f172a; }
.form-group input, .form-group select { width: 100%; padding: 15px; border: 2px solid #f1f5f9; border-radius: 12px; font-size: 16px; transition: 0.3s; }
.form-group input:focus { border-color: #8b5cf6; outline: none; }

.btn-submit { width: 100%; background: #22c55e; color: #fff; padding: 18px; border: none; border-radius: 12px; font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #16a34a; transform: translateY(-3px); }
.form-note { font-size: 12px; color: #94a3b8; margin-top: 15px; text-align: center; }

/* FOOTER */
.footer { padding: 40px 0; text-align: center; border-top: 1px solid #eee; }
.footer p { font-size: 13px; color: #94a3b8; }

/* CINTILLA */
.ticker-wrapper { background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; padding: 15px 0; display: flex; flex-direction: row; align-items: center; overflow: hidden; }
.ticker-title { background: #f8fafc; padding: 0 20px; font-size: 11px; font-weight: 800; color: #64748b; white-space: nowrap; z-index: 2; }
.ticker-container { overflow: hidden; width: 100%; }
.ticker-move { display: flex; width: max-content; animation: ticker-animation 30s linear infinite; }
.ticker-item { padding: 0 40px; font-weight: 800; color: #94a3b8; font-size: 18px; letter-spacing: 2px; }
@keyframes ticker-animation { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* CHECKBOX */
.form-group-checkbox { display: flex; align-items: flex-start; margin-bottom: 25px; }
.form-group-checkbox input { width: 18px; height: 18px; accent-color: #22c55e; cursor: pointer; margin-top: 3px; margin-right: 10px; }
.form-group-checkbox label { font-size: 13px; color: #475569; line-height: 1.4; }
.form-group-checkbox a { color: #8b5cf6; text-decoration: none; font-weight: 600; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background-color: #25D366; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; transition: 0.3s; }
.whatsapp-icon-img { width: 60%; height: auto; background: none; }
.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); background-color: #128c7e; }

/* SECCION PSICOLOGÍA */
.psychology-edge { padding: 40px 0; background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%); }
.psychology-flex { display: flex; align-items: center; flex-wrap: wrap; }
.psy-text { flex: 1.2; margin-right: 40px; }
.psy-visual { flex: 0.8; background: #f0fdf4; padding: 50px; border-radius: 40px; text-align: center; border: 1px solid #dcfce7; box-shadow: 0 20px 40px rgba(34, 197, 94, 0.05); }

.tag-green { color: #22c55e; font-weight: 800; font-size: 12px; display: block; margin-bottom: 10px; }
.zen-icon { font-size: 60px; display: block; margin-bottom: 25px; }
.zen-box p { font-style: italic; color: #6366f1; font-size: 20px; line-height: 1.4; font-weight: 500; }

.psy-list { list-style: none; margin-top: 30px; }
.psy-list li { display: flex; align-items: flex-start; margin-bottom: 20px; font-size: 17px; color: #475569; }
.psy-dot { width: 10px; height: 10px; background: #8b5cf6; border-radius: 50%; margin-right: 15px; margin-top: 8px; flex-shrink: 0; }
.psy-list strong { color: #0f172a; }

/* RESET DE LISTAS */
.social-links, .tech-list, .psy-list { list-style: none; padding: 0; margin: 0; }

/* --- FOOTER COMPACTO --- */
.footer { padding: 30px 0; text-align: center; border-top: 1px solid #eee; background: #fff; }
.footer p { font-size: 13px; color: #94a3b8; margin-top: 15px; }

/* REDES SOCIALES (CONTENEDOR) */
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 0; /* Pegadito al texto */
}

/* EL CÍRCULO QUE ENVUELVE AL LOGO */
.social-icon {
    width: 38px;
    height: 38px;
    background-color: #f1f5f9; /* Fondo gris suave por defecto */
    border-radius: 50%; /* Bolita perfecta */
    display: flex;
    align-items: center;    /* Centrado vertical real */
    justify-content: center; /* Centrado horizontal real */
    text-decoration: none;
    margin: 0 8px; /* Espacio entre bolitas (Reemplazo de gap de image_7.png) */
    transition: all 0.3s ease;
}

/* EL LOGO EN SÍ (EL ICONO i) */
.social-icon i {
    color: #64748b; /* Gris oscuro por defecto */
    font-size: 19px; /* Tamaño del logo */
    transition: 0.3s;
}

/* --- EL EFECTO ENPHOCUS (HOVER) --- */
.social-icon:hover {
    background-color: #8b5cf6; /* El círculo se prende en morado Enphocus */
    transform: translateY(-3px); /* Se levanta tantito */
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3); /* Brillo morado sutil */
}

.social-icon:hover i {
    color: #ffffff; /* El logo se vuelve blanco */
}

/* TEXTO DE COPYRIGHT */
.footer p { 
    font-size: 13px; 
    color: #94a3b8; 
    margin: 0;
}

/* --- ESTILO LINKS LEGALES FOOTER --- */
.legal-links-footer {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Aquí sí usamos gap porque es un contenedor pequeño */
}

.legal-links-footer a {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links-footer a:hover {
    color: #8b5cf6; /* Morado Enphocus al pasar el mouse */
    text-decoration: underline;
}

/* Ajuste para móvil: que se vean uno sobre otro si no caben */
@media (max-width: 480px) {
    .legal-links-footer {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- SECCION NOSOTROS --- */
.about { 
    padding: 40px 0; 
    background: #ffffff; 
    border-bottom: 1px solid #f1f5f9; 
}

.about-header { 
    text-align: center; 
    margin-bottom: 40px; 
}

.about-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; /* Aquí usamos gap porque es un bloque pequeño y moderno */
}

.about-item { 
    flex: 1; 
    min-width: 300px; 
    background: #fcfcfd; 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid #f1f5f9; 
}

.about-item h3 { 
    font-size: 20px; 
    color: #8b5cf6; 
    margin-bottom: 15px; 
    font-weight: 800; 
}

.about-item p { 
    font-size: 16px; 
    color: #475569; 
    line-height: 1.7; 
    margin-bottom: 0; /* Quitamos el margen de abajo para que no haya aire extra */
}

/* Ajuste para que en móvil no se vea amontonado */
@media (max-width: 768px) {
    .about-grid { flex-direction: column; }
    .about-item { margin-bottom: 20px; }
}

/* --- SECCION HISTORIA --- */
.story-section { padding: 40px 0; background: #ffffff; }

.story-flex { 
    display: flex; 
    gap: 60px; 
    align-items: flex-start; 
    flex-wrap: wrap; 
}

.story-main { flex: 1.5; min-width: 300px; }
.story-aside { flex: 1; min-width: 300px; }

/* El cuadro del revés financiero */
.story-callout { 
    background: #fcfaff; 
    padding: 25px; 
    border-radius: 20px; 
    border-left: 5px solid #8b5cf6; 
    margin: 25px 0; 
}
.story-callout h3 { font-size: 18px; color: #0f172a; margin-bottom: 10px; }
.story-callout p { margin-bottom: 0; font-size: 16px; font-style: italic; }

/* Tarjeta de Frase Célebre */
.quote-card { 
    background: #0f172a; 
    color: #fff; 
    padding: 40px; 
    border-radius: 30px; 
    position: relative; 
    margin-bottom: 30px; 
}
.quote-card i { font-size: 40px; color: #8b5cf6; opacity: 0.5; margin-bottom: 15px; display: block; }
.quote-card p { font-size: 20px; font-weight: 700; line-height: 1.4; color: #fff; margin-bottom: 15px; }
.quote-card strong { color: #8b5cf6; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* Caja de Confianza */
.trust-box { 
    background: #f0fdf4; 
    padding: 30px; 
    border-radius: 30px; 
    border: 1px solid #dcfce7; 
    text-align: center; 
}
.trust-box h4 { color: #16a34a; margin-bottom: 10px; font-size: 18px; }
.trust-box p { font-size: 15px; margin-bottom: 20px; }

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .story-flex { flex-direction: column; }
    .story-main, .story-aside { flex: 1; margin-right: 0; }
}

/* Ajuste para el logo en el Navbar */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 55px; /* Este tamaño es ideal para que se vea el eslogan */
    width: auto;  /* Mantiene la proporción para que no se estire */
    display: block;
    transition: 0.3s;
}

/* Efecto sutil al pasar el mouse */
.main-logo:hover {
    transform: scale(1.05);
}

/* --- NUEVOS BOTONES DE LAS TARJETAS --- */
.btn-card {
    display: inline-block;
    background-color: #22c55e; /* Verde Enffoca */
    color: #ffffff; /* Texto blanco para máximo contraste */
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2); /* Sombra verde sutil */
    border: none;
    cursor: pointer;
}

/* Efecto al pasar el mouse (Lo que pide la patrona) */
.btn-card:hover {
    background-color: #16a34a; /* Un verde un poco más oscuro */
    transform: translateY(-3px); /* Se levanta tantito */
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4); /* Brilla más */
    color: #ffffff;
}

/* Ajuste para que el botón no se pegue al texto de arriba */
.card p {
    margin-bottom: 30px; /* Más espacio antes del botón */
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-flex, .auto-flex, .psychology-flex { flex-direction: column; text-align: center; }
    .hero-text, .auto-image, .psy-text { margin-right: 0; margin-bottom: 40px; }
    .card { width: 100%; margin: 10px 0; }
    .buttons { flex-direction: column; }
    .btn-green { margin-right: 0; margin-bottom: 10px; }
    .main-logo {
        height: 45px;
    }
}

.hero-gmm {
    padding: 80px 0; /* Un poco más de aire arriba/abajo pero con contenido lateral */
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.text-green { color: #22c55e; }

.bg-purple { 
    background-color: #f5f3ff; 
    color: #8b5cf6; 
    padding: 8px 15px; 
    font-size: 12px; 
    letter-spacing: 1px; 
    font-weight: 800; 
}

/* Para que los iconos de la derecha se vean premium */
.hero-gmm .bx {
    background: #f0fdf4;
    padding: 10px;
    border-radius: 10px;
}

.bg-lila-suave { background-color: #f5f3ff; }

.step-icon {
    background: #8b5cf6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.next-step {
    padding: 10px;
    background: #fcfcfd;
    border-radius: 10px;
}

/* --- NUEVO ESTILO PARA EL MENSAJE FINAL --- */
.status-box {
    background-color: #f5f3ff; /* Lila muy suave */
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
}

.text-purple-bright {
    color: #7c3aed; /* Un morado más vivo que el primario para que resalte */
}

/* Animación opcional para que "respire" el mensaje */
.status-box {
    animation: pulse-status 2s infinite;
}

/* --- NOTIFICACIÓN PERSONALIZADA ENFFOCA --- */
.enffoca-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4c1d95; /* Morado Primario */
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #22c55e; /* Detalle Verde Éxito */
}

.enffoca-toast.show {
    transform: translateX(0);
}

.enffoca-toast i {
    font-size: 24px;
    color: #22c55e;
    color: #ffffff;
}

.enffoca-toast p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff !important;
}

.team-section { padding: 60px 0; background-color: #f9f9f9; }
.team-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.team-card { 
    background: white; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 400px;
    transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-10px); }
.team-img img { width: 100%; height: 300px; object-fit: cover; }
.team-info { padding: 25px; }
.role-badge { 
    display: inline-block; 
    padding: 5px 15px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: bold; 
    margin-bottom: 15px;
}
.psychology { background: #e8daff; color: #6f42c1; } /* Púrpura para empatía */
.tech { background: #d1e7dd; color: #0f5132; }       /* Verde para tecnología */
.specialties { list-style: none; padding: 0; margin-top: 15px; border-top: 1px solid #eee; pt: 15px; }
.specialties li { font-size: 0.9rem; margin-bottom: 5px; }

@keyframes pulse-status {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* --- SOLUCIÓN PARA EL CELULAR DE CLAUDIA (Móvil) --- */
@media (max-width: 768px) {
    .ticker-wrapper {
        flex-direction: column; /* ¡Aquí está el truco! Los pone uno arriba del otro */
        padding: 20px 0;
    }

    .ticker-title {
        border-right: none; /* Quitamos la rayita en móvil */
        margin-bottom: 15px; /* Le damos espacio respecto a los logos */
        font-size: 0.8rem;
        text-align: center;
    }

    .ticker-item {
        font-size: 0.9rem;
        margin: 0 20px;
    }
}

/* --- AJUSTES PARA CELULARES Y TABLETS --- */
@media (max-width: 768px) {
    /* 1. Limitamos la tarjeta entera para que no sea gigante */
    .team-section .team-grid .team-card {
        max-width: 290px !important; /* Ancho máximo elegante para celular */
        margin: 0 auto 20px auto !important; /* Centrada y con espacio abajo */
        display: block !important;
    }

    /* 2. El contenedor de la imagen */
    .team-section .team-grid .team-card .team-img {
        width: 100% !important;
        display: block !important;
    }

    /* 3. LA SOLUCIÓN MÁGICA PARA LA FOTO */
    .team-section .team-grid .team-card .team-img img {
        /* Usamos !important para anular CUALQUIER otro estilo previo */
        width: 100% !important;  /* Ocupa todo el ancho de la tarjeta */
        height: auto !important; /* CALCULA LA ALTURA AUTOMÁTICAMENTE - NO STRETCH */
        
        /* Aseguramos que se comporte bien */
        display: block !important;
        object-fit: cover !important; /* Por si acaso, recorta suavemente */
        border-radius: 15px 15px 0 0 !important; /* Bordes redondeados arriba */
    }
    /* Título principal del Hero */
    h1 { 
        font-size: 32px !important; /* Bajamos de 45px a 32px */
        line-height: 1.2;
    }

    /* Títulos de secciones (Nosotros, Ramos, etc.) */
    h2 { 
        font-size: 26px !important; 
    }

    /* Párrafos generales */
    p { 
        font-size: 16px !important; /* Bajamos de 18px a 16px para mejor lectura */
    }

    /* Texto del Hero (el que está bajo el H1) */
    .hero-text p {
        font-size: 16px !important;
        margin-bottom: 20px;
    }

    /* Títulos dentro de las tarjetas */
    .card h3 {
        font-size: 20px !important;
    }

    /* Ajuste de la historia (Story Section) */
    .story-main h2 {
        font-size: 24px !important;
    }
    
    .quote-card p {
        font-size: 18px !important;
    }

    /* Reducir un poco los espacios entre secciones en móvil */
    .hero, .ramos, .story-section, .automation, .contact, .psychology-edge {
        padding: 30px 0 !important;
    }
    
    /* --- PARCHE DE UTILIDADES ENFFOCA --- */
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Espaciado para separar secciones */
.pt-32 { padding-top: 120px; }
.pb-10 { padding-bottom: 40px; }
.pb-32 { padding-bottom: 120px; }

/* Color de marca Enffoca */
.text-enffoca-blue { color: #2563eb; }
.bg-enffoca-green { background-color: #22c55e; }
}