/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Fondo principal */
    background: url('fondo.png') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 320px; /* Ajusta según el tamaño de tu logo.png */
    height: auto;
}

.access-text {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-text a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s;
}

.contact-text a:hover {
    opacity: 0.7;
}

/* Ajustes para móviles */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .logo { max-width: 250px; }
    body { padding: 10px; }
}