/* Quitamos el flex del body para que el Nav y Footer fluyan normal */
body {
    margin: 0;
    background: #0f0f0f;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Organiza Nav, Main y Footer en vertical */
}

/* Este es el nuevo contenedor que centrará tu contenido */
.hero-container {
    flex: 1; /* Ocupa todo el espacio sobrante entre Nav y Footer */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.box {
    max-width: 420px;
    width: 100%;
}

h1 {
    color: #f5c400;
    font-size: 32px;
    margin-bottom: 10px;
}

.slogan {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

p {
    color: #b5b5b5;
    margin: 15px 0;
    line-height: 1.5;
}

/* El botón ya no necesita estilos extra, pero aseguramos que no se subraye */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;
    background: #f5c400;
    color: #000;
    text-decoration: none !important;
    border-radius: 12px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:active {
    transform: scale(0.95);
}