/* ==========================================================================
   INSTALACIONES ÁLVAREZ
   HERO.CSS (DEPURADO)
   ========================================================================== */

/* =========================================================
   ESTRUCTURA PRINCIPAL HERO
   ========================================================= */

.hero-section {
    position: relative;
    padding: 220px 0 100px 0;
    overflow: hidden;
    background-color: var(--color-navy, #0b0f19);
    background-image: 
        linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)), 
        url('../images/imagen1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* =========================================================
   CONTENIDO IZQUIERDO (TEXTOS Y BADGE)
   ========================================================= */

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm, 0.85rem);
    font-weight: 700;
    color: var(--color-gold, var(--accent-yellow, #c8ff00));
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold, var(--accent-yellow, #c8ff00));
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold, var(--accent-yellow, #c8ff00));
}

.hero-title {
    margin: 0;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-white, #ffffff);
}

.hero-speciality {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-blue, #0072ce);
}

.hero-description {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-secondary, #94a3b8);
}

/* =========================================================
   BOTONES DE ACCIÓN (CON EFECTO NEÓN)
   ========================================================= */

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

/* Reposo: Azul oscuro dinámico */
.hero-buttons .btn,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary,
.hero-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    color: var(--color-white, #ffffff);
    background-color: #005bb5;
    border: 1px solid rgba(0, 114, 206, 0.4);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: Elevación con resplandor Neón Azul */
.hero-buttons .btn:hover,
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover,
.hero-buttons a:hover {
    color: var(--color-white, #ffffff);
    background-color: #005bb5;
    border-color: #0088ff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.8),
                0 0 30px rgba(0, 114, 206, 0.5);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* =========================================================
   CONTENIDO DERECHO (TARJETAS CON LUZ LED)
   ========================================================= */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.hero-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 440px;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg, 16px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: default;
    user-select: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.hero-card *, 
.hero-card h4, 
.hero-card p {
    cursor: default;
    user-select: none;
}

/* Efecto LED al pasar el cursor */
.hero-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold, var(--accent-yellow, #c8ff00));
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.35),
                0 0 40px rgba(200, 255, 0, 0.15);
}

.hero-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 114, 206, 0.15);
    border-radius: var(--radius-md, 12px);
    color: var(--color-blue, #0072ce);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover .card-icon {
    background: var(--color-gold, var(--accent-yellow, #c8ff00));
    color: var(--color-navy, #0b0f19);
    box-shadow: 0 0 12px var(--color-gold, var(--accent-yellow, #c8ff00));
}

.hero-card h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white, #ffffff);
}

.hero-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-text-secondary, #94a3b8);
}

/* =========================================================
   RESPONSIVE (TABLETS Y MÓVILES)
   ========================================================= */

@media (max-width: 992px) {
    .hero-section {
        padding-top: 180px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons a {
        justify-content: center;
        width: 100%;
    }
}