@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #D4AF37;        /* Dorado Dante */
    --primary-hover: #b5952f;
    --bg-light: #f8fafc;       /* Fondo súper claro (casi blanco) */
    --bg-alt: #f1f5f9;         /* Fondo alternativo suave */
    --text-main: #1e293b;      /* Texto oscuro/pizarra (Mejor contraste que negro puro) */
    --text-muted: #64748b;     /* Texto secundario gris */
    --white: #ffffff;
    
    /* Variables para Glassmorphism Claro */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


a { text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }

/* --- BOTONES ACADEMIA --- */
.btn-gold {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}
.btn-gold:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* --- TITULOS DE SECCIÓN --- */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    text-transform: uppercase;
}
.section-title span { color: var(--primary); }

/* --- PLACEHOLDERS DE IMAGEN --- */
.img-placeholder {
    background: #e2e8f0;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    border-radius: 12px;
}