/* ============================================
   soporte.css — Estilos específicos de soporte.html
   ============================================ */

/* ---- Hero Banner con imagen server.png ---- */
.soporte-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-image: url('../images/server_opt.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.soporte-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 15, 40, 0.75) 0%,
        rgba(17, 24, 39, 0.55) 50%,
        rgba(10, 15, 40, 0.35) 100%
    );
    z-index: 1;
}

.soporte-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.soporte-hero-text {
    max-width: 600px;
}

.soporte-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.soporte-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.soporte-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.soporte-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.soporte-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.soporte-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

@media (max-width: 768px) {
    .soporte-hero h1 { font-size: 2rem; }
    .soporte-hero { min-height: 340px; background-position: 70% center; }
}
