/* Lavado Alfombras Page Styles */

/* Base Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

/* Hero Background */
.hero-bg {
    background-image: linear-gradient(rgba(0, 20, 50, 0.6), rgba(0, 20, 50, 0.6)), url('../imagen/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Text Effects */
.shadow-text {
    text-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}

/* Service Page Specific Styles */
.service-feature-item {
    transition: transform 0.3s ease;
}

.service-feature-item:hover {
    transform: translateY(-2px);
}

.service-feature-check {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.pricing-table {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-row {
    transition: background-color 0.2s ease;
}

.pricing-row:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.service-image {
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-image:hover {
    transform: scale(1.05);
}

.cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(37, 99, 235, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-table {
        margin-bottom: 1rem;
    }
}