/* ========================================
   SERVICIOS PAGE - ADDITIONAL STYLES
======================================== */

/* Page Header */
.page-header {
    background-color: #111111;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #27272a;
}

.page-header h1 {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    margin-bottom: 12px;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page Grid */
.services-page {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Service Card with Image */
.services-page .service-card {
    background-color: #111111;
    border: 1px solid #27272a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0;
}

.services-page .service-card:hover {
    transform: translateY(-10px);
    border-color: #0082dc;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.services-page .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.services-page .service-card:hover img {
    transform: scale(1.05);
}

.services-page .service-content {
    padding: 30px 28px;
}

.services-page .service-icon {
    width: 60px;
    height: 60px;
    background-color: #1f1f23;
    color: #0082dc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.services-page .service-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.services-page .service-card p {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.7;
}

/* Appointment Banner */
.appointment-banner {
    background-color: #111111;
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid #27272a;
}

.appointment-banner .container {
    max-width: 700px;
}

.appointment-banner .section-tag {
    color: #0082dc;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.appointment-banner h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: #ffffff;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.appointment-banner p {
    color: #a1a1aa;
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 50px;
    }
    
    .services-page {
        padding: 60px 0;
    }
    
    .services-page .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .appointment-banner {
        padding: 70px 0;
    }
    
    .appointment-banner h2 {
        font-size: 2.2rem;
    }
}