/* assets/css/pages.css */

/* --- Estilos específicos de la página de Servicios --- */

.hero-services {
    /* Fondo con degradado oscuro y imagen de fondo */
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=2000') center/cover no-repeat;
    padding: 160px 0 100px;
    color: white;
    text-align: center;
    position: relative;
}

.badge-arco {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.service-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card .card-img-top {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 2rem !important; /* Sobreescribimos padding de bootstrap */
}

.service-icon {
    width: 42px;
    height: 42px;
    background-color: #e30613; /* Color rojo marca */
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.text-muted {
    color: #6c757d !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.list-unstyled li {
    font-size: 0.9rem;
    color: #333;
}

.btn-service {
    border: 1px solid #333;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Ajustes para la sección final */
.service-note {
    background-color: #f8f9fa; /* Gris muy claro */
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.page-kicker {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e30613;
    margin-bottom: 10px;
}

.section-copy {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsividad básica adicional */
@media (max-width: 768px) {
    .hero-services {
        padding: 100px 0 60px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .service-card .card-img-top {
        height: 200px;
    }
}