/* ===== SERVICIOS - FONDO AMARILLO ===== */
.services {
    background-color: var(--dorado);
    background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-calido) 100%);
    color: var(--negro);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.services > .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--negro), var(--gris-oscuro));
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--negro);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--negro);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--gris-oscuro);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    margin-bottom: 15px;
    color: var(--negro-profundo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-features li i {
    color: var(--negro);
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-price {
    font-size: 2.8rem;
    color: var(--negro);
    font-weight: 900;
    margin: 25px 0;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    color: var(--gris-oscuro);
    transform: scale(1.05);
}

.service-price span {
    font-size: 1rem;
    color: var(--gris-oscuro);
    font-weight: normal;
}

.highlight {
    border: 2px solid var(--negro);
    transform: scale(1.05);
}

.highlight::before {
    content: "RECOMENDADO";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--negro), var(--gris-oscuro));
    color: var(--dorado);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 3;
    animation: pulseGold 2s infinite;
    font-family: 'Montserrat', sans-serif;
}