:root {
    --base-font-size: 16px;
    --base-font-size-phone: 10px;
    --base-font-size-tablet: 13px;
    --color-azul-1: #004563;
    --color-azul-2: #135B9E;
    --color-azul-3: #44C8F5;
    --color-celeste-1: #90CEF1;
    --color-celeste-2: #cbe9fc;
    --color-gris-1: #d1d3d490;
    --color-gris-2: #58595b90;
    --color-gris-3: #58595bc4;
    --shadow: 5px 5px 5px rgb(0, 0, 0);
}

* {
    font-family: 'Ubuntu', sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
}

main {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

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

.box-shadow {
    box-shadow: var(--shadow);
}

.txt-shadow {
    text-shadow: var(--shadow);
}

.lh-1 {
    line-height: 1.5;
}

.lh-2 {
    line-height: 1.25;
}

.lh-3 {
    line-height: 2;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h4,
h5,
h6 {
    font-weight: 500;
}

h1,
.fs1 {
    font-size: calc(var(--base-font-size) * 2.5);
}

h2,
.fs2 {
    font-size: calc(var(--base-font-size) * 2);
}

h3,
.fs3 {
    font-size: calc(var(--base-font-size) * 1.75);
}

h4,
.fs4 {
    font-size: calc(var(--base-font-size) * 1.5);
}

h5,
.fs5 {
    font-size: calc(var(--base-font-size) * 1.25);
}

h6,
.fs6 {
    font-size: var(--base-font-size);
}

#overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10;
	background-color: var(--color-gris-2);
}

#overlayvideo {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10;
	background-color: var(--color-gris-2);
}

#overlayubi {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10;
	background-color: var(--color-gris-2);
}

.effect-scale {
    transition: scale 250ms;
}

.effect-scale:hover {
    scale: 1.1;
    transition: scale 250ms;
}

.button {
    background-color: var(--color-azul-1);
    color: white;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    transition: background-color 200ms;
    cursor: pointer;
}

.button:hover {
    background-color: var(--color-azul-3);
    transition: background-color 200ms;
}

.button:active {
    box-shadow: inset 2px 2px 2px black;
}
.button_denuncia {
    background-color: var(--color-azul-1);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    border: none;
    font-weight: 800;
    transition: background-color 200ms;
    cursor: pointer;
}

.button_denuncia:hover {
    background-color: var(--color-azul-3);
    transition: background-color 200ms;
}

.button_denuncia:active {
    box-shadow: inset 2px 2px 2px black;
}
.select {
    background-color: var(--color-azul-1);
    color: white;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    transition: background-color 200ms;
    cursor: pointer;
}

nav {
	height: 115px;
	grid-column: 1 / -1;
	display: grid;
	grid-template-rows: 35px 80px;
	z-index: 2;
}

nav header {
	height: 35px;
	background-color: var(--color-azul-2);
	grid-column: 1 / -1;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 2%;
}

nav header .linkedin-btn {
    display: none;
}

.btn-sucursal {
	height: 2em;
	min-width: 8em;
	max-width: 12em;
}

.wrapper-info-contacto {
    display: flex;
    justify-content: center;
    gap: 1em;
    color: white;
}

.wrapper-info-contacto span {
    display: flex;
    gap: 1em;
    align-items: center;
    font-weight: 700;
}

.wrapper-info-contacto a {
    color: white;
    font-size: 22px;
}

.wrapper-botones {
    display: flex;
    gap: 1em;
    justify-content: end;
}

.btn-accesos {
    height: 2em;
    min-width: 8em;
    max-width: 12em;
    display: flex;
    justify-content: center;
    gap: 1em;
    align-items: center;
}

.select-idioma {
    height: 25px;
    width: 8em;
    text-align: center;
}

nav section {
    grid-column: 1 / -1;
    height: 80px;
    display: grid;
    grid-template-columns: 2% 1fr 2% repeat(6, 1fr) 2% 1fr 2%;
    justify-items: center;
    box-shadow: 0px 10px 10px -4px #0000004f;
    align-items: center;
    position: absolute;
    top: 35px;
    width: 100%;
    background-color: white;
}

nav section a:nth-of-type(1) {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo {
    height: 70px;
}

.wrapper-secciones {
    grid-column: 4 / span 6;
    font-weight: 700;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.wrapper-secciones span {
	padding: 1em;
	height: 3em;
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
}

.wrapper-secciones span:active {
    color: var(--color-azul-3);
}

.wrapper-secciones .separador {
    border-right: 1px solid black;
    height: 3em;
}

.btn-contacto {
    width: 12em;
    height: 3em;
    grid-column: 11;
    justify-self: end;
}

.btn-invertido {
    background-color: white;
    color: var(--color-azul-1);
}

footer {
    background-color: var(--color-azul-2);
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 2% repeat(3, 1fr) 2%;
    font-weight: 700;
    align-items: center;
}

footer img {
    grid-column: 2;
    width: 15em;
}

footer .center-wrapper {
    grid-column: 3;
    display: grid;
    grid-template-rows: 1fr 20%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0.5em;
}

footer .center-wrapper span:last-of-type {
    font-size: 12px;
    font-weight: 400;
}

footer .center-wrapper i {
    color: white;
}

footer .right-wrapper {
    grid-column: 4;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0.5em;
    gap: 1em;
    text-align: center;
    flex-direction: column-reverse;
    align-items: flex-end;

}

footer .right-wrapper input {
    width: 22em;
    height: 35px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    padding: 10px;
    font-family: 'Ubuntu', sans-serif;
    padding-right: 9em;
}

footer .right-wrapper button {
	position: absolute;
   
	right: 3px;
	height: 40px;
	width: 15em;
	cursor: pointer;
	bottom: 2px;
}

footer .input-email {
    position: relative;
}

.sticky {
    position: fixed;
    top: 0;
    background-color: var(--color-azul-1);
    transition: background-color 200ms;
}

.parallax {
    width: 100%;
    z-index: -1;
}

.simpleParallax {
    width: 100%;
    height: 100%;
}

.btn-bars {
    display: none;
}

.menu-wrapper {
    display: none;
}

.menu {
    width: 80%;
    height: 100%;
    background-color: white;
    position: absolute;
    right: 0;
    max-width: 30em;
    padding: 2em;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 2em;
    font-weight: 700;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    overflow-y: auto;
}

.menu li {
    user-select: none;
}

.btn-cerrar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
}

.bottombar {
    display: none;
}

/* #region Mobile */
@media screen and (max-width: 1023px) {
    .btn-bars {
        display: flex;
        width: 2em;
        height: 2em;
        justify-self: end;
        justify-content: center;
        align-items: center;
    }

    .menu-wrapper {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: var(--color-gris-2);
        z-index: 5;
    }

    nav {
        grid-template-rows: 50px 95px;
    }

    nav section {
        top: 50px;
    }

    nav header {
        justify-content: space-between;
        height: 50px;
    }

    nav header .wrapper-info-contacto {
        display: none;
    }

    nav header .btn-sucursal {
        height: 40px;
    }

    nav header .wrapper-botones {
        grid-column: 3;
        justify-content: end;
    }

    nav header .btn-accesos {
        height: 40px;
    }

    nav section {
        grid-template-columns: 2% 1fr 1fr 2%;
    }

    nav section .wrapper-secciones {
        display: none;
    }

    .btn-contacto {
        display: none;
    }

    footer {
        display: flex;
        flex-direction: column-reverse;
        height: min-content;
    }

    footer img {
        display: none;
    }

    footer .center-wrapper {
        grid-column: 3 / span 2 !important;
    }

    footer .right-wrapper {
        align-items: center;
        text-align: center;
    }

    footer .right-wrapper button {
        bottom: 2px;
    }

    h1,
    .fs1 {
        font-size: calc(var(--base-font-size-phone) * 2.5);
    }

    h2,
    .fs2 {
        font-size: calc(var(--base-font-size-phone) * 2);
    }

    h3,
    .fs3 {
        font-size: calc(var(--base-font-size-phone) * 1.75);
    }

    h4,
    .fs4 {
        font-size: calc(var(--base-font-size-phone) * 1.5);
    }

    h5,
    .fs5 {
        font-size: calc(var(--base-font-size-phone) * 1.25);
    }

    h6,
    .fs6 {
        font-size: var(--base-font-size-phone);
    }

    nav header .linkedin-btn {
        display: block;
        color: white;
        font-size: 2em;
    }

    .bottombar {
        position: fixed;
        bottom: 0;
        background-color: white;
        width: 100%;
        height: 4em;
        box-shadow: 0px -10px 10px -4px #0000004f;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
        color: var(--color-azul-2);
        z-index: 4;
    }

    .bottombar i {
        font-size: 1.2em;
    }

    .bottombar a {
        color: inherit;
    }
}

@media screen and (max-width: 1270px) {
    .wrapper-secciones span {
        padding: 1em;
        height: 3em;
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        font-size: 12px;
    }
}

@media screen and (max-width: 1130px) {
    .wrapper-secciones span {
        padding: 1em;
        height: 3em;
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        font-size: 10px;
    }

    .wrapper-info-contacto {
        font-size: 14px;
    }
}
/* #endregion */