/* Lavado Sillones Page Styles */

/* Base Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

/* Service Page Specific Styles */
.service-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.service-hero-image {
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
}

.service-hero-image:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.service-feature-list {
    list-style: none;
    padding: 0;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.service-check-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    padding-left: 0.5rem;
    border-radius: 0.25rem;
}

.pricing-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-amount {
    font-weight: 500;
    color: #111827;
}

.cta-whatsapp {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp::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-whatsapp:hover::before {
    left: 100%;
}

.cta-whatsapp:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(37, 99, 235, 0.4);
}

.disclaimer-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-left: 4px solid #f59e0b;
    color: #92400e;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.disclaimer-box:hover {
    transform: translateY(-1px);
}

.disclaimer-title {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-feature-item {
        padding: 0.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}