/* Reseteo del Navegador Web */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reseteo Selectores de Etiquetas */
body{
    background-color: #ffb900;
    color: #000000;
    font-family: 'Hind Vadodara', sans-serif;
}

ul, ol{
    list-style-position: inside;
}

a{
    color: inherit;
    text-decoration: none;
}

img, video, iframe{
    max-width: 100%;
    height: auto;
}

/* Estilos del header */
.encabezado{
    /* border:5px solid red; */
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../images/background_encabezado.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    max-height: 450px;
}

.encabezado__logo{
    width: 160px;
    margin: 165px 45px 10px 0px;
}

.encabezado__eslogan{
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.encabezado__eslogan-titulo{
    font-size: 3.5rem;
    margin-top: 10px;
    margin-bottom: -8px;
}

.encabezado__eslogan-parrafo{
    font-size: 1.8rem;
    margin-bottom: 60px;
}

/* Estilos del main */
.principal{
    /* border:5px solid blue;  */
    width: 50%;
    margin:0 auto;
}

/* Estilos Sección 1: LinkTree de McDonald's Argentina */
.s1-linktree{
    text-align: center;
    padding: 1.5rem 0;
}

.s1-linktree__lista{
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    list-style-type: none;
}

.s1-linktree__lista-item{
    background-color: #462a19;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.2rem;
}

.s1-linktree__lista-item :hover{
    /* border:3px solid #462a19; */
    border-radius: 0.5rem;
    font-size: 1.2rem;
    color: #ffb900;
    letter-spacing: 0.2rem;
}

.s1-linktree__lista-enlace{
    display: block;
    padding: 1.2rem;
}

/*Estilos Sección 2: Video de Pileta de Cheddar incrustado*/
.s2-video__contenedor{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s2-video__iframe{
    width: 560px;
    height: 315px;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

/*Estilos Sección 3: Nuevo producto Bacon McMELTy Membresía VIP Automac*/
.s3-tarjetas__lista{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
}

.s3-tarjetas__lista-item{
    width: 365px;
    height: 340px;
    border-top: 2px solid #462a19;
    background-color: #ffffff;
    border-radius: 0.5rem;
    text-align: center;
}

.s3-tarjeta__lista-imagen{
    border-radius: 0.5rem 0.5rem 0 0;
}

.s3-tarjeta__lista-titulo{
    font-size: 1.45rem;
    margin: 0.6rem 1rem;

}

.s3-tarjeta__lista-parrafo{
    margin: 1rem 1rem;
}

/*Estilos Sección 4: Banner Cajita Feliz - Trailer Película 'The Marvels'*/
.s4-banner__contenedor{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.s4-banner__enlace{
    margin: 1.5rem 0;
}

/*Estilos del footer*/
.pie-pagina{
    /* border:5px solid green; */
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.pie-pagina__contenedor{
    /* border: 5px solid #640080; */
    width: 50%;
    display: flex;
    flex-direction:column;
}

.links-interes{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 7px;
}

.pie-pagina_enlace:hover{
    color:#ffb900;
    font-size: 1.1rem;
    font-weight: 400;
}

.imagen-enlace{
    width:110px;
    margin: 0 3px;
}

.enlaces_contenedor{
    /* border: 5px solid #1e0080; */
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    width: 50%;
    gap:2rem;
}

.descargas__contenedor{
    /* border: 5px solid #805c00; */
    display: flex;
    justify-content: flex-end;
}

.descargas__titulo{
    font-size: 1rem;
    font-weight: 700;
    margin-right: 6px;
}

.descargas__enlace img{
    width: 110px;
}


.pie-pagina__creditos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.creditos__logo{
    width: 7rem;
    margin-top: 1.5rem;
    margin-bottom: -0.5rem;
}

.creditos__parrafo{
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
}

