body {
    background: var(--negro);
    color: var(--blanco);
}
main {
    border-bottom: 1px solid var(--blanco);
}

.navbar {
    position: sticky !important;
    top: 0;
    width: 100%;
    z-index: 1030;
    border-bottom: 1px solid var(--blanco);
}

.navbar-content {
    padding: 1rem 0;
}

.politicas {
    max-width: 900px;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #e0e0e0;
    background: radial-gradient(
        circle at top left,
        rgba(255, 255, 255, .15)
    );
    padding: 3rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(6px);
}

.politicas h2 {
    color: var(--naranja);
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(205, 164, 52, 0.3);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.politicas h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.politicas h3::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 4px;
    height: 60%;
    background: var(--naranja);
    transform: translateY(-50%);
    border-radius: 2px;
}

.politicas p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.politicas ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.politicas ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.politicas ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--naranja);
    font-weight: bold;
}

.politicas a {
    color: var(--naranja);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.politicas a:hover {
    color: #fff;
}

.politicas {
    opacity: 0;
    transform: translateY(10px);
    animation: aparecer 0.8s ease forwards;
}

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

@media (max-width: 768px) {
    .politicas {
        padding: 2rem 1.2rem;
    }
    .politicas h2 {
        font-size: 1.8rem;
    }
}
