* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height: 150px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    padding-top: var(--header-height);
    background-color: #0C172C;
}

html,
body {
    overflow-x: hidden;
}

section,
footer {
    scroll-margin-top: var(--header-height);
}

/* Header */
header {
    background-color: hsla(219, 57%, 11%, 0.945);
    color: #fdfdfd;
    display: flex;
    align-items: center;
    padding: 5px 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--header-height);
    z-index: 10;
    backdrop-filter: blur(5px);
}

header ul {
    list-style: none;
    display: flex;
    gap: 30px;
    background-color: hsla(0, 0%, 99%, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
}

header a {
    color: #fdfdfd;
    text-decoration: none;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    flex: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand p {
    color: #fdfdfd;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand span {
    background-color: #FBBC13;
    color: #0C172C;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
    font-size: 22px;
}

.logotipo {
    width: 140px;
    background-color: hsla(0, 0%, 99%, 0.1);
    border-radius: 100px;
}

.botao-menu {
    background-color: hsla(0, 0%, 99%, 0.1);
    color: #fdfdfd;
    padding: 20px;
    border-radius: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.botao-menu:hover {
    background-color: #FBBC13;
    color: black;
}

/* Hero */
.hero {
    min-height: 80vh;
    background-image:
        linear-gradient(
            90deg,
            rgba(12, 23, 44, 0.95) 0%,
            rgba(12, 23, 44, 0.75) 35%,
            rgba(12, 23, 44, 0.2) 70%
        ),
        url(img/fundo.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0px 70px;
    color: #fdfdfd;
}

.hero-content {
    max-width: 500px;

    h1 {
        font-size: 60px;
        font-weight: 1000;

        span {
            color: #FBBC13;
        }
    }

    p {
        font-weight: 200;
        color: #fdfdfdc2;
    }
}

.botao-hero {
    display: flex;
    gap: 40px;

    a {
        color: inherit;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 50px;
        font-weight: 900;
        border: 2px solid #FBBC13;
        border-radius: 12px;
        cursor: pointer;
        background-image: none;
        box-shadow: none;
        appearance: none;
        text-align: center;
        text-decoration: none;
    }
}

.botao-quote {
    background-color: #FBBC13;
    border-color: #FBBC13;
    color: black;
}

.botao-hero .botao-quote {
    color: black;
}

.botao-quote:hover {
    background-color: hsla(219, 57%, 11%, 0.301);
    color: #fdfdfd;
}

.botao-services {
    background-color: hsla(219, 57%, 11%, 0.301);
    color: #fdfdfd;
}

.botao-services:hover {
    background-color: #FBBC13;
    color: black;
}

/* Section 3 */
.secao2 {
    background-color: #fdfdfd;
    padding: 20px 0 70px;
}

.texts {
    text-align: center;

    p {
        font-size: 20px;
        font-weight: 500;
    }

    h2 {
        font-size: 60px;
        margin-bottom: 30px;
        font-weight: 700;
    }
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 70px;
}

.card {
    background-color: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 25px;
}

/* Footer */
footer {
    color: #fdfdfd;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    h4 {
        font-size: 30px;
        font-weight: 500;
        margin-top: 30px;
    }

    p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.contact-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.contact-links a {
    color: #fdfdfd;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.contact-links img {
    width: 30px;
}

.flags {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* About Page */
.about-page-hero {
    min-height: calc(100vh - var(--header-height));
    background-color: #0C172C;
    color: #fdfdfd;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    overflow: hidden;
}

.about-page-content {
    background:
        linear-gradient(
            90deg,
            rgba(12, 23, 44, 1) 0%,
            rgba(12, 23, 44, 0.96) 70%,
            rgba(12, 23, 44, 0) 100%
        );
    padding: 80px 70px;
    position: relative;
    z-index: 2;
}

.about-page-label {
    color: #FBBC13;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-page-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 900;
}

.about-page-content h1 span {
    color: #FBBC13;
}

.about-page-line {
    background-color: #FBBC13;
    width: 70px;
    height: 3px;
    margin: 28px 0;
}

.about-page-text {
    color: #fdfdfdc9;
    font-size: 17px;
    line-height: 1.7;
    max-width: 470px;
}

.about-page-image {
    margin-left: -120px;
    position: relative;
}

.about-page-image::before {
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(12, 23, 44, 0.7) 0%,
            rgba(12, 23, 44, 0.15) 35%,
            rgba(12, 23, 44, 0) 70%
        );
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.08) contrast(1.05);
}

/* Who We Are */
.who-we-are {
    background-color: #0C172C;
    color: #fdfdfd;
    display: grid;
    grid-template-columns: 25% 25% 50%;
    gap: 50px;
    align-items: center;
    padding: 80px 70px;
}

.who-label {
    color: #FBBC13;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.who-content h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 25px;
}

.who-text {
    color: #fdfdfdc9;
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
}

.who-features {
    border-left: 1px solid rgba(253, 253, 253, 0.18);
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 45px;
}

.who-feature {
    display: flex;
    align-items: center;
    gap: 22px;
}

.who-feature img {
    background-color: rgba(253, 253, 253, 0.08);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    padding: 14px;
}

.who-feature h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
}

.who-feature p {
    color: #fdfdfdc9;
    font-size: 14px;
    line-height: 1.5;
}

.who-image {
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    position: relative;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.who-stats {
    background-color: rgba(12, 23, 44, 0.88);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 28px 35px;
    position: absolute;
    top: 35px;
    right: 35px;
    min-width: 290px;
}

.who-stats div {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(253, 253, 253, 0.18);
}

.who-stats div:last-child {
    border-bottom: none;
}

.who-stats strong {
    color: #FBBC13;
    font-size: 42px;
    line-height: 1;
}

.who-stats span {
    color: #fdfdfd;
    font-size: 15px;
    font-weight: 800;
}

/* Gallery */
.gallery {
    background-color: #0C172C;
    color: #fdfdfd;
    padding: 70px 0 80px;
}

.gallery-title {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
}

.gallery-title p {
    color: #FBBC13;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-title h2 {
    font-size: 52px;
    font-weight: 900;
}

.gallery-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 70px 22px;
}

.gallery-scroll::-webkit-scrollbar {
    height: 10px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background-color: rgba(253, 253, 253, 0.1);
    border-radius: 100px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background-color: #FBBC13;
    border-radius: 100px;
}

.gallery-scroll img {
    width: 420px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
}

.lightbox {
    background-color: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: fixed;
    inset: 0;
    z-index: 100;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close {
    background-color: #FBBC13;
    color: #0C172C;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 24px;
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 100px;
    }

    header {
        padding: 10px 20px;
        min-height: var(--header-height);
    }

    .logotipo {
        width: 80px;
    }

    .brand p {
        font-size: 18px;
    }

    .menu ul {
        display: none;
    }

    .botao-menu {
        padding: 12px 16px;
        font-size: 12px;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
        padding: 40px 20px;
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .botao-hero {
        flex-direction: column;
        gap: 15px;
    }

    .botao-hero a {
        width: 100%;
        padding: 14px 20px;
    }

    .texts h2 {
        font-size: 38px;
    }

    .cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .contact-links {
        flex-direction: column;
        gap: 15px;
    }

    .contacts h4 {
        font-size: 28px;
    }

    .flags {
        gap: 10px;
        padding-bottom: 20px;
    }

    .about-page-hero {
        grid-template-columns: 1fr;
    }

    .about-page-content {
        padding: 50px 20px;
        background:
            linear-gradient(
                180deg,
                rgba(12, 23, 44, 1) 0%,
                rgba(12, 23, 44, 0.96) 75%,
                rgba(12, 23, 44, 0.75) 100%
            );
    }

    .about-page-content h1 {
        font-size: 38px;
    }

    .about-page-image {
        margin-left: 0;
        height: 360px;
    }

    .who-we-are {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
    }

    .who-content h2 {
        font-size: 34px;
    }

    .who-features {
        border-left: none;
        padding-left: 0;
    }

    .who-feature img {
        width: 58px;
        height: 58px;
    }

    .who-image {
        min-height: 420px;
    }

    .who-stats {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 20px;
        min-width: 0;
        padding: 18px 25px;
    }

    .who-stats strong {
        font-size: 34px;
    }

    .gallery {
        padding: 50px 0 60px;
    }

    .gallery-title h2 {
        font-size: 36px;
    }

    .gallery-scroll {
        gap: 18px;
        padding: 0 20px 18px;
    }

    .gallery-scroll img {
        width: 82vw;
        height: 260px;
    }
}
