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

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

.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;

}

.card-header img,
.card-header iframe {
    width: 100%;
    height: 100%;

}

.grid {
    display: grid;
    grid-gap: 80px;
}

.grid-2-columns {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.grid-3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 100px;
    align-items: start;
}

.card-grid-3-columns {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    grid-gap: 80px;

}

.card-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;

}

.card {
    background: white;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 30px;
}

.card-footer {
    padding: 0 30px 30px;

}

.embed {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.instagram-embed {
    margin: 30px 0;
}

.grid-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: #272044;
    text-decoration: none;

}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

section.secondary {
    background: #f8f8f8;
    padding: 100px 60px;
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../styles/images/ponte-25.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 200px 0;
}

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

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

header h3 {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 5px;
    margin: 0;
}

header a {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: white;
    text-decoration: none;
    color: #272044;
    padding: 16px 32px;
    margin-top: 32px;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

main {
    background-color: white;
}

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

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

main h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #272044;
    margin: 0;

}

main h5 {
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #272044;
    margin: 0;

}

footer {
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(rgba(39, 32, 68, 0.9), rgba(39, 32, 68, 0.9)), url('../styles/images/lisbon-footer.png');
}

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

footer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

footer ul {
    padding: 0;
}

footer li {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer a {
    color: white;
    opacity: 0.7;
}

@media (max-width: 960px) {
    header {
        padding: 60px 0;
    }

    header h1 {
        font-size: 48px;
    }

    header h2 {
        font-size: 18px;
    }

    header h3 {
        font-size: 12px;
    }

    .grid {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }
    .grid-2-columns, .grid-3-columns, .card-grid-3-columns, .card-header {
        grid-template-columns: 1fr;
        padding: 0 20px;
        grid-gap: 20px;
    }

    section {
        padding: 30px;
    }

    .card-header img {
        display: none;
    }

    .embed {
        aspect-ratio: 16/9;
    }
}