/* ==========================================================================
   ESTILOS GENERALES Y HERO
   ========================================================================== */
.hero-general {
    position: relative;
    padding: 150px 0 80px 0; 
    background-image: linear-gradient(rgba(4, 41, 75, 0.49), rgba(4, 41, 75, 0.463)), url('../img/hero2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-bottom: 4px solid #d90429;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
}

.hero-general h1 {
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 3.5rem; 
    margin-bottom: 1rem;
}

/* ==========================================================================
   TARJETAS DE SERVICIO (PREMIUM & DARK TEXT)
   ========================================================================== */
.service-card {
    border-radius: 15px !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
    overflow: hidden;
}

.service-card .card-text {
    text-align: justify;
    text-justify: inter-word; 
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1) !important;
}

.service-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background: #04294b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(4, 41, 75, 0.25);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: #d90429;
}

.card-text {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;   
    color: #212529 !important;  
}

/* ==========================================================================
   MANTENIMIENTO (DARK TEXT)
   ========================================================================== */
.maintenance-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border-top: 4px solid #04294b;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.maintenance-box h4 {
    font-weight: 700;
    color: #04294b;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.maintenance-box p {
    font-size: 1.15rem !important; 
    line-height: 1.8 !important; 
    color: #212529 !important;     
}

.maintenance-box:hover {
    border-top-color: #d90429;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.maintenance-box i {
    font-size: 2.5rem;
    color: #04294b;
    margin-bottom: 20px;
    display: block;
}