/* =============================================================
   kukulcan-home.css
   Estilos específicos del hero, ecosistema y estadísticas
   de la página de inicio (Index.cshtml)
   ============================================================= */

/* ?? Animación de entrada escalonada de los iconos ?? */
@keyframes ecoFadeIn {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}

.eco-icon {
    cursor: pointer;
    transform-box: fill-box;
    transform-origin: center;
    animation: ecoFadeIn 0.5s cubic-bezier(.34,1.56,.64,1) both;
}

.eco-icon:hover {
    transform: scale(1.13);
    transition: transform 0.18s cubic-bezier(.34,1.56,.64,1);
}

.eco-icon:nth-child(1) { animation-delay: 0.10s; }
.eco-icon:nth-child(2) { animation-delay: 0.20s; }
.eco-icon:nth-child(3) { animation-delay: 0.30s; }
.eco-icon:nth-child(4) { animation-delay: 0.40s; }
.eco-icon:nth-child(5) { animation-delay: 0.50s; }
.eco-icon:nth-child(6) { animation-delay: 0.60s; }

/* ?? Hero CTAs ?? */
.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(203,29,115,0.32) !important;
}

.hero-cta-secondary:hover {
    transform: translateY(-2px);
}

/* ?? Tarjetas de estadísticas ?? */
.stat-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(203,29,115,0.12) !important;
}

/* ?? Responsivo móvil: ecosistema SVG ?? */
@media (max-width: 640px) {
    .eco-svg-wrap {
        max-width: 320px !important;
        margin: 0 auto;
    }
}

/* =============================================================
   SECCIÓN QUIÉNES SOMOS — Grid de logros
   ============================================================= */

.quienes-logros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.quienes-logro-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #f3f4f6;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quienes-logro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(203,29,115,0.09);
    background: #fff;
}

.quienes-logro-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quienes-logro-titulo {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.quienes-logro-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* =============================================================
   SECCIÓN MISIÓN Y VISIÓN
   ============================================================= */

.mv-card {
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(203,29,115,0.10) !important;
}
