/* ========== HOTLINE ========== */
#HotLine {
    --hl-neon: #00ff66;
    --hl-dark: #003311;

    position: relative;
    min-height: 100vh;
    background: #030a05;
    overflow: hidden;
    color: #fff;
    padding: 80px 20px;
}

#HotLine #hotlineMatrixCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

#HotLine .hl-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
#HotLine .hl-section-header {
    text-align: center;
    margin-bottom: 50px;
}

#HotLine .hl-section-header h1 {
    font-size: clamp(2.6rem, 7vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

#HotLine .hl-section-header h1 .hl-accent {
    color: var(--hl-neon);
    text-shadow: 0 0 15px var(--hl-neon);
}

#HotLine .hl-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Grid */
#HotLine .hl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Card */
#HotLine .hl-card {
    background: rgba(5, 18, 9, 0.8);
    border: 1px solid rgba(0, 255, 102, 0.25);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#HotLine .hl-card:hover {
    border-color: rgba(0, 255, 102, 0.55);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 255, 102, 0.12);
}

#HotLine .hl-card-icon {
    font-size: 2.6rem;
    color: var(--hl-neon);
    margin-bottom: 16px;
    transition: 0.3s ease;
}

#HotLine .hl-card:hover .hl-card-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 0 12px var(--hl-neon));
}

#HotLine .hl-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

#HotLine .hl-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
    line-height: 1.5;
    flex: 1;
}

/* Botón */
#HotLine .hl-btn-hotline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--hl-neon);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

#HotLine .hl-card:hover .hl-btn-hotline {
    background: rgba(0, 255, 102, 0.12);
    box-shadow: 0 0 16px rgba(0, 255, 102, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    #HotLine .hl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}