/* ================================================================
    AVISOS DE PRIVACIDAD
 ================================================================= */
.container-fluid {
    background-color: white;
    padding: 0;
}

.container {
    padding: 0;
}

.row {
    margin: 0;
    padding: 0;
}

.clearfix {
    overflow: auto;
}

.table-box {
    padding: 30px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.avisos-header {
    background-image: linear-gradient(
            rgba(91, 89, 219, 0.8),
            rgba(91, 89, 219, 0.8)
    ), url('../img/avisos-privacidad/chat-privacy.jpg');
    background-size: cover;
    background-position: center 65%;
    padding: 4rem 0;
    text-align: center;
    min-height: 35vh;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avisos-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.avisos-header__title {
    font-family: "HK Grotesk", sans-serif;
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
}

.privacidad-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.privacidad-card-header {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
}
.privacidad-card-body {
    padding: 15px;
}
.documento-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.documento-item:last-child {
    border-bottom: none;
}
.documento-info {
    flex: 1;
}
.documento-accion {
    margin-left: 15px;
}
@media (min-width: 768px) {
    .d-mobile-only {
        display: none !important;
    }
}
@media (max-width: 767.98px) {
    .d-desktop-only {
        display: none !important;
    }
}