:root {
    --white: #ededed;
    --bg: #1c1c1c;
    --black04: rgba(0, 0, 0, 0.7);
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #1c1c1c;
    margin: 0;
    padding: 0;
    color: #ededed;
    font-family: 'Zilla Slab', serif;
    height: 100vh;
}

img {
	max-width: 100%;
	height: auto;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    color: var(--white);
    background-color: transparent;
    border: solid 1px var(--white);
    padding: 8px 15px;
    text-transform: uppercase;
    cursor: pointer;
}

button:hover {
    background-color: var(--white);
    color: var(--bg);
}

h1, h2, h3, h4 {
    margin: 0;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

.title {
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* MENÚ
========================= */
.menu-btn {
    z-index: 2;
    margin-top: 30px;
    background-color: var(--black04);
    text-transform: uppercase;
    color: var(--white);
    font-size: 18px;
    right: 0;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 15px;
    position: fixed;
}

.menu {
    background-color: var(--black04);
    position: fixed;
    left: 0;
    top: -1500px;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: all 0.5s linear;
    text-align: center;
}

.menu.show {
    top: 0;
}

.list-link {
    max-height: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.6s ease-in-out;
    opacity: 0;
}

.list-link.show {
    max-height: 500px;
    opacity: 1;
}

.dropdown-btn,
.link {
    padding: 10px 15px;
    text-transform: uppercase;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0;
    display: block;
}

.list-link .link {
    background-color: transparent;
    padding: 0;
    font-size: 18px;
}

.instagram {
    display: flex;
    align-items: center;
}

.instagram .bx {
    font-size: 32px;
    margin-left: 8px;
}

.dropdown-btn > span {
    pointer-events: none;
}


/* HOME
=========================== */
.home {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.home.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px;
	text-align: center;
}

.home.grid > div {
	flex: 1;
    background: url('../img/home.jpg') center no-repeat;
    background-size: cover;
    background-attachment: fixed;
	display: flex;
	justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.home.grid > div.show {
    opacity: 1;
}

.home.grid > div.hide {
    background: var(--bg);
}

.brand {
    grid-row: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand.hide {
    display: none;
}

.brand img {
    width: 70%;
}

.home.grid > div:nth-child(7),
.home.grid > div:nth-child(8),
.home.grid > div:nth-child(9),
.home.grid > div:nth-child(10),
.home.grid > div:nth-child(11),
.home.grid > div:nth-child(12) {
    display: none;
}


/* PORTAL
====================== */
.portal {
    background-color: var(--bg);
    position: relative;
    top: 0;
    left: -2000px;
    transition: all 0.7s ease-in;
    padding-bottom: 30px;
}

.portal.vh {
    height: 100vh;
}

.portal.show {
    left: 0;
}

.portal .grid > div:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
}

.portal .grid > div:nth-child(1) {
    background: url('../img/main.jpg') center no-repeat;
    background-size: cover;
    height: 300px;
}

.portal .grid > div:nth-child(2),
.portal .grid > div:nth-child(3),
.portal .grid > div:nth-child(4) {
    display: none;
}

.content {
    opacity: 1;
    transition: opacity 0.3s ease-in;
    padding: 0 15px;
}

.content p:last-of-type {
    margin-bottom: 0;
}

.content.hide {
    opacity: 0;
}

.hor-1 {
    background: url('../img/hor-1.jpg') center no-repeat;
    background-size: cover;
}

.hor-2 {
    background: url('../img/hor-2.jpg') center no-repeat;
    background-size: cover;
}

.hor-3 {
    background: url('../img/hor-3.jpg') center no-repeat;
    background-size: cover;
}

.hor-4 {
    background: url('../img/hor-4.jpg') center no-repeat;
    background-size: cover;
}

.hor-5 {
    background: url('../img/hor-5.jpg') center no-repeat;
    background-size: cover;
}

.hor-6 {
    background: url('../img/hor-6.jpg') center no-repeat;
    background-size: cover;
}

.ver-1 {
    background: url('../img/ver-1.jpg') center no-repeat;
    background-size: cover;
}

.ver-2 {
    background: url('../img/ver-2.jpg') center no-repeat;
    background-size: cover;
}

.ver-3 {
    background: url('../img/ver-3.jpg') center no-repeat;
    background-size: cover;
}

.ver-4 {
    background: url('../img/ver-4.jpg') center no-repeat;
    background-size: cover;
}

.ver-5 {
    background: url('../img/ver-5.jpg') center no-repeat;
    background-size: cover;
}


/* FORMULARIO
================== */
.form {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.form button {
    float: right;
}

.campo {
    flex: 100%;
    margin-bottom: 15px;
}

.campo label {
    display: block;
    margin-bottom: 5px;
}

.campo input,
.campo textarea {
    width: 100%;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
    min-height: 32px;
    border-radius: 2px;
}

.msg {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    column-gap: 10px;
}

.msg > p {
    flex: 100%;
}

