:root {
    /* Colores extraídos de tus mockups */
    --ordi-red: #c1121c;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    
    /* Espaciados estándar */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ESTILO PARA EL ENLACE "HABLAR CON UN ESPECIALISTA"
   ========================================================================== */
.link-especialista {
    color: var(--ordi-red); /* Usa exactamente tu tono de rojo */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-especialista:hover {
    color: var(--text-main); /* Cambia al blanco que definiste en tu root */
    transform: translateX(8px);
}
