body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Fondo negro puro */
    color: #c5a059; /* El dorado de tu logo */
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-wrapper {
    text-align: center;
    width: 90%;
    max-width: 600px;
}

/* Ajuste del logo para que no se vea como un cuadro separado */
.hero-logo {
    width: 100%;
    max-width: 450px; /* Tamaño más imponente */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slogan {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 50px;
    opacity: 0.8;
    font-weight: 300;
}

/* Botón estilizado sin funcionalidad según consigna */
.cta-button {
    background-color: transparent;
    color: #c5a059;
    border: 1px solid #c5a059;
    padding: 18px 40px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background-color: #c5a059;
    color: #000;
}

footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.3;
}