*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background: #272044;
}

.container {
    max-width: 1400px;
    margin: 0 auto;

}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url(/images/vitoria.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 200px 0;
}

header .logo {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 5px;
    margin: 0;
    font-weight: 900;
}

header h1 {
    font-size: 96px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 700;
    margin: 30px 0;
}

header h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

header a {
    text-decoration: none;
    padding: 16px 32px;
    background: white;
    color: #272044;
    font-weight: 700;
    margin-top: 32px;
    display: inline-block;
    text-transform: uppercase;
}

section {
    background: white;
    padding: 100px;
}

footer {
    background-image: linear-gradient(rgba(39, 32, 68, 0.8),
            rgba(39, 32, 68, 0.9)), url(/images/vitoria-centro.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;

    padding: 100px 50px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;

}

footer a {

    color: white;
}

footer h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.footer {
    text-align: left;
}


.grid {

    grid-gap: 64px;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;

}


.grid-3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-2-columns>*,
.grid-3-columns>* {
    min-width: 0;
}

.second-section,
.instagram-photos {
    text-align: center;
}

.img-responsive {

    display: block;
    width: 100%;
    height: auto;


}

.google-maps {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    max-width: 100%;
}

.card {
    text-align: left;
}



main h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.3;
    color: #272044;
}

main h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: #272044;
    margin: 0;
}

main p {
    font-size: 16px;
    line-height: 1.5;
    color: #272044;
    font-style: normal;
    opacity: 0.7;
    font-weight: 400;
}

.btn {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px;
    background-color: #462cb3;
    text-decoration: none;
}

.card-section {
    margin-top: 50px;
}

@media(max-width:960px) {
    section {
        padding: 50px 20px;
    }

    .grid,
    .grid-2-columns,
    .grid-3-columns {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }

    header h1 {
        font-size: 40px;
    }

    main h3 {
        font-size: 24px;
    }

    .instagram-media {
        min-width: 0 !important;
        width: 100% !important;
    }

}