/**
 * Tokens y componentes compartidos del sitio Inpulso 43.
 * Cargar antes de CSS de página.
 */
:root {
    --fondo-crema: #F7F5F0;
    --inpulso-azul: #2d4f82;
    --inpulso-rojo: #C64A49;
    --inpulso-verde: #3d7a5c;
    --fondo-ergonomico: #CFC8B7;
    --texto-principal: #1A1F1C;
    --texto-secundario: #5A6B63;
    --fuente-titulos: 'Playfair Display', serif;
    --fuente-textos: 'Montserrat', sans-serif;
    --radio-secciones: 40px;
    --radio-tarjetas: 28px;
    --ios-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-bg-strong: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.2);
}

.apple-glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--fuente-textos);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
    transition: transform 0.35s var(--ios-spring), background 0.3s ease, box-shadow 0.3s ease;
}

.apple-glass-btn:hover {
    background: var(--glass-bg-strong);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.apple-glass-btn.dark-glass {
    color: var(--inpulso-azul);
    text-shadow: none;
}

.section-mini-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    background: rgba(198, 74, 73, 0.1);
    color: var(--inpulso-rojo);
    font-family: var(--fuente-textos);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
