/* Remove o botão do WhatsApp existente */
.whatsapp-float {
    display: none;
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}



@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.close-modal {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}


.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.option-icon.whatsapp {
    background: #25d366;
}

.option-info {
    flex: 1;
}

.option-info h6 {
    margin: 0 0 4px 0;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.option-info p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

.status-online {
    color: #28a745;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-online i {
    font-size: 8px;
}


.header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info i {
    font-size: 18px;
}

.header-info span {
    font-weight: 600;
    font-size: 14px;
}

.agent-status {
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
}

.header-actions {
    display: flex;
    gap: 5px;
}

.btn-minimize,
.btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.3s ease;
}

.btn-minimize:hover,
.btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
}


#chat-widget-input {
    flex: 1;
    border: 1px solid #e1e5e9;
    border-radius: 25px;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

#chat-widget-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

#chat-widget-input:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

#chat-widget-send {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #667eea;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

#chat-widget-send:hover:not(:disabled) {
    background: #5a6fd8;
    transform: scale(1.05);
}

#chat-widget-send:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Mensagens */
.welcome-message {
    text-align: center;
    padding: 20px 0;
}

.system-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    color: #856404;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.system-message i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    color: #ffc107;
}

.system-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.admin-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message .message-content {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.admin-message .message-content {
    background: white;
    color: #333;
    border: 1px solid #e1e5e9;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

.user-message .message-time {
    text-align: right;
}



/* Animações adicionais */
@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -8px, 0);
    }

    70% {
        transform: translate3d(0, -4px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}


/* Efeito de loading */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: white;
    border-radius: 18px;
    border: 1px solid #e1e5e9;
    width: fit-content;
    margin-bottom: 10px;
}

.typing-indicator span {
    font-size: 11px;
    color: #666;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots div {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots div:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}





/* Estilo para o footer principal */
.footer {
    position: relative;
    min-height: 100vh;
    z-index: 1;
    /* Garante que o footer ocupe pelo menos a tela toda */
}

.footer-content {
    position: relative;
    z-index: 2;
    /* Fica na frente do copyright */
    background-color: #1a1a1a;
    /* Mesmo fundo do footer */
    padding-bottom: 80px;
    /* Espaço para o copyright não ficar muito colado */
}

.footer-main {
    padding-bottom: 60px;
    /* Deve ser igual ou maior que a altura do copyright-area */
}

.sticky-copyright {
    position: sticky;
    bottom: 0;
    background: #0d0d0d;
    padding: 15px 0;
    z-index: 1;
    /* z-index positivo */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}


/* Ajuste para o conteúdo principal não ficar escondido atrás do footer fixo */
body {
    margin-bottom: 60px;
    /* Deve ser igual ou maior que a altura do copyright-area */
}


.fixed-copyright {
    padding: 10px 0;
}

.copyright-text,
.security-seals {
    text-align: center !important;
}

.security-seals img {
    margin: 5px;
}


.footer.ecommerce-style {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 40px;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #EE0B16;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #EE0B16;
    padding-left: 5px;
}

.contact-info p {
    color: #b3b3b3;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #EE0B16;
    width: 20px;
    text-align: center;
}

.social-media {
    margin-top: 20px;
}

.social-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333333;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #EE0B16;
    transform: translateY(-3px);
}

.newsletter-text {
    color: #b3b3b3;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-btn {
    width: 100%;
    padding: 10px;
    background: #EE0B16;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #EE0B16;
}

.payment-methods {
    margin-top: 20px;
}

.payment-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.copyright-area {
    background: #0d0d0d;
    padding: 80px 0;
}

.copyright-text {
    color: #b3b3b3;
    margin: 0;
}

.copyright-text a {
    color: #EE0B16;
    text-decoration: none;
}

.security-seal {
    margin-left: 10px;
    height: 50px;
}


/* Chat Widget Styles - Versão Corrigida */
.chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

/* Botão Principal */
.chat-widget-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #872a2a 0%, #ff0303 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.chat-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Modal de Escolha */
.chat-modal {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-modal-header h6 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.close-modal {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.chat-options {
    padding: 15px;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
}

.chat-option:last-child {
    margin-bottom: 0;
}

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.option-icon.whatsapp {
    background: #25d366;
}

.option-info {
    flex: 1;
}

.option-info h6 {
    margin: 0 0 4px 0;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.option-info p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

.status-online {
    color: #28a745;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-online i {
    font-size: 8px;
}

.chat-modal-footer {
    padding: 10px 15px;
    border-top: 1px solid #e1e5e9;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.chat-modal-footer small {
    color: #888;
    font-size: 11px;
}

/* Janela do Chat */
.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.chat-window-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info i {
    font-size: 18px;
}

.header-info span {
    font-weight: 600;
    font-size: 14px;
}

.agent-status {
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
}

.header-actions {
    display: flex;
    gap: 5px;
}

.btn-minimize,
.btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.3s ease;
}

.btn-minimize:hover,
.btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-window-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-window-footer {
    padding: 15px;
    border-top: 1px solid #e1e5e9;
    background: white;
    border-radius: 0 0 15px 15px;
}

.chat-input-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chat-widget-input {
    flex: 1;
    border: 1px solid #e1e5e9;
    border-radius: 25px;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

#chat-widget-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

#chat-widget-input:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

#chat-widget-send {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #667eea;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

#chat-widget-send:hover:not(:disabled) {
    background: #5a6fd8;
    transform: scale(1.05);
}

#chat-widget-send:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}


@media (max-width: 1200px) {

    .chat-modal-header h6,
    .option-info h6,
    .close-modal,
    .message-text,
    #chat-widget-input {
        font-size: 2rem;
    }

    .option-info p,
    .status-online,
    .chat-modal-footer small,
    .header-info span,
    .agent-status,
    .message-time {
        font-size: 1.5rem;
    }

    #chat-widget-send {
        width: 90px;
        height: 90px;
        font-size: 1.5rem;
    }

    .btn-minimize,
    .btn-close {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    /* Container do botão */
    .chat-widget-container {
        bottom: 80px !important;
        right: 20px !important;
    }

    /* Botão principal maior */
    .chat-widget-btn {
        width: 120px !important;
        height: 120px !important;
        font-size: 48px !important;
    }

    /* Modal grande */
    .chat-modal {
        width: 90vw !important;
        max-width: 450px !important;
        bottom: 170px !important;
        right: 20px !important;
        border-radius: 20px !important;
    }

    /* Janela do chat grande */
    .chat-window {
        width: 90vw !important;
        max-width: 900px !important;
        height: 70vh !important;
        min-height: 550px !important;
        bottom: 170px !important;
        right: 20px !important;
        border-radius: 20px !important;
    }

    /* ===========================
       FOOTER - MOBILE STYLES
       =========================== */

    /* 🔹 FOOTER PRINCIPAL */
    .footer.ecommerce-style {
        padding-top: 40px !important;
        background-color: #1a1a1a !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .footer-content {
        padding-bottom: 0 !important;
        /* Removido padding-bottom */
    }

    .footer-main {
        padding-bottom: 0 !important;
        /* Removido padding-bottom */
    }

    /* 🔹 COPYRIGHT AREA - AJUSTADA */
    .copyright-area {
        background: #0d0d0d !important;
        padding: 30px 0 !important;
        /* Padding reduzido */
        position: relative !important;
        z-index: 2 !important;
        border-top: 3px solid #333 !important;
    }

    .sticky-copyright {
        position: static !important;
        /* Remove sticky/fixed */
        background: #0d0d0d !important;
        padding: 20px 0 !important;
        z-index: 2 !important;
        /* Z-index mais baixo que o chat */
        box-shadow: none !important;
        /* Remove sombra para não interferir */
        width: 100% !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Ajuste do body margin */
    body {
        margin-bottom: 0 !important;
        /* Remove margin-bottom */
    }

    .fixed-copyright {
        padding: 20px 0 !important;
    }

    .copyright-text,
    .security-seals {
        text-align: center !important;
        width: 100% !important;
    }

    .copyright-text {
        font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
        color: #b3b3b3 !important;
        margin-bottom: 15px !important;
        line-height: 1.6 !important;
    }

    .copyright-text a {
        color: #EE0B16 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }

    .security-seals {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .security-seal {
        height: 45px !important;
        margin: 5px !important;
        filter: grayscale(100%) brightness(120%) !important;
        transition: filter 0.3s ease !important;
    }

    .security-seal:hover {
        filter: grayscale(0%) brightness(100%) !important;
    }

    /* 🔹 FOOTER COLUMNS */
    .footer .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        margin: 0 !important;
    }

    .footer .col-lg-3,
    .footer .col-md-6,
    .footer .col-12 {
        width: 100% !important;
        padding: 0 20px !important;
        margin-bottom: 30px !important;
    }

    .footer-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
        margin-bottom: 25px !important;
        padding-bottom: 15px !important;
        color: white !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    .footer-title:after {
        width: 60px !important;
        height: 3px !important;
        background: #EE0B16 !important;
    }

    .footer-links {
        list-style: none !important;
        padding: 0 !important;
    }

    .footer-links li {
        margin-bottom: 15px !important;
    }

    .footer-links a {
        color: #b3b3b3 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-size: clamp(1.5rem, 4.2vw, 1.9rem) !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .footer-links a:hover {
        color: #EE0B16 !important;
        padding-left: 10px !important;
    }

    .footer-links a:before {
        content: "›" !important;
        color: #EE0B16 !important;
        font-weight: bold !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }

    .footer-links a:hover:before {
        opacity: 1 !important;
    }

    /* 🔹 CONTACT INFO */
    .contact-info p {
        color: #b3b3b3 !important;
        margin-bottom: 20px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        font-size: clamp(1.5rem, 4.2vw, 1.9rem) !important;
        line-height: 1.6 !important;
    }

    .contact-info i {
        color: #EE0B16 !important;
        font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
        margin-top: 3px !important;
        flex-shrink: 0 !important;
        width: 30px !important;
        text-align: center !important;
    }

    /* 🔹 SOCIAL MEDIA */
    .social-media {
        margin-top: 30px !important;
    }

    .social-title {
        color: white !important;
        font-size: clamp(1.6rem, 4.5vw, 2rem) !important;
        margin-bottom: 20px !important;
        font-weight: 600 !important;
    }

    .social-icons {
        display: flex !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }

    .social-icons a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 60px !important;
        height: 60px !important;
        background: #333333 !important;
        color: white !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
        font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
    }

    .social-icons a:hover {
        background: #EE0B16 !important;
        transform: translateY(-5px) !important;
        box-shadow: 0 6px 20px rgba(238, 11, 22, 0.3) !important;
    }

    /* 🔹 NEWSLETTER */
    .newsletter-text {
        color: #b3b3b3 !important;
        margin-bottom: 20px !important;
        font-size: clamp(1.5rem, 4.2vw, 1.9rem) !important;
        line-height: 1.6 !important;
    }

    .newsletter-form input {
        width: 100% !important;
        padding: 20px !important;
        border: 3px solid #333 !important;
        border-radius: 15px !important;
        margin-bottom: 15px !important;
        font-size: clamp(1.5rem, 4.2vw, 1.9rem) !important;
        background: #2a2a2a !important;
        color: white !important;
        outline: none !important;
        transition: border-color 0.3s ease !important;
    }

    .newsletter-form input:focus {
        border-color: #EE0B16 !important;
        box-shadow: 0 0 0 3px rgba(238, 11, 22, 0.1) !important;
    }

    .newsletter-btn {
        width: 100% !important;
        padding: 20px !important;
        background: linear-gradient(135deg, #EE0B16 0%, #c50913 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 15px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        font-size: clamp(1.6rem, 4.5vw, 2rem) !important;
        min-height: 70px !important;
        box-shadow: 0 6px 20px rgba(238, 11, 22, 0.3) !important;
    }

    .newsletter-btn:hover {
        background: linear-gradient(135deg, #c50913 0%, #EE0B16 100%) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 25px rgba(238, 11, 22, 0.4) !important;
    }

    /* 🔹 PAYMENT METHODS */
    .payment-methods {
        margin-top: 30px !important;
    }

    .payment-title {
        color: white !important;
        font-size: clamp(1.6rem, 4.5vw, 2rem) !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
    }

    .payment-icons {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
    }

    .payment-icons img {
        height: 35px !important;
        filter: grayscale(100%) brightness(150%) !important;
        transition: filter 0.3s ease !important;
        border-radius: 5px !important;
        padding: 5px !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .payment-icons img:hover {
        filter: grayscale(0%) brightness(100%) !important;
    }

    
}

/* ===========================
   MOBILE PEQUENO (max-width: 768px)
   =========================== */

@media (max-width: 768px) {


    .copyright-area {
        padding: 25px 0 !important;
    }
}

/* ===========================
   MOBILE MUITO PEQUENO (max-width: 576px)
   =========================== */

@media (max-width: 576px) {

    .copyright-area {
        padding: 20px 0 !important;
    }
}

/* ===========================
   DESKTOP (min-width: 1201px) - RESET
   =========================== */

@media (min-width: 1201px) {


    /* Footer Reset */
    .sticky-copyright {
        position: sticky !important;
        padding: 15px 0 !important;
    }

    .copyright-area {
        padding: 80px 0 !important;
    }

    body {
        margin-bottom: 0 !important;
    }
}