

/* ===== FOOTER ===== */
        footer {
            background: var(--cor-azul-black-900);
            color: var(--cor-branco);
            padding: 4rem 0 2rem;
            position: relative;
            border-top: 3px solid var(--cor-azul-black-300);
            overflow: hidden;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }

        .footer-area {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--footer-border-radius);
            padding: 0.5rem;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            transition: var(--footer-transition-speed) var(--footer-transition-timing);
        }

      .footer-title h3 {
    color: var(--cor-azul-vivo-300); /* Updated to a more visible color */
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Slightly thicker line */
    background: linear-gradient(90deg,
        transparent 0%,
        var(--cor-azul-vivo-300) 20%,
        var(--cor-Verde-what-padrao-500) 50%,
        var(--cor-azul-vivo-300) 80%,
        transparent 100%);
    background-size: 300% 100%;
    animation: titleShine 4s infinite ease-in-out;
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0.9);
    opacity: 0.8;
}

@keyframes titleShine {
    0% {
        background-position: 100% 50%;
        transform: scaleX(0.9);
    }
    15% {
        transform: scaleX(1);
    }
    50% {
        background-position: 0% 50%;
    }
    85% {
        transform: scaleX(1);
    }
    100% {
        background-position: 100% 50%;
        transform: scaleX(0.9);
    }
}

/* Hover effects */
.footer-title h3:hover::after {
    height: 5px;
    opacity: 1;
    animation-duration: 2s;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .footer-title h3 {
        font-size: 1.3rem;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .footer-title h3::after {
        height: 3px;
    }
}

        @keyframes titleShine {
            0% { background-position: 100% 0; }
            100% { background-position: -100% 0; }
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            flex: 1;
        }

        .footer-contact-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 8px;
            height: 60px;
            position: relative;
            overflow: hidden;
            transition: var(--footer-transition-speed) var(--footer-transition-timing);
           background: linear-gradient(135deg,
                var(--cor-azul-noturno-700) 0%,
                var(--cor-azul-vivo-300) 50%,
                var(--cor-azul-noturno-700) 100%);
            background-size: 400% 400%;
            animation: buttonFlow 6s infinite linear;
            border: 2px solid transparent;
            margin-bottom: 10px;
            color: var(--cor-branco);
            text-decoration: none;
        }

        @keyframes buttonFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.footer-whatsapp {
    background: linear-gradient(135deg,
        var(--cor-Verde-what-sombra-600) 0%,
        var(--cor-Verde-what-padrao-500) 50%,
        var(--cor-Verde-what-sombra-600) 100%);
    background-size: 200% 200%;
    animation: whatsappPulse 4s ease infinite;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
    border: 2px solid var(--cor-Verde-what--destaque-300);
}

.footer-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    filter: brightness(1.15);
    border-color: var(--cor-azul-claro-100);
}

@keyframes whatsappPulse {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        background-position: 0% 50%;
    }
}

        .footer-content p {
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-address-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

     .map-xx {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border: 1px solid var(--cor-cinza-borda-200);
    background: var(--cor-cinza-claro-100);
    transition: var(--transition-speed) var(--transition-timing);
}

.map-xx:hover {
    box-shadow: var(--shadow-lg);
}

        .map-xx iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 42, 108, 0.85);
            color: white;
            padding: 10px 15px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 10;
        }

        .address-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(248, 249, 250, 0.05));
            border-radius: var(--footer-border-radius);
            padding: 20px;
            box-shadow: var(--footer-shadow-md);
            border: 1px solid rgba(234, 234, 234, 0.1);
            color: var(--footer-text-light);
        }

        .address-title {
            color: #ffcc00;
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .address-details {
            list-style: none;
            margin: 15px 0;
        }

        .address-details li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(224, 228, 234, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .address-details li:last-child {
            border-bottom: none;
        }

        .address-details li i {
            color: #ffcc00;
            width: 20px;
            text-align: center;
        }

        .address-details li strong {
            min-width: 60px;
            display: inline-block;
            color: #ffcc00;
            font-weight: 600;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 248, 225, 0.1), rgba(255, 236, 179, 0.1));
            color: #ffcc00;
            padding: 12px;
            border-radius: 8px;
            margin-top: 15px;
            border-left: 3px solid #ff9800;
            font-size: 0.9rem;
            display: flex;
            gap: 10px;
        }

        /* CORREÇÃO: Contador para listas */
        .rolagem {
            counter-reset: item-counter;
            max-height: 200px;
            overflow-y: auto;
            padding-right: 12px;
            scroll-behavior: smooth;
            border-radius: 8px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
            flex: 1;
        }

        .rolagem ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rolagem li {
            counter-increment: item-counter;
            padding: 0 15px 0 50px;
            margin: 8px 0;
            display: flex;
            align-items: center;
            position: relative;
            line-height: 1.4;
            transition: var(--footer-transition-speed) var(--footer-transition-timing);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-height: 50px;
        }

        .rolagem li:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
            border-color: var(--cor-azul-vivo-300);
        }

        .rolagem li::before {
            content: counter(item-counter);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: var(--cor-laranja-destaque-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9em;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Scrollbar melhorada */
        .rolagem::-webkit-scrollbar {
            width: 8px;
        }

        .rolagem::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        .rolagem::-webkit-scrollbar-thumb {
            background: var(--cor-azul-vivo-300);
            border-radius: 4px;
            border: 2px solid var(--cor-azul-escuro-600);
        }

        .rolagem::-webkit-scrollbar-thumb:hover {
            background: var(--cor-laranja-destaque-500secondary-900);
        }

        /* Controles de visibilidade */
        .footer-rolagem-01 { max-height: 350px; }
        .footer-rolagem-02 { max-height: 500px; }
        .footer-rolagem-03 { max-height: 250px; }
        .footer-rolagem-04 { max-height: 130px; }
        .footer-rolagem-05 { max-height: 130px; }

        /* Responsividade */
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-area {
                padding: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .map-overlay-text {
                font-size: 12px;
            }

            .footer-title h3 {
                font-size: 1.3rem;
            }

            .footer-contact-btn {
                height: auto;
                padding: 0.8rem;
            }

            /* Melhorias para dispositivos móveis */
            .rolagem {
                max-height: 180px;
            }
        }

        /* Melhoria de performance */
        .footer-title h3::after,
        .footer-contact-btn {
            will-change: transform, background-position;
        }

footer .rolagem ul li a {
  color: #ffffff; /* branco */
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  list-style: none;
  padding: 6px 0;
}
