.services-section {
    margin-top: 120px;
    padding: 4rem 1rem;
    background-color: #000;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.view-more {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    margin-bottom: 2rem;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
}
.view-more:hover {
    background-color: #fff;
    color: #000;
}

.services-title {
    font-size: 2.8rem;
    color: #fff;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
}
.services-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
}

.services-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.service-item {
    max-width: 150px;
    text-align: center;
}

.service-item img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* fade-in */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.fade-in.animated {
    opacity: 1;
}
/* ============================= */
/*     SECCIÓN SERVICIOS REVAMP  */
/* ============================= */

.services-section.revamp {
    background-color: #000;
    padding: 80px 0;
}

.revamp .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.revamp .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.revamp .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

/* GRID DE TARJETAS */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* TARJETA INDIVIDUAL */
.service-card {
    background-color: #111;
    border-radius: 12px;
    padding: 2rem;
    width: 260px;
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
    color: #fff;
}

/* ÍCONO */
.revamp .service-card i {
    font-size: 2.5rem;
    color: #cc0000;
    margin-bottom: 1rem;
}

/* TÍTULO */
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff5e5e;
}

/* DESCRIPCIÓN */
.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
}

/* HOVER */
.revamp .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-section.revamp {
        padding: 60px 0;
    }
    .revamp .section-title {
        font-size: 2.2rem;
    }
    .revamp .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .revamp .services-grid {
        grid-template-columns: 1fr;
    }
}

