/* =============================================HEROS HEADER */
/* Contenedor principal */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #111;
    text-align: center;
}


/* Texto gigante */
.hero h1 {
    font-size: 8vw;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    font-size: 5rem;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero h1:hover {
    color: white;
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 14vw;
    }
}


.option-buttom {
    color: #ffc55a;
    border-radius: 16px;
    border: 1px #ffc55a solid;
    background-color: #000;
    padding: 2px 10px 2px 10px;
    margin: 5px;
    font-weight: 500;
    transition: ease-in-out 0.3s;
}

.option-buttom:hover {
    color: #000;
    border: 1px #ffc55a solid;
    background-color: #ffc55a;
    margin: 5px;
    font-weight: bold;
}

.section-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    color: black;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 20px;
}