/* Estilos para LGPD Pop-up */
.lgpd-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 9999;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.lgpd-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.lgpd-icon {
    background: #D8143C;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.lgpd-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.lgpd-body {
    margin-bottom: 20px;
    line-height: 1.6;
}

.lgpd-text {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.lgpd-data-list {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #D8143C;
}

.lgpd-data-list h5 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.lgpd-data-list ul {
    margin: 0;
    padding-left: 20px;
    color: #e0e0e0;
    font-size: 13px;
}

.lgpd-data-list li {
    margin-bottom: 5px;
}

.lgpd-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.lgpd-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lgpd-link {
    color: #D8143C;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lgpd-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.lgpd-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lgpd-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.lgpd-btn-accept {
    background: #D8143C;
    color: white;
}

.lgpd-btn-accept:hover {
    background: #b8112f;
    color: white;
    text-decoration: none;
}

.lgpd-btn-close {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.lgpd-btn-close:hover {
    background: #666;
    color: white;
}

.lgpd-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lgpd-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .lgpd-content {
        padding: 15px;
    }
    
    .lgpd-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .lgpd-title {
        font-size: 18px;
    }
    
    .lgpd-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .lgpd-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .lgpd-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .lgpd-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .lgpd-data-list {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .lgpd-text {
        font-size: 13px;
    }
    
    .lgpd-data-list ul {
        font-size: 12px;
    }
    
    .lgpd-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}