/* ===== CONTENEDOR HEADER ===== */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 15px 20px;
    gap: 20px;
    align-content: center;
    vertical-align: middle;
    background-color: #000;
}

.header-logo img {
    max-width: 200px;
    height: auto;
}

.header-texto p {
    font-family: "Roboto-Bold";
    font-size: 22px;
    text-align: center;
    margin: 0;
    color: #000;
}

/* ===== BOTONES ===== */
.botones {
    display: flex;
    justify-content: center;
    gap: 2vh;

    margin-right: 40px;
}

.botones a {
    font-size: 12px;
}

.boton {
    padding: 10px 30px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1.2em;
    text-align: center;
    font-family: "Hemi Head";
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    min-width: 220px;
}

.boton.verde {
    background-color: #04b319;
    color: white;
}

.boton.negro {
    background-color: black;
    color: white;
}

.boton.naranja {
    background-color: #ff8400;
    color: black;
}

.boton-borde {
    border: white 0.2rem solid;
}

a {
    text-decoration: none;
}

.boton.verde:hover {
    background-color: #42d642;
}

.boton.naranja:hover {
    background-color: #ffcc66;
}

.icono {
    width: 3rem;
    margin-right: 10px;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .botones {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .boton {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .header-logo img {
        max-width: 180px;
    }
}

.header {
    transition: all 0.3s ease;
}

.header.fijo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-img {
        width: 80%;
        height: auto;
    }

    .texto-centro {
        display: none;
    }

    .botones {
        margin-top: -20px;
    }


}