/* ================================
   AVISO DE PRIVACIDAD - ESTILO MODERNO
================================ */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', system-ui, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.aviso-card {
    background: #ffffff;
    width: 90%;
    max-width: 850px;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.6s ease;
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Título */
.aviso-card h1 {
    text-align: center;
    font-size: 34px;
    color: #0f2027;
}

/* Secciones */
.aviso-card section {
    margin-bottom: 30px;
}

/* Subtítulos */
.aviso-card h3 {
    font-size: 18px;
    color: #2c5364;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texto */
.aviso-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #000000;
    text-align: justify;
}

/* Listas */
.aviso-card ul {
    padding-left: 18px;
}

.aviso-card ul li ol{
    margin-bottom: 6px;
    font-size: 15px;
}

/* Enlaces */
.aviso-card a {
    color: #2c5364;
    font-weight: 600;
    text-decoration: none;
}

.aviso-card a:hover {
    text-decoration: underline;
}

/* Footer */
.aviso-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.gallery-header .icon {
  width: 64px;
  height: 64px;
  background: #f1e6ff;
  color: #7c3aed;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 28px;
}

.gallery-header h2 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.gallery-header p {
  color: #6b7280;
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto;
}

#aviso-icon {
    font-size: 50px;
}

.section-title{
    display: flex;
    align-items: center;
    gap: 14px;
}

.fecha{
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-bg{
    width: 30px;
    height: 30px;
    background: #f1e9ff; /* lila claro */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg i{
    font-size: 26px;
    color: #7b2cff; /* morado */
}

.aviso-intro{
    background-color: #F0F7FF;
    padding: 5px;
    border-radius: 16px; 
    border: 2px solid #BFDBFE;
    justify-content: justify;
    text-align: justify;  
}
.aviso-intro p{
    color: #2563EB;
    font-size: 12px;
    justify-content: justify;
    text-align: justify;
}

.aviso-cancelacion{
    background-color: #FFF3CD;
    padding: 14px;
    border-radius: 16px; 
    border: 2px solid #FFB703;
    text-align: justify;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.cancelacion{
    font-size: 14px;
    color: #7F1D1D;              /* rojo oscuro elegante */
    text-align: justify;
}


h4{
    font-size: 14px;
    color: #1D4ED8;
    justify-content: justify;
    text-align: justify;
}

.btn-primary {
  margin-top: 15px;
  background: white;
  color: #2563eb;
  border: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
}



button:hover{
  background: #c1c6d8;
} 

/* CTA */
.cta {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f5dc, #c19a6b);
  color: white;
  border-radius: 16px;
}

.cta p{
    justify-content: center;
    align-items: center;
}


/* Responsive */
@media (max-width: 600px) {
    .aviso-card {
        padding: 30px;
    }

    .aviso-card h1 {
        font-size: 26px;
    }
}


