 /* Footer */
        footer {
            background: var(--federal-blue);
            color: white;
            padding: 4rem 0 2rem;
        }

            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
                gap: 1rem;
                margin: 0 auto 3rem auto;
                max-width: 1400px; /* ajusta según tu diseño */
            }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--light-cyan);
        }

        .footer-section p {
            line-height: 1.8;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem ;
        }
        footer .footer-section a,
        footer .footer-section a:visited { color:#fff; text-decoration:none; }
        footer .footer-section a:hover,
        footer .footer-section a:focus { color:var(--light-cyan); text-decoration:underline; }


        .status-open {
            background: #4CAF50;
        }

        .status-closed {
            background: #f44336;
        }


        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--pacific-cyan);
            transform: translateY(-3px);
        }


        /* Schedule Styles - Simplified */
        .schedule-status {
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Cambiar de center a flex-start */
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .status-open {
            background: #4CAF50;
        }

        .status-closed {
            background: #f44336;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .schedule-hours {
            text-align: left; /* Cambiar de center a left */
            margin-top: 1rem;
        }

        .weekdays-hours {
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .schedule-divider {
            height: 1px;
            background: rgba(255,255,255,0.3);
            margin: 1rem 0;
        }

        .saturday-hours {
            font-size: 0.9rem;
            opacity: 0.8;
            font-style: italic;
        }

        .current-day-highlight {
            background: rgba(0, 186, 216, 0.2);
            border-radius: 5px;
            padding: 0.5rem;
            margin: -0.2rem;
        }


        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--non-photo-blue);
        }
        footer .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }