/* ============================================
   FOOTER PREMIUM - SOLNER
   Rodapé Profissional + WhatsApp Float

   IMPORTANTE: Estilos com alta especificidade
   para evitar conflito com CSS Webflow antigo
============================================ */


/* ============================================
   RESET/PROTEÇÃO CONTRA CSS WEBFLOW ANTIGO
   Garante que o footer novo renderize igual
   em TODAS as páginas, independente de qual
   CSS de página está carregado
============================================ */
footer.footer-main,
footer.footer-main *,
footer.footer-main *::before,
footer.footer-main *::after {
    box-sizing: border-box;
}

footer.footer-main .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: block;
    padding: 0;
    float: none;
}

footer.footer-main a {
    text-decoration: none;
    color: inherit;
    background: none;
}

footer.footer-main img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
    border: none;
}

footer.footer-main ul,
footer.footer-main ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer-main h4 {
    margin-top: 0;
    line-height: 1.4;
}

footer.footer-main p {
    line-height: 1.6;
}

/* ============================================
   FOOTER PRINCIPAL
============================================ */
.footer-main {
    background: var(--gray-900);
    padding: 80px 0 0;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    position: relative;
    z-index: 1;
}

.footer-main .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-800);
    margin: 0;
    padding-top: 0;
}

/* Coluna Logo */
.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 160px;
    height: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

/* Horário Minimalista */
.footer-horario {
    margin-top: 8px;
}

.footer-horario p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    margin: 4px 0;
}

/* Mapa Incorporado */
.footer-mapa {
    margin-top: 16px;
}

.footer-mapa iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 1px solid var(--gray-800);
    filter: grayscale(20%) brightness(0.9);
    transition: var(--transition-base);
}

.footer-mapa iframe:hover {
    filter: grayscale(0%) brightness(1);
}

.footer-endereco-texto {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Colunas de Links - TÍTULOS BRANCOS */
.footer-main .footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 0;
    font-family: var(--font-main);
    line-height: 1.4;
    text-align: left;
}

.footer-main .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-main .footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-base);
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-main);
}

.footer-main .footer-links li a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px);
    text-decoration: none;
}

/* Links com Ícones (Soluções) - ÍCONES AMARELOS */
.footer-main .footer-links-icons li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-main .footer-link-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(64%) sepia(92%) saturate(1844%) hue-rotate(360deg) brightness(103%) contrast(102%);
    transition: var(--transition-base);
    object-fit: contain;
}

.footer-main .footer-links-icons li a:hover {
    color: var(--accent-yellow);
}

.footer-main .footer-links-icons li a:hover .footer-link-icon {
    /* ícone não muda de cor no hover — apenas o texto muda para amarelo */
    transform: scale(1.1);
}

/* Coluna Contato - TÍTULOS AMARELOS */
.footer-main .footer-contact-item {
    margin-bottom: 20px;
}

.footer-main .contact-info strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-yellow);
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 15px;
    font-family: var(--font-main);
}

.footer-main .contact-icon-inline {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(64%) sepia(92%) saturate(1844%) hue-rotate(360deg) brightness(103%) contrast(102%);
    object-fit: contain;
}

.footer-main .contact-info p {
    margin: 0;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    font-family: var(--font-main);
}

.footer-main .contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
    background: none;
    border: none;
}

.footer-main .contact-info a:hover {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* Redes Sociais */
.footer-main .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-main .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid var(--gray-700);
    padding: 0;
}

.footer-main .social-link:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 182, 1, 0.4);
}

.footer-main .social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(70%);
    transition: var(--transition-base);
    object-fit: contain;
}

.footer-main .social-link:hover img {
    filter: brightness(0) invert(1);
}

/* ============================================
   FOOTER BOTTOM
============================================ */
.footer-main .footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-main .footer-copyright {
    font-size: 14px;
    color: var(--white);
    margin: 0;
    font-family: var(--font-main);
}

.footer-main .footer-copyright a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
}

.footer-main .footer-copyright a:hover {
    text-decoration: underline;
}

/* Assinatura do Dev - AMARELO */
.footer-main .footer-dev {
    font-size: 13px;
    color: var(--white);
    margin: 0;
    font-family: var(--font-main);
}

.footer-main .footer-dev a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
}

.footer-main .footer-dev a:hover {
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOAT - VERDE OFICIAL
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Animação de Pulso Verde */
@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Tooltip Hover */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--gray-900);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
    .footer-main .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 0;
    }

    .footer-main .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .footer-main .footer-col-logo {
        align-items: center;
        gap: 16px;
    }

    .footer-main .footer-logo {
        margin: 0 auto;
        width: 140px;
    }

    .footer-main .footer-horario {
        margin-top: 12px;
    }

    .footer-main .footer-horario p {
        font-size: 17px;
        margin: 4px 0;
        color: var(--white);
    }

    .footer-main .footer-mapa {
        margin-top: 16px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-main .footer-mapa iframe {
        height: 180px;
    }

    .footer-main .footer-endereco-texto {
        font-size: 16px;
    }

    .footer-main .footer-col h4 {
        font-size: 18px;
        margin: 0 0 20px;
        letter-spacing: 0.8px;
        text-align: center;
    }

    .footer-main .footer-links {
        align-items: center;
        gap: 12px;
    }

    .footer-main .footer-links li a {
        font-size: 17px;
    }

    .footer-main .footer-links li a:hover {
        transform: none;
    }

    .footer-main .footer-links-icons li a {
        justify-content: center;
    }

    .footer-main .footer-link-icon {
        width: 18px;
        height: 18px;
        filter: brightness(0) saturate(100%) invert(64%) sepia(92%) saturate(1844%) hue-rotate(360deg) brightness(103%) contrast(102%);
    }

    .footer-main .footer-contact-item {
        margin-bottom: 18px;
    }

    .footer-main .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer-main .contact-info strong {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 17px;
        margin-bottom: 2px;
    }

    .footer-main .contact-icon-inline {
        width: 15px;
        height: 15px;
        filter: brightness(0) saturate(100%) invert(64%) sepia(92%) saturate(1844%) hue-rotate(360deg) brightness(103%) contrast(102%);
    }

    .footer-main .contact-info p {
        padding-left: 0;
        font-size: 17px;
        text-align: center;
    }

    .footer-main .footer-social {
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }

    .footer-main .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-main .social-link img {
        width: 20px;
        height: 20px;
    }

    .footer-main .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        gap: 10px;
    }

    .footer-main .footer-copyright {
        font-size: 16px;
    }

    .footer-main .footer-dev {
        font-size: 15px;
        margin-top: 8px;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }

    .whatsapp-btn img {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        right: 70px;
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 0;
    }

    .footer-main .footer-top {
        gap: 35px;
    }

    .footer-main .footer-col h4 {
        font-size: 17px;
        margin: 0 0 16px;
    }

    .footer-main .footer-links {
        gap: 10px;
    }

    .footer-main .footer-links li a {
        font-size: 16px;
    }

    .footer-main .footer-link-icon {
        width: 16px;
        height: 16px;
    }

    .footer-main .contact-info strong {
        font-size: 16px;
    }

    .footer-main .contact-icon-inline {
        width: 14px;
        height: 14px;
    }

    .footer-main .contact-info p {
        font-size: 16px;
    }

    .footer-main .footer-mapa iframe {
        height: 160px;
    }

    .footer-main .footer-endereco-texto {
        font-size: 15px;
    }

    .footer-main .footer-dev {
        font-size: 14px;
    }

    .footer-main .footer-copyright {
        font-size: 15px;
    }

    /* WhatsApp Float Mobile Small */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn img {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   CTA GLOBAL - "PREFERE FALAR DIRETO COM A GENTE?"
   Aparece em todas as páginas acima do rodapé
============================================ */
.cta-direto-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-direto-section .cta-direto-inner {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    background: var(--gray-900);
}

.cta-direto-section .cta-direto-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-orcamento.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-direto-section .cta-direto-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.cta-direto-section .cta-direto-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

.cta-direto-section .cta-direto-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 8px 0;
    font-family: var(--font-main);
    line-height: 1.3;
}

.cta-direto-section .cta-direto-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: var(--font-main);
}

.cta-direto-section .cta-direto-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 3;
}

.cta-direto-section .btn-direto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-direto-section .btn-direto::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-direto-section .btn-direto:hover::before { left: 100%; }

.cta-direto-section .btn-direto:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 88, 42, 0.4);
}

.cta-direto-section .btn-direto-primary {
    background: #dc582a;
    box-shadow: 0 4px 12px rgba(220, 88, 42, 0.3);
}

.cta-direto-section .btn-direto-outline {
    background: transparent;
    border: 2px solid var(--accent-orange);
}

.cta-direto-section .btn-direto-outline:hover {
    background: var(--accent-orange);
}

.cta-direto-section .btn-direto-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .cta-direto-section {
        padding: 50px 0;
    }

    .cta-direto-section .cta-direto-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .cta-direto-section .cta-direto-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-direto-section .btn-direto {
        width: 100%;
    }

    .cta-direto-section .cta-direto-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .cta-direto-section .cta-direto-inner {
        padding: 28px 20px;
    }
}

/* ============================================
   BANNER LGPD — COOKIE CONSENT
============================================ */

.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.lgpd-banner.lgpd-visible {
    transform: translateY(0);
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lgpd-texto {
    flex: 1;
}

.lgpd-texto strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lgpd-texto p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.lgpd-texto p a {
    color: #dc582a;
    text-decoration: underline;
}

.lgpd-texto p a:hover {
    color: #FFB600;
}

.lgpd-acoes {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Botão Aceitar */
.btn-lgpd-aceitar {
    background: linear-gradient(135deg, #dc582a 0%, #f06030 50%, #dc582a 100%);
    background-size: 200% 100%;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(220, 88, 42, 0.4);
}

.btn-lgpd-aceitar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 88, 42, 0.55);
    background-position: 100% 0;
}

/* Botão Recusar */
.btn-lgpd-recusar {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn-lgpd-recusar:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Botão Gerenciar */
.btn-lgpd-gerenciar {
    background: transparent;
    border: 1px solid rgba(220, 88, 42, 0.4);
    color: #dc582a;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-lgpd-gerenciar:hover {
    border-color: #dc582a;
    background: rgba(220, 88, 42, 0.1);
    color: #f06030;
}

/* ============================================
   MODAL GERENCIAR COOKIES
============================================ */
.lgpd-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lgpd-modal-overlay[style*="flex"] {
    display: flex !important;
}

.lgpd-modal {
    background: #0d1a3a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lgpd-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lgpd-modal-header h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.lgpd-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.lgpd-modal-close:hover {
    color: #fff;
}

.lgpd-modal-body {
    padding: 8px 0;
}

.lgpd-cookie-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lgpd-cookie-item:last-child {
    border-bottom: none;
}

.lgpd-cookie-info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.lgpd-cookie-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.lgpd-toggle-disabled .lgpd-toggle-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

/* Toggle Switch */
.lgpd-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.lgpd-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.lgpd-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    transition: background 0.3s ease;
}

.lgpd-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.lgpd-toggle-switch input:checked + .lgpd-slider {
    background: #dc582a;
}

.lgpd-toggle-switch input:checked + .lgpd-slider::before {
    transform: translateX(20px);
}

.lgpd-modal-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
}

.btn-lgpd-salvar {
    background: linear-gradient(135deg, #dc582a 0%, #f06030 50%, #dc582a 100%);
    background-size: 200% 100%;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(220, 88, 42, 0.4);
}

.btn-lgpd-salvar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 88, 42, 0.55);
    background-position: 100% 0;
}

@media (max-width: 768px) {
    .lgpd-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 16px;
    }

    .lgpd-acoes {
        width: 100%;
    }

    .btn-lgpd-aceitar,
    .btn-lgpd-recusar,
    .btn-lgpd-gerenciar {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lgpd-acoes {
        flex-direction: column;
    }

    .lgpd-modal {
        max-width: 100%;
    }
}