/* =========================================================
   HORARIO LABORAL - ECOMEDICC (Nueva Versión con Reloj en Tiempo Real)
   Completamente Responsive & Moderno
   ========================================================= */

/* ===== Reset Específico de la Sección ===== */
.section-area#horario-laboral * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Fuentes y Variables CSS ===== */
.section-area#horario-laboral {
    --primary-color: #63b3ed;
    --secondary-color: #a855f7;
    --accent-color: #f59e0b;
    --success-color: #48bb78;
    --danger-color: #fc8181;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-area#horario-laboral {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-area#horario-laboral #horario-laboral {
    background: none;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ===== Elementos Decorativos Flotantes ===== */
.section-area#horario-laboral #horario-laboral::before,
.section-area#horario-laboral #horario-laboral::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.section-area#horario-laboral #horario-laboral::before {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    animation: float-smooth 12s ease-in-out infinite;
}

.section-area#horario-laboral #horario-laboral::after {
    bottom: -15%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    animation: float-smooth 15s ease-in-out infinite reverse;
}

@keyframes float-smooth {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, -40px) scale(1.05); }
    66% { transform: translate(30px, 20px) scale(0.95); }
}

.section-area#horario-laboral .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Heading Section ===== */
.section-area#horario-laboral .heading-bx {
    margin-bottom: 60px;
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-area#horario-laboral .heading-bx .title-ext {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.section-area#horario-laboral .heading-bx .title-ext::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 3px;
}

.section-area#horario-laboral .heading-bx .title {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    letter-spacing: -0.5px;
}

.section-area#horario-laboral .heading-bx p {
    color: var(--text-medium);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== Schedule Box Principal ===== */
.section-area#horario-laboral .schedule-box {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: var(--radius-lg);
    box-shadow: 
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 50px 45px;
    margin-top: 30px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: visible;
    animation: scale-in 0.6s ease-out 0.2s both;
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Borde Superior con Gradiente */
.section-area#horario-laboral .schedule-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.section-area#horario-laboral .schedule-box:hover {
    transform: translateY(-4px);
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* ===== Reloj en Tiempo Real ===== */
.section-area#horario-laboral .real-time-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 35px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.section-area#horario-laboral .real-time-clock::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: shine-rotate 8s linear infinite;
}

@keyframes shine-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-area#horario-laboral .clock-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.95);
    animation: pulse-scale 2s ease-in-out infinite;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-scale {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.08); 
        opacity: 0.9;
    }
}

.section-area#horario-laboral .clock-info {
    text-align: left;
    color: white;
}

.section-area#horario-laboral .current-date {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-area#horario-laboral .current-time {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Roboto Mono', 'Courier New', monospace;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-area#horario-laboral .current-timezone {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ===== Divisor Decorativo ===== */
.section-area#horario-laboral .schedule-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-color) 20%, 
        var(--border-color) 80%, 
        transparent 100%);
    margin: 40px 0;
    position: relative;
}

.section-area#horario-laboral .schedule-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-white), 0 0 0 6px var(--border-color);
}

/* ===== Horarios de Oficina Header ===== */
.section-area#horario-laboral .office-hours-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-area#horario-laboral .office-hours-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.section-area#horario-laboral .office-hours-header h3 i {
    color: var(--primary-color);
    font-size: 28px;
}

/* ===== Lista de Horarios ===== */
.section-area#horario-laboral .schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

.section-area#horario-laboral .schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: var(--radius-md);
    font-size: 16.5px;
    transition: var(--transition-base);
    border: 2px solid rgba(226, 232, 240, 0.5);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.section-area#horario-laboral .schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.section-area#horario-laboral .schedule-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.section-area#horario-laboral .schedule-item:hover::before {
    transform: scaleY(1);
}

.section-area#horario-laboral .schedule-item-closed {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: rgba(252, 129, 129, 0.3);
}

.section-area#horario-laboral .schedule-item-closed:hover {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
}

.section-area#horario-laboral .day-name {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.section-area#horario-laboral .day-name i {
    color: var(--primary-color);
    font-size: 18px;
}

.section-area#horario-laboral .hours-time {
    font-weight: 600;
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 16px;
    color: var(--text-medium);
}

.section-area#horario-laboral .closed-text {
    color: var(--danger-color);
    font-weight: 700;
}

/* ===== Enlace Google My Business ===== */
.section-area#horario-laboral .google-business-link {
    text-align: center;
    margin-top: 30px;
}

.section-area#horario-laboral .btn-google-business {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    background-size: 200% 100%;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 
        0 8px 20px rgba(66, 133, 244, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.section-area#horario-laboral .btn-google-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.section-area#horario-laboral .btn-google-business:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(66, 133, 244, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
}

.section-area#horario-laboral .btn-google-business:hover::before {
    left: 100%;
}

.section-area#horario-laboral .btn-google-business i.fab {
    font-size: 20px;
}

.section-area#horario-laboral .btn-google-business i.fas {
    font-size: 14px;
    animation: bounce-right 1.5s ease-in-out infinite;
}

@keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ===== WhatsApp Support Section ===== */
.section-area#horario-laboral .whatsapp-support {
    padding: 40px 35px;
    background: linear-gradient(135deg, #d4f4dd 0%, #c6f6d5 100%);
    border-radius: var(--radius-md);
    margin-top: 40px;
    border: 2px solid rgba(72, 187, 120, 0.2);
    box-shadow: 
        0 10px 30px rgba(72, 187, 120, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.section-area#horario-laboral .whatsapp-support::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-area#horario-laboral .whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(72, 187, 120, 0.2);
    color: #22543d;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(72, 187, 120, 0.15);
}

.section-area#horario-laboral .whatsapp-badge i {
    animation: flash-pulse 1.5s ease-in-out infinite;
}

@keyframes flash-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.section-area#horario-laboral .whatsapp-title {
    font-size: 28px;
    font-weight: 800;
    color: #22543d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.section-area#horario-laboral .whatsapp-title i {
    color: #25d366;
    font-size: 32px;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.section-area#horario-laboral .whatsapp-description {
    color: #2f855a;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-area#horario-laboral .response-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    color: #2f855a;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-area#horario-laboral .response-time i {
    color: var(--accent-color);
    font-size: 18px;
}

.section-area#horario-laboral .response-time strong {
    color: #22543d;
    font-weight: 700;
}

.section-area#horario-laboral .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 
        0 10px 25px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.section-area#horario-laboral .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.section-area#horario-laboral .btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.section-area#horario-laboral .btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(37, 211, 102, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
}

.section-area#horario-laboral .btn-whatsapp i.fab {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.section-area#horario-laboral .btn-whatsapp span {
    position: relative;
    z-index: 1;
}

.section-area#horario-laboral .btn-whatsapp i.fas {
    font-size: 16px;
    animation: slide-right 1.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes slide-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* ===== Footer Info ===== */
.section-area#horario-laboral .footer-info {
    margin-top: 35px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(232, 237, 241, 0.7) 0%, rgba(226, 232, 240, 0.6) 100%);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.section-area#horario-laboral .footer-info small {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.section-area#horario-laboral .footer-info i {
    color: var(--primary-color);
    margin-right: 6px;
}

/* =========================================================
   RESPONSIVE DESIGN - Todos los Dispositivos
   ========================================================= */

/* ===== Extra Large Desktops (1440px+) ===== */
@media (min-width: 1440px) {
    .section-area#horario-laboral .schedule-box {
        padding: 55px 50px;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 52px;
    }
}

/* ===== Large Desktops & Laptops (1200px - 1439px) ===== */
@media (min-width: 1200px) and (max-width: 1439px) {
    .section-area#horario-laboral .schedule-box {
        padding: 50px 45px;
    }
}

/* ===== Standard Laptops (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .section-area#horario-laboral #horario-laboral {
        padding: 80px 0;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 42px;
    }
    
    .section-area#horario-laboral .schedule-box {
        padding: 45px 40px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 38px;
    }
}

/* ===== Tablets & Small Laptops (768px - 991px) ===== */
/* iPad Air, iPad Pro, Surface Pro */
@media (min-width: 768px) and (max-width: 991px) {
    .section-area#horario-laboral #horario-laboral {
        padding: 70px 0;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 38px;
    }
    
    .section-area#horario-laboral .heading-bx p {
        font-size: 16px;
    }
    
    .section-area#horario-laboral .schedule-box {
        padding: 40px 35px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .section-area#horario-laboral .clock-icon {
        font-size: 50px;
    }
    
    .section-area#horario-laboral .current-date {
        font-size: 16px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 36px;
    }
    
    .section-area#horario-laboral .schedule-item {
        padding: 20px 24px;
        font-size: 15.5px;
    }
    
    .section-area#horario-laboral .whatsapp-title {
        font-size: 24px;
    }
}

/* ===== Large Phones & Small Tablets (576px - 767px) ===== */
/* iPhone 14 Pro Max, iPhone 16 Pro Max, Pixel 7-10, Galaxy S20-S23 Ultra */
@media (min-width: 576px) and (max-width: 767px) {
    .section-area#horario-laboral #horario-laboral {
        padding: 60px 0;
    }
    
    .section-area#horario-laboral .heading-bx {
        margin-bottom: 40px;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 32px;
    }
    
    .section-area#horario-laboral .heading-bx p {
        font-size: 15px;
    }
    
    .section-area#horario-laboral .schedule-box {
        padding: 35px 28px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .section-area#horario-laboral .clock-icon {
        font-size: 48px;
    }
    
    .section-area#horario-laboral .clock-info {
        text-align: center;
    }
    
    .section-area#horario-laboral .current-date {
        font-size: 15px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 32px;
    }
    
    .section-area#horario-laboral .current-timezone {
        font-size: 12px;
    }
    
    .section-area#horario-laboral .office-hours-header h3 {
        font-size: 22px;
    }
    
    .section-area#horario-laboral .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .section-area#horario-laboral .schedule-item:hover {
        transform: translateY(-2px) scale(1.02);
    }
    
    .section-area#horario-laboral .day-name {
        justify-content: center;
    }
    
    .section-area#horario-laboral .btn-google-business {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .section-area#horario-laboral .whatsapp-support {
        padding: 30px 25px;
    }
    
    .section-area#horario-laboral .whatsapp-title {
        font-size: 22px;
    }
    
    .section-area#horario-laboral .whatsapp-description {
        font-size: 15px;
    }
    
    .section-area#horario-laboral .btn-whatsapp {
        font-size: 16px;
        padding: 16px 30px;
    }
}

/* ===== Standard Phones (428px - 575px) ===== */
/* iPhone 12 Pro, iPhone 14 Pro Max, Pixel 2 XL, Galaxy S8+ */
@media (min-width: 428px) and (max-width: 575px) {
    .section-area#horario-laboral #horario-laboral {
        padding: 50px 0;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 28px;
    }
    
    .section-area#horario-laboral .heading-bx .title-ext {
        font-size: 12px;
    }
    
    .section-area#horario-laboral .heading-bx p {
        font-size: 14px;
    }
    
    .section-area#horario-laboral .schedule-box {
        padding: 30px 22px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        flex-direction: column;
        padding: 22px 18px;
        gap: 12px;
    }
    
    .section-area#horario-laboral .clock-icon {
        font-size: 44px;
    }
    
    .section-area#horario-laboral .clock-info {
        text-align: center;
    }
    
    .section-area#horario-laboral .current-date {
        font-size: 14px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 30px;
    }
    
    .section-area#horario-laboral .current-timezone {
        font-size: 11px;
    }
    
    .section-area#horario-laboral .schedule-divider {
        margin: 30px 0;
    }
    
    .section-area#horario-laboral .office-hours-header h3 {
        font-size: 20px;
    }
    
    .section-area#horario-laboral .schedule-list {
        gap: 12px;
    }
    
    .section-area#horario-laboral .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 18px;
        font-size: 14px;
    }
    
    .section-area#horario-laboral .day-name {
        justify-content: center;
        font-size: 15px;
    }
    
    .section-area#horario-laboral .hours-time {
        font-size: 14px;
    }
    
    .section-area#horario-laboral .btn-google-business {
        font-size: 14px;
        padding: 13px 24px;
        gap: 10px;
    }
    
    .section-area#horario-laboral .whatsapp-support {
        padding: 28px 20px;
    }
    
    .section-area#horario-laboral .whatsapp-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .section-area#horario-laboral .whatsapp-title {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .section-area#horario-laboral .whatsapp-description {
        font-size: 14px;
    }
    
    .section-area#horario-laboral .response-time {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .section-area#horario-laboral .btn-whatsapp {
        font-size: 15px;
        padding: 15px 26px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== Small Phones (375px - 427px) ===== */
/* iPhone 8 Plus, iPhone XR, iPhone 12 Pro, Galaxy S20/S21 */
@media (min-width: 375px) and (max-width: 427px) {
    .section-area#horario-laboral #horario-laboral {
        padding: 45px 0;
    }
    
    .section-area#horario-laboral .heading-bx {
        margin-bottom: 35px;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 26px;
    }
    
    .section-area#horario-laboral .heading-bx p {
        font-size: 14px;
    }
    
    .section-area#horario-laboral .schedule-box {
        padding: 28px 20px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        flex-direction: column;
        padding: 20px 16px;
        gap: 10px;
    }
    
    .section-area#horario-laboral .clock-icon {
        font-size: 40px;
    }
    
    .section-area#horario-laboral .clock-info {
        text-align: center;
    }
    
    .section-area#horario-laboral .current-date {
        font-size: 13px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 28px;
    }
    
    .section-area#horario-laboral .office-hours-header h3 {
        font-size: 19px;
    }
    
    .section-area#horario-laboral .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px 16px;
        font-size: 13.5px;
    }
    
    .section-area#horario-laboral .day-name {
        font-size: 14px;
    }
    
    .section-area#horario-laboral .btn-google-business {
        font-size: 13px;
        padding: 12px 22px;
    }
    
    .section-area#horario-laboral .whatsapp-support {
        padding: 25px 18px;
    }
    
    .section-area#horario-laboral .whatsapp-title {
        font-size: 19px;
        flex-direction: column;
    }
    
    .section-area#horario-laboral .btn-whatsapp {
        font-size: 14px;
        padding: 14px 24px;
        width: 100%;
    }
}

/* ===== Extra Small Phones (320px - 374px) ===== */
/* Older iPhones, small Android devices */
@media (max-width: 374px) {
    .section-area#horario-laboral #horario-laboral {
        padding: 40px 0;
    }
    
    .section-area#horario-laboral .heading-bx {
        margin-bottom: 30px;
    }
    
    .section-area#horario-laboral .heading-bx .title {
        font-size: 24px;
    }
    
    .section-area#horario-laboral .heading-bx .title-ext {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-area#horario-laboral .heading-bx p {
        font-size: 13px;
    }
    
    .section-area#horario-laboral .schedule-box {
        padding: 25px 18px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        flex-direction: column;
        padding: 18px 14px;
        gap: 8px;
    }
    
    .section-area#horario-laboral .clock-icon {
        font-size: 36px;
    }
    
    .section-area#horario-laboral .clock-info {
        text-align: center;
    }
    
    .section-area#horario-laboral .current-date {
        font-size: 12px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 26px;
    }
    
    .section-area#horario-laboral .current-timezone {
        font-size: 10px;
    }
    
    .section-area#horario-laboral .schedule-divider {
        margin: 25px 0;
    }
    
    .section-area#horario-laboral .office-hours-header h3 {
        font-size: 18px;
        gap: 8px;
    }
    
    .section-area#horario-laboral .schedule-list {
        gap: 10px;
    }
    
    .section-area#horario-laboral .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 14px 14px;
        font-size: 13px;
    }
    
    .section-area#horario-laboral .day-name {
        font-size: 13px;
        gap: 8px;
    }
    
    .section-area#horario-laboral .hours-time {
        font-size: 13px;
    }
    
    .section-area#horario-laboral .btn-google-business {
        font-size: 12px;
        padding: 11px 20px;
        gap: 8px;
    }
    
    .section-area#horario-laboral .whatsapp-support {
        padding: 22px 16px;
    }
    
    .section-area#horario-laboral .whatsapp-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .section-area#horario-laboral .whatsapp-title {
        font-size: 18px;
        flex-direction: column;
        gap: 6px;
    }
    
    .section-area#horario-laboral .whatsapp-description {
        font-size: 13px;
    }
    
    .section-area#horario-laboral .response-time {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .section-area#horario-laboral .btn-whatsapp {
        font-size: 13px;
        padding: 13px 20px;
        width: 100%;
        gap: 8px;
    }
    
    .section-area#horario-laboral .footer-info {
        padding: 14px 18px;
    }
    
    .section-area#horario-laboral .footer-info small {
        font-size: 12px;
    }
}

/* ===== Foldable Devices ===== */
/* Galaxy Z Fold 5, Surface Duo */
@media (min-width: 653px) and (max-width: 720px) {
    .section-area#horario-laboral .schedule-box {
        padding: 38px 32px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        padding: 28px 24px;
    }
    
    .section-area#horario-laboral .current-time {
        font-size: 34px;
    }
}

/* ===== iPad Mini Specific ===== */
@media (min-width: 744px) and (max-width: 768px) {
    .section-area#horario-laboral .schedule-box {
        padding: 42px 36px;
    }
}

/* ===== Asus Zenbook Fold (Dual Screen) ===== */
@media (min-width: 1024px) and (max-width: 1280px) {
    .section-area#horario-laboral .schedule-box {
        padding: 48px 42px;
    }
}

/* ===== Landscape Orientation ===== */
@media (max-width: 767px) and (orientation: landscape) {
    .section-area#horario-laboral #horario-laboral {
        padding: 40px 0;
    }
    
    .section-area#horario-laboral .heading-bx {
        margin-bottom: 30px;
    }
    
    .section-area#horario-laboral .real-time-clock {
        flex-direction: row;
        padding: 20px 25px;
    }
    
    .section-area#horario-laboral .clock-info {
        text-align: left;
    }
    
    .section-area#horario-laboral .schedule-item {
        flex-direction: row;
        text-align: left;
    }
    
    .section-area#horario-laboral .day-name {
        justify-content: flex-start;
    }
}

/* ===== Print Styles ===== */
@media print {
    .section-area#horario-laboral #horario-laboral {
        background: white;
        padding: 20px 0;
    }
    
    .section-area#horario-laboral #horario-laboral::before,
    .section-area#horario-laboral #horario-laboral::after,
    .section-area#horario-laboral .schedule-box::before {
        display: none;
    }
    
    .section-area#horario-laboral .schedule-box {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .section-area#horario-laboral .btn-google-business,
    .section-area#horario-laboral .btn-whatsapp {
        display: none;
    }
}

/* ===== Dark Mode Support ===== */
@media (prefers-color-scheme: dark) {
    .section-area#horario-laboral {
        --text-dark: #f7fafc;
        --text-medium: #e2e8f0;
        --text-light: #cbd5e0;
        --bg-white: #1a202c;
        --bg-light: #2d3748;
        --bg-lighter: #374151;
        --border-color: #4a5568;
    }
    
    .section-area#horario-laboral #horario-laboral {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a1f2e 100%);
    }
    
    .section-area#horario-laboral .schedule-box {
        background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    
    .section-area#horario-laboral .schedule-item {
        background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    }
    
    .section-area#horario-laboral .schedule-item:hover {
        background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    }
    
    .section-area#horario-laboral .whatsapp-support {
        background: linear-gradient(135deg, rgba(72, 187, 120, 0.2) 0%, rgba(56, 178, 172, 0.15) 100%);
    }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
    .section-area#horario-laboral *,
    .section-area#horario-laboral *::before,
    .section-area#horario-laboral *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   FIN HORARIO LABORAL - ECOMEDICC
   ========================================================= */
