/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;

    /* Forzamos que el body ocupe el 100% de la ventana del navegador */
    min-height: 100vh;
    width: 100%;

    /* Ajuste de fondo */
    background-color: #ffffff; 
    background-image: url('images/gradientbottom.jpg');
    background-repeat: repeat-x;
    background-position: bottom;
    background-attachment: fixed;
    
    /* Flexbox para centrar contenido */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-container {
    max-width: 500px;
    width: 100%;
}

.logo {
    max-width: 34%;
    height: auto;
    margin-bottom: 1.5rem;
}

pb-text {
    font-weight:normal;
    font-size: 0.95rem;
    margin: 5px 0; /* Espacio mínimo entre los puntos y el texto */
    color: #6e8091;
}

/* Estilo de divisores con margen mínimo */
.divider {
    color: #999;
    letter-spacing: 2px;
    margin: 0; 
    line-height: 0.5; /* Ajuste extremo para reducir espacio vertical */
    font-size: 1rem;
}

.info-text {
    font-weight: bold;
    font-size: 0.95rem;
    margin: 5px 0; /* Espacio mínimo entre los puntos y el texto */
    color: #444;
}

footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #666;
}

/* Enlace que hereda el color del texto */
footer p a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer p a:hover {
    text-decoration: underline;
    opacity: 0.8;
}