/* SERVICES SECTION - INDEX (DARK THEME) */
#idx-services {
    padding: 100px 0;
    background-color: #030712; /* Black */
    color: white;
}

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

.service-mini-card {
    background: #111827;
    padding: 45px 30px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-mini-card:hover {
    transform: translateY(-12px);
    background: #1F2937;
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.4rem;
    transition: all 0.4s ease;
}

.service-mini-card:hover .icon-box {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1) rotate(8deg);
}

.service-mini-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.section-header h2 { 
    font-size: clamp(2rem, 4vw, 2.8rem); 
    margin-bottom: 15px; 
    color: #FFFFFF !important; /* Blanco Puro */
    font-weight: 800;
}

.section-header p { 
    color: #94A3B8; 
    font-size: 1.1rem; 
    max-width: 600px;
    margin: 0 auto;
}

.services-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

/* Botón Premium: Solicitar Presupuesto */
.services-footer .btn-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white !important;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.services-footer .btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

@media screen and (max-width: 768px) {
    #idx-services { padding: 70px 0; }
    .services-grid { gap: 20px; }
    .service-mini-card { padding: 35px 25px; }
    .services-footer .btn-primary { width: 100%; }
}
