:root {
    --azulOscuro: #081875;
    --azul: #3d65e1;
    --azulCeleste: #8cb3f1;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-size: 1.6rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
}

h1, h2, h3 {
    font-weight: 300;
    text-align: center;
}

h1 {
    font-size: 3.8rem;
}
h2 {
    font-size: 3.4rem;
}
h3 {
    font-size: 3rem;
}
h4 {
    font-size: 2.6rem;
}

p {
    font-size: 1.5rem;
}

/* HEADER */
.header {
    padding: 0;
    background-color: var(--azulCeleste);
}

@media (min-width:768px) {
    .header{
        padding: 1rem 0 3rem 0;
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 6rem;
}

.header-logo {
    width: 100%;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .right {
        align-items: flex-end;
    }
}

.nav-links {
    visibility: hidden;
    opacity: 0;
    transition: visibility .3s ease-in-out, opacity 0.5s linear, height .5s linear;
    height: 0;
}

.nav-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 2.2rem;
    display: block;
    text-align: center;
}

.nav-links a:hover {
    color: #FFF;
    transition: ease .2s all;
    transform: translate(0px, 0px) scale(1.2, 1.2);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        margin-right: 2rem;
        font-size: 1.8rem;
    }

    .nav-links a:last-of-type {
        margin-right: 0;
    }
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
}

@media (min-width: 768px) {
    .hamburger-menu {
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger-menu .link {
        height: auto;
        width: 30rem;
    }
}

.mobile-menu {
    width: 3rem;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.show {
    visibility: visible;
    opacity: 1;
    height: auto;
}

.temporalShow {
    display: none;
}

.temporalHeight {
    height: auto;
}

/* BODY */
@media (min-width:768px) {
    .main-content {
        display: flex;
        align-items: center;
        padding: 1rem 6rem;
    }
}

.about-icons {
    color: #FFF;
}

.main-content__text {
    padding: 1rem;
}

.main-content__img img {
    border-radius: 50%;
}

.main-about {
    padding: 0 3rem;
}

@media (min-width:768px) {
    .about-icons {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }

    .main-about {
        padding: 1rem 6rem;
    }
}

.icon {
    padding: 2rem 0;
}


@media (min-width: 768px) {
    .contact-card {
        display: flex;
        justify-content: space-between;
    }
}

.contact-card .card{
    max-width: fit-content;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid;
}

/* FOOTER */

.footer {
    padding: 2rem 6rem;
}

@media (min-width: 768px) {
    .footer-content {
        display: flex;
        justify-content: space-between;
    }

    .footer-right .footer-nav {
        display: flex;
        gap: 3rem;
    }
}

.footer-left {
    font-size: 2rem;
    color: #FFF;
}

.footer-right .footer-nav a {
    color: #FFF;
}

.footer-nav a:hover {
    color: #FFF;
    transition: ease .2s all;
    transform: translate(0px, 0px) scale(1.2, 1.2);
}

.left-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socials {
    display: flex;
    gap: 3rem;
    font-size: 3rem;
    justify-content: center;
}

.socials a {
    color: #FFF;
}

.copyright {
    color: #FFF;
}

/* BOTON */
.btn-azul {
    background-color: var(--azul);
    color: #FFF;
    font-size: 2rem;
    border-radius: 1rem;
    padding: 1.5rem;
}

.btn-azul:hover {
    background-color: #FFF;
    color: var(--azul);
    border: 1px solid var(--azul);
}

/* CAROUSEL */
.item a {
    color: #000;
}

.item a img {
    border-radius: 1rem;
}

.item a img:hover {
    transition: ease .2s all;
    transform: translate(0px, 0px) scale(0.9, 0.9);
}

@media (max-width:768px) {
    .img-carousel {
        max-width: 90% !important;
    }
}

/* MODAL */
.modal-backdrop.show {
    opacity: 0.5;
    height: 100%;
}

/* Google Maps */
.google-map {
    padding-bottom: 50%;
    position: relative;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}


/* HELPERS */
.bg-blue {
    background: rgb(1,0,18);
    background: linear-gradient(90deg, rgba(1,0,18,1) 0%, rgba(13,48,158,1) 23%, rgba(13,48,158,1) 50%, rgba(13,48,158,1) 77%, rgba(1,0,18,1) 100%);
}

.container {
    max-width: 120rem;
    margin: 0 auto;
}