body {
    background: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
}

.service-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 24px;
}

.glass {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-image img {
    width: 100%;
    border-radius: 20px;
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-cards {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    align-items: stretch;
    cursor: pointer;
    transition: 0.35s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #0d6efd;
}

.service-card span {
    font-size: 2.2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13,110,253,0.25);
    color: #0d6efd;
}


/* ===== HERO EMPRESARIAL ===== */
.hero-onlycompu {
    position: relative;
    height: 65vh;
    margin-top: 90px; /* IMPORTANTE: compensa navbar fixed */
    background: url('../img/Man/hero-ti.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.6)
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    
    .service-section {
        margin: 50px auto;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .service-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .service-content p {
        text-align: center;
    }
    
    .hero-onlycompu {
        height: 60vh;
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-icons {
        font-size: 1.7rem;
        gap: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}



@media (min-width: 992px) {
    .service-section {
        flex-direction: row;
        align-items: center;
    }
    .reverse {
        flex-direction: row-reverse;
    }
}

.whatsapp_float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
