/* Limpieza Pisos Duros Page Styles */

/* Base Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

/* Service Page Specific Styles */
.floor-service-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 4rem 0 6rem;
}

.floor-hero-image {
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    height: 24rem;
    object-fit: cover;
}

.floor-hero-image:hover {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.05);
}

.floor-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.floor-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
}

.floor-feature-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateX(8px);
}

.floor-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);
}

.floor-pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floor-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.floor-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 8px 16px -8px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.floor-pricing-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.floor-pricing-item:last-child {
    border-bottom: none;
}

.floor-pricing-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    padding-left: 0.5rem;
    border-radius: 0.25rem;
}

.floor-pricing-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.floor-pricing-amount {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.floor-pricing-note {
    grid-column: 1 / -1;
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
    padding-top: 0.75rem;
}

.floor-cta-button {
    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;
}

.floor-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;
}

.floor-cta-button:hover::before {
    left: 100%;
}

.floor-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);
}

/* Shine Effect for Clean Floors */
.floor-shine-effect {
    position: relative;
    overflow: hidden;
}

.floor-shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floor-service-section {
        padding: 2rem 0 4rem;
    }
    
    .floor-hero-image {
        height: 20rem;
    }
    
    .floor-feature-item {
        padding: 0.5rem;
    }
    
    .floor-pricing-card {
        margin-bottom: 1rem;
    }
}