#header-container {
    min-width: 100vw;
    position: fixed;
    z-index: 1000;
}

@font-face {
    font-family: 'FuturaCondensed';
    src: url('../fonts/FuturaLT-Condensed_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'FuturaCondensed', sans-serif;

}



h1 {
    margin-bottom: 70px;
    font-size: 2em;
    font-family: 'FuturaCondensed', sans-serif;
}



.fila {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tarjeta {
    position: relative;
    width: 300px;
    /* Ajusta el tamaño de la tarjeta */
    text-align: center;
}

.tarjeta img {
    width: 100%;
    /* Hace que la imagen se ajuste al tamaño de la tarjeta */
    height: auto;
    display: block;
    /* Evita espacios adicionales debajo de la imagen */
}

.boton {
    width: 100px !important;
    /* Ajusta el tamaño del botón */
    height: auto;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.boton:hover {
    scale: 1.1;
    transition: 0.5s;

}


section {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.promocional-text {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    color: #000;
    font-family: 'FuturaCondensed', sans-serif;
    text-align: center;
    margin: 30px auto 0 auto;
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
}

@media (max-width: 600px) {
  .promocional-text {
    font-size: 1.4em;
    padding: 18px;
    margin-top: 20px;
    max-width: 98vw;
  }
}

.footer {
    position: relative;
    width: 100%;
    text-align: center;
}

.pergamino-container {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.pergamino-img {
    width: 24em;
    max-width: 850px;
}