        /** {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background-color: #f5f7fa;
        }*/

        /* FOOTER PRINCIPAL */
        .footer {
            background-color: #0A1A2F;  /* Azul marino oscuro */
            color: #E2E8F0;
            padding: 3rem 5% 1.5rem;
            width: 100%;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* SECCIÓN SUPERIOR: LOGO + MENÚS */
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 2fr 2fr 2fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Logo */
        .footer-logo {
            display: flex;
            flex-direction: column;
            background: url("../../LogoTuBoletoRAS.png");
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .logo-tuboleto {
            font-size: 2rem;
            font-weight: 800;
            color: #1E3A8A;  /* Azul brillante del logo */
            line-height: 1.2;
        }

        .logo-ras {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1E3A8A;
            letter-spacing: 2px;
        }

        .logo-mx {
            font-size: 1.2rem;
            font-weight: 400;
            color: #6B8CFF;
            margin-top: 0.25rem;
        }

        /* Menús del footer */
        .footer-menu h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .footer-menu ul {
            list-style: none;
        }

        .footer-menu ul li {
            margin-bottom: 0.7rem;
        }

        .footer-menu ul li a {
            color: #E2E8F0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-menu ul li a:hover {
            color: #F97316;  /* Naranja al hacer hover */
        }

        .footer-menu ul li a i {
            font-size: 0.9rem;
            width: 20px;
            color: #6B8CFF;
        }

        /* Información de contacto en menú empresa */
        .contact-info {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .contact-info i {
            color: #6B8CFF;
            width: 20px;
            margin-right: 0.5rem;
        }

        .whatsapp {
            color: #25D366 !important;  /* Verde WhatsApp */
            font-weight: 600;
        }

        .whatsapp i {
            color: #25D366 !important;
        }

        /* Línea divisoria */
        .divider {
            height: 1px;
            background: #2C3E50;  /* Azul medio */
            margin: 2rem 0;
            width: 100%;
        }

        /* SECCIÓN PUNTOS DE VENTA FÍSICOS */
        .locations h2 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .locations h2 i {
            color: #F97316;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .location-card {
            background: rgba(30, 58, 138, 0.1);  /* #1E3A8A con opacidad */
            border: 1px solid #1E3A8A;
            border-radius: 8px;
            padding: 1.2rem;
            display: flex;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-3px);
            background: rgba(30, 58, 138, 0.2);
        }

        .location-icon {
            font-size: 1.8rem;
            color: #F97316;
        }

        .location-details h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .location-details p {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: #E2E8F0;
        }

        .location-details i {
            color: #6B8CFF;
            width: 18px;
        }

        .schedule {
            font-size: 0.85rem;
            color: #A0AEC0;
            margin-top: 0.5rem;
        }

        /* REDES SOCIALES */
        .social-section {
            margin: 2.5rem 0 2rem;
            text-align: center;
        }

        .social-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: #1E2B3A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-5px);
        }

        .social-icon.facebook:hover { background: #1877f2; }
        .social-icon.instagram:hover { background: #e4405f; }
        .social-icon.twitter:hover { background: #1da1f2; }
        .social-icon.tiktok:hover { background: #000000; }
        .social-icon.linkedin:hover { background: #0077b5; }

        /* NEWSLETTER */
        .newsletter {
            background:rgb(20 59 169 / 70%);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .newsletter h3 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .newsletter p {
            color: #A0AEC0;
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            background: white;
        }

        .newsletter-btn {
            background: #F97316;  /* Naranja */
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e06712;
        }

        /* SELLOS DE SEGURIDAD */
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #E2E8F0;
            font-size: 0.95rem;
        }

        .badge i {
            color: #6B8CFF;
            font-size: 1.3rem;
        }

        .rating {
            color: #FFB800;  /* Estrellas amarillas */
        }

        /* ENLACES LEGALES */
        .legal-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .legal-links a {
            color: #fefeff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: #b3a9a9;
        }

        /* COPYRIGHT */
        .copyright {
            text-align: center;
            color: #A0AEC0;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2C3E50;
        }

        .copyright p {
            margin-bottom: 0.3rem;
        }

        .copyright .company {
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
        }

        /* RESPONSIVE */
        @media screen and (max-width: 1024px) {
            .footer-top {
                grid-template-columns: 1fr 2fr 2fr;
                gap: 1.5rem;
            }
            .footer-logo {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 1rem;
                height: 5rem;
            }
        }

        @media screen and (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .legal-links {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }
            
            .security-badges {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }
            
            .social-icons {
                gap: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .footer {
                padding: 2rem 5% 1rem;
            }
            
            .location-card {
                flex-direction: column;
                text-align: center;
            }
            
            .badge {
                width: 100%;
                justify-content: center;
            }
        }