:root{
    
}

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
}

li{
    list-style-type: none;
}

a{
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

p a{
    display: inline;
}

img, picture, video, iframe, figure{
    max-width: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em{
    font-size: 1em;
    font-weight: inherit;
    font-style: inherit;
    text-decoration: none;
    color: inherit;
}

form, input, textarea, select, button, label{
    font-family: inherit;
    font-size: inherit;
    hyphens: auto;
    background-color: transparent;
    color: inherit;
    display: block;
}

blockquote:before, blockquote:after, q:before, q:after{
    content: "";
    content: none;
}
  
::selection{
    background-color: var(--negro);
    color: var(--blanco);
}

table, tr, td{
    border-collapse: collapse;
    border-spacing: 0;
}

svg{
    width: 100%;
    display: block;
    fill: currentColor;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    font-size: 100%;
    font-weight: 400;
    color: var(--negro);
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    text-align: center;
}



.header{
    width: 100%;
    background-color: white;
    padding: 2.1rem 0;
    animation: slideDown 2s ease 1 both;
}

@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-100%);
    }
    to{
        opacity: 1;
        transform: translateY(0%);
    }
}

.header .wrapper{
    width: 95%;
    /* max-width: 80rem; */
    /* background-color: orange; */
    margin: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 2s 1;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.header .logo{
    /* background-color: lime; */
    margin-left: 5rem;
}

.header .svg{
    max-width: 2rem;
    display: none;
    margin-right: 7rem;
    /* background-color: blue; */
}

.header .ul{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-right: 8rem;
}

.header .li{
    /* background-color: royalblue; */
    margin: 0 0 0 2rem;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}

.header .li:hover{
    color: rgba(0, 0, 0, 0.5);
}



.pelicula{
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin-right: 6rem;
    background-color: pink;
    background-image: url(../assets/pelicula.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10rem 0;
    animation: slideUp 2s ease 1 both;
}

@keyframes slideUp{
    from{
        opacity: 0;
        transform: translateY(30%);
    }
    to{
        opacity: 1;
        transform: translateY(0%);
    }
}

.pelicula .logo{
    width: 44%;
    /* background-color: seagreen; */
    margin-left: 30%;
    margin-top: 6rem;
    animation: slideUp 2s ease 1 1s both;
}



.columnas{
    width: 90%;
    /* background-color: seagreen; */
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
}

.columnas .columna{
    width: calc( 100% / 3 - 2rem);
    /* background-color: slateblue; */
    margin: 10rem 1rem;
    text-align: center;
}

.columnas .imagen{
    background:blue;
}

.columnas .h3{
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 2rem;
}



.footer{
    width: 100%;
    /* background-color: lightblue; */
    padding-bottom: 4rem;
}

.footer .wrapper{
    width: 80%;
    /* background-color: lightcoral; */
    margin: auto;
}

.footer .wrapper .rrss{
    /* background-color: blue; */
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.footer .wrapper .rrss .svg:hover{
    fill: rgba(0, 0, 0, 0.5);
}

.footer .wrapper .rrss .li{
    margin: 0 0.6rem 3rem 0.6rem;
}

.footer .wrapper .rrss .li .svg{
    max-width: 1.5rem;
    /* background-color: lightcyan; */
}

.footer .wrapper .links{
    width: 100%;
    max-width: 600px;
    /* background-color: lightpink; */
    margin: auto;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.footer .wrapper .links .li{
    /* background-color: lightgreen; */
    text-align: center;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 1rem;
    font-size: 14px;
}

.footer .wrapper .links .li:hover{
    color: rgba(0, 0, 0, 0.5);
}

.footer .wrapper .links .li .a{
    border-bottom: 1px solid rgba(29,29,29,.3);
    padding-bottom: 1px;
}

.footer .wrapper .p{
    margin: auto;
    padding-top: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
    padding-bottom: 10px;
}



@media screen and (max-width: 1220px){
    .header{
        position: fixed;
        padding: 0.8rem;
        z-index: 2;
    }
    .header .logo{
        max-width: 10rem;
        margin-left: 2rem;
    }
    .header .svg{
        display: block;
    }
    .header .wrapper .nav{
        display: none;
    }
    .pelicula{
        margin-bottom: 5rem;
    }
    .pelicula{
        width: 100%;
        min-height: 60vh;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        background-position: 30%;
        padding: 20%;
    }
    .pelicula .logo{
        width: 100%;
        margin-right: 10rem;
    }
    .columnas{
        flex-direction: column;
    }
    .columnas .columna{
        width: 100%;
        margin: 0rem 1rem;
    }
    .footer .wrapper .rrss{
        margin-top: 5rem;
        margin-bottom: 3rem;
    }
    .footer .wrapper .links{
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .footer .wrapper .links .li.linea.uno{
        margin-left: 0rem;
    }
    .footer .wrapper .links .li.dos{
        margin-right: 0rem;
    }
    .footer .wrapper .links .li.linea::after{
       display: none;
    }
}



@media screen and (max-width: 460px){
    .header{
        position: fixed;
        padding: 0.7rem;
        z-index: 2;
    }
    .header .logo{
        max-width: 8rem;
        margin-left: 1rem;
    }
    .header .svg{
        display: block;
        margin-right: 2rem;
    }
    .header .wrapper .nav{
        display: none;
    }
    .pelicula{
        margin-bottom: 2rem;
    }

    .pelicula{
        width: 100%;
        min-height: 60vh;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        background-position: 20%;
        padding: 5rem;
    }
    .pelicula .logo{
        width: 100%;
        /* margin-right: 10rem; */
        margin: 9rem auto 0rem
    }
    .columnas{
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    .columnas .columna{
        width: 100%;
        margin: 0rem 0rem;
    }
    .columnas .h3{
        margin-bottom: 3rem;
        margin-top: 1rem;
    }
    .footer{
        width: 100%;
        /* background-color: lightblue; */
        padding-bottom: 2rem;
    }
    .footer .wrapper .rrss{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .footer .wrapper .links .li{
        margin-bottom: 0.7rem;
        line-height: 25px;
        font-size: 12px;
    }
    .footer .wrapper .p{
        font-size: 11px;
    }
}