/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
    padding: 20px;
}

  /* Encabezado */
.header-terminos {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px 20px;
    background: linear-gradient(120deg, #002d40, #001820);
    border-radius: none;
    box-shadow:
        0 0 12px rgba(0, 179, 230, 0.2),
        inset 0 0 6px rgba(0, 179, 230, 0.1);
}

.header-terminos h1 {
    font-size: 2.4rem;
    color: #00b3e6;
    text-shadow: 0 0 8px rgba(0, 179, 230, 0.3);
    margin-bottom: 10px;
}

.fecha-actualizacion {
    font-size: 0.9rem;
    color: #88cfe6;
}

  /* Contenido principal */
main.contenido-terminos {
    max-width: 850px;
    margin: 0 auto;
    padding: 10px 20px 40px;
    background: #0a0a0a;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(0, 179, 230, 0.1);
}

section {
    margin-bottom: 35px;
    text-align: left;
}

h2 {
    font-size: 1.5rem;
    color: rgba(0,179,230,1);
    margin-bottom: 10px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #00b3e6;
    margin-top: 6px;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(0, 179, 230, 0.3);
}

p, li {
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 10px;
}

  /* Lista con íconos */
ul {
    padding-left: 20px;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 24px;
}

ul li::before {
    content: '🔹';
    position: absolute;
    left: 0;
    color: #00ffcc;
}

  /* Enlaces */
a {
    color: #00b3e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00ffcc;
}

  /* Footer */
.footer-terminos {
    text-align: center;
    margin-top: 40px;
    padding: 20px 10px;
    font-size: 0.8rem;
    color: #88cfe6;
    background-color: #002d40;
    border-top: 1px solid rgba(0, 179, 230, 0.1);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main.contenido-terminos {
    flex: 1; /* Esto empuja el footer al fondo si hay poco contenido */
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-terminos {
    width: 100%;
    background-color: #002d40;
    color: #e0f7ff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.8rem;
    user-select: none;
    border-top: 2px solid rgba(0, 179, 230, 0.3);
    box-shadow: 0 -2px 8px rgba(0, 179, 230, 0.15);
}  

@media (max-width: 600px) {
h2 {
    font-size: 1.3rem;
}

.header-terminos h1 {
    font-size: 1.8rem;
}

p, li {
    font-size: 0.95rem;
}
}


