/* =========================================
   HERO SECTION (INICIO)
   ========================================= */
.hero-section {
    position: relative;
    width: 100vw; /* Fuerza a ocupar el 100% del viewport de la pantalla */
    max-width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0 5%;
    background: radial-gradient(circle at top center, #1f1f1f 0%, var(--bg-dark) 70%);
    overflow: hidden;
}

/* Efecto de luz de fondo sutil */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(ellipse at top, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-title {
    font-family: var(--font-headers);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Tipografía fluida */
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--silver-dark);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* --- Botones Corporativos --- */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all var(--transition-standard);
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #d4d4d4 0%, #8a8a8a 100%);
    color: var(--bg-darker);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--silver-accent);
    border: 1px solid var(--silver-dark);
}

.btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* --- Barra de Áreas de Práctica --- */
.hero-areas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(138, 138, 138, 0.2);
    padding: 20px 5%;
    z-index: 2;
}

.areas-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.areas-list li {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver-dark);
    display: flex;
    align-items: center;
}

.areas-list li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--silver-accent);
    border-radius: 50%;
    margin-left: 30px;
    opacity: 0.5;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividad */
@media (max-width: 768px) {
    .hero-actions { flex-direction: column; }
    .areas-list { gap: 15px; }
    .areas-list li { font-size: 0.7rem; }
    .areas-list li:not(:last-child)::after { display: none; } /* Ocultamos los puntos en móvil para un grid más limpio */
}