/* =========================================
   1. VARIABLES Y CONFIGURACIÓN GLOBAL
   ========================================= */
:root {
    --azul-profundo: #1a252f;   /* Fondo oscuro profesional */
    --verde-psicologia: #3c6e71; /* Acento para botones e iconos */
    --blanco-puro: #ffffff;
    --gris-suave: #f4f1ea;      /* Fondo para "Sobre mí" o "Servicios" */
    --texto-oscuro: #2c3e50;
    --fuente-principal: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--fuente-principal);
    color: var(--texto-oscuro);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   2. SECCIÓN HERO (Encuentra el equilibrio)
   ========================================= */
#inicio.hero-section {
    /* Fondo Oscuro Prioritario */
    background-color: var(--azul-profundo) !important;
    background-image: none !important; /* Limpia cualquier imagen previa */
    
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    position: relative;
    color: var(--blanco-puro) !important;
}

#inicio.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--blanco-puro) !important;
}

#inicio.hero-section p.lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    color: var(--blanco-puro) !important;
}

/* Botón de Acción Principal */
.btn-primary {
    background-color: var(--verde-psicologia) !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   3. SECCIÓN SOBRE MÍ Y SERVICIOS
   ========================================= */
#sobre-mi, #servicios {
    background-color: var(--gris-suave); /* El "oscuro suave" que querías */
    padding: 80px 0;
}

/* Estilo para la lista de especialidades */
.list-unstyled li {
    padding-left: 0;
    margin-bottom: 12px;
}

.list-unstyled li i {
    color: var(--verde-psicologia);
    font-size: 1.2rem;
}

/* =========================================
   4. TARJETAS DE SERVICIOS
   ========================================= */
.service-card {
    background: var(--blanco-puro);
    border: none;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* =========================================
   5. AJUSTES RESPONSIVOS (Móviles)
   ========================================= */
@media (max-width: 768px) {
    #inicio.hero-section h1 {
        font-size: 2.5rem;
    }
    
    #inicio.hero-section {
        min-height: 60vh;
        padding: 60px 20px;
    }
}