/* ==========================================================================
   kovertiz - ABOUT.CSS (Full Independent Style System)
   ========================================================================== */

/* --- 1. FONTS & ROOT --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --bg: #030610;
    --card: #0d1221;
    --primary: #818cf8;
    --primary-alt: #6366f1;
    --primary-glow: rgba(129, 140, 248, 0.2);
    --text: #f9fafb;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(129, 140, 248, 0.4);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. BASE & RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- 3. TYPOGRAPHY HELPERS --- */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary); /* Fallback */
}

.kicker {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kicker i {
    font-size: 14px;
}

/* --- 4. HERO SECTION --- */
.about-hero-spec {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 30%, rgba(129, 140, 248, 0.12), transparent 70%);
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 48px auto;
    line-height: 1.7;
}

/* --- 5. INTERACTIVE BUTTONS --- */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    text-align: center; /* centra el botón */
}


.btn-primary {
    background: #818cf8 !important; /* Forzamos el color oficial de kovertiz */
    color: #ffffff !important;      /* Texto blanco puro forzado */
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;            /* Centrado vertical */
    justify-content: center;         /* Centrado horizontal */
    gap: 12px;
    box-shadow: 0 10px 25px rgba(129, 140, 248, 0.25);
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #6366f1 !important; /* Un tono de azul más oscuro para el hover */
    color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(129, 140, 248, 0.4);
}

.hero-actions .btn-primary {
    min-width: 200px; /* ancho mínimo para que no se achique */
    padding: 0.75rem 2rem; /* ajusta el relleno a tu gusto */
}

.btn-outline {
    border: 1px solid var(--border);
    color: #ffffff !important;      /* Texto blanco para consistencia */
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;            /* Centrado vertical */
    justify-content: center;         /* Centrado horizontal */
    gap: 12px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: #ffffff !important;
    background: rgba(129, 140, 248, 0.05);
    transform: translateY(-3px);
}

/* --- 6. BADGES --- */
.evolution-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(129, 140, 248, 0.08);
    padding: 12px 28px;
    border-radius: 100px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    font-size: 0.95rem;
    color: var(--primary);
    backdrop-filter: blur(4px);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 7. FEATURES GRID --- */
.features-grid-section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(129,140,248,0.02) 0%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 100px;
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 28px;
    background: rgba(129, 140, 248, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.info-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- 8. TECHNICAL NOTE --- */
.legal-footer-note {
    max-width: 960px;
    margin: 0 auto;
}

.note-box {
    background: rgba(129, 140, 248, 0.04);
    border-left: 4px solid var(--primary);
    padding: 36px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: flex;
    gap: 28px;
    align-items: center;
}

.note-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.note-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.note-text strong {
    color: var(--text);
}

/* --- 9. FAQ SECTION --- */
.faq-section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    background: radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.05), transparent 40%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 50px;
}

.faq-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon-side {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 4px;
}

.faq-body h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 600;
}

.faq-body p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-body p strong {
    color: var(--primary);
}

/* --- 10. RESPONSIVE QUERIES --- */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .about-hero-spec {
        padding: 120px 0 80px;
    }
    .info-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .note-box {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .faq-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* Fin del archivo about.css */