/* Modal LGPD - Termos de Privacidade */
#lgpd-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 420px;
    width: calc(100% - 40px);
    background: #f5f5f5;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.5s ease-out;
}

#lgpd-modal.hidden {
    display: none;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lgpd-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lgpd-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #c8f4d8 0%, #a8e6c1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lgpd-icon svg {
    width: 28px;
    height: 28px;
    color: #2d5a3d;
}

.lgpd-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
}

.lgpd-content {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lgpd-content a {
    color: #16a34a;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.lgpd-content a:hover {
    color: #15803d;
}

.lgpd-button {
    width: 100%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.lgpd-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.4);
}

.lgpd-button:active {
    transform: translateY(0);
}

.lgpd-button svg {
    width: 20px;
    height: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    #lgpd-modal {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .lgpd-icon {
        width: 48px;
        height: 48px;
    }

    .lgpd-icon svg {
        width: 24px;
        height: 24px;
    }

    .lgpd-title {
        font-size: 18px;
    }

    .lgpd-content {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .lgpd-button {
        padding: 13px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    #lgpd-modal {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .lgpd-header {
        gap: 10px;
    }

    .lgpd-icon {
        width: 44px;
        height: 44px;
    }

    .lgpd-icon svg {
        width: 22px;
        height: 22px;
    }

    .lgpd-title {
        font-size: 17px;
    }

    .lgpd-content {
        font-size: 13px;
        line-height: 1.5;
    }

    .lgpd-button {
        padding: 12px 18px;
        font-size: 14px;
    }
}
