/* Higienización Colchones Page Styles */

/* Base Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

/* Service Page Specific Styles */
.hygiene-service-section {
    background: white;
    padding: 4rem 0 6rem;
}

.hygiene-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);
}

.hygiene-hero-image:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.hygiene-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hygiene-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;
}

.hygiene-feature-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateX(8px);
}

.hygiene-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);
}

.hygiene-warning-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 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(245, 158, 11, 0.3);
}

.hygiene-pricing-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hygiene-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.hygiene-pricing-card: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);
    border-color: #3b82f6;
}

.hygiene-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;
}

.hygiene-pricing-item:last-child {
    border-bottom: none;
}

.hygiene-pricing-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    padding-left: 0.5rem;
    border-radius: 0.25rem;
}

.hygiene-pricing-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.hygiene-pricing-amount {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.hygiene-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;
}

.hygiene-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;
}

.hygiene-cta-button:hover::before {
    left: 100%;
}

.hygiene-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);
}

.hygiene-disclaimer {
    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: all 0.3s ease;
    position: relative;
}

.hygiene-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.hygiene-disclaimer:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2);
}

.hygiene-disclaimer-title {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #92400e;
}

/* Health Benefits Highlight */
.health-benefit {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 0.5rem 0;
    transition: transform 0.3s ease;
}

.health-benefit:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hygiene-service-section {
        padding: 2rem 0 4rem;
    }
    
    .hygiene-feature-item {
        padding: 0.5rem;
    }
    
    .hygiene-pricing-card {
        margin-bottom: 1rem;
    }
}