:root {
    --brand-teal: #00264e;
    --light-gray-bg: #f8f9fa;
    --text-dark: #212529;
}

#core-services {
    background-color: #ffffff;
}

/* Insignia de rendimiento */
.badge-performance {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

/* Tarjeta Principal */
.service-main-card {
    background-color: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-image-container {
    height: 100%;
    min-height: 350px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    padding: 60px;
    position: relative;
    z-index: 2;
}

.service-category {
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.service-title-main {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* Etiquetas de Beneficio */
.benefit-tag {
    background-color: var(--light-gray-bg);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #333;
}

.benefit-tag i {
    font-size: 1.2rem;
}

/* Botón Saber Más */
.btn-learn-more {
    background-color: var(--brand-teal);
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-learn-more:hover {
    background-color: #146378;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 127, 154, 0.3);
}

/* Icono Decorativo */
.decorative-icon {
    position: absolute;
    right: 40px;
    top: 40px;
    font-size: 40px;
    color: #e9ecef;
    z-index: 1;
}

/* Responsivo */
@media (max-width: 991px) {
    .service-card-body {
        padding: 40px 30px;
    }
    .service-title-main {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-main-card {
        border-radius: 15px;
    }
    .service-image-container {
        min-height: 250px;
    }
    .badge-performance {
        margin-top: 15px;
    }
}

