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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #17212b;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

:root {
    --blue: #061321;
    --blue-dark: #061321;
    --blue-deep: #061321;
    --blue-medium: #061321;
    --blue-light: #061321;

    --yellow: #FFC400;
    --yellow-dark: #E0AA00;

    --white: #ffffff;

    --gray: #777f86;
    --gray-light: #f4f6f7;

    --border: rgba(255, 255, 255, 0.1);

    --transition: 0.3s ease;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(6, 19, 33, 0.93);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.4s ease;
}

.header.scrolled {
    background: rgba(6, 19, 33, 0.98);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================
   NAV CONTAINER
========================================= */

.nav-container {
    width: 100%;
    max-width: none;

    height: 82px;

    padding-left: 30px;
    padding-right: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    transition: transform 0.3s ease;

    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 13%;
    height: 13px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: rotate(-0deg);

    transition: transform 0.4s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-12deg) scale(1.08);
}

.logo-icon span {
    position: absolute;

    width: 20px;
    height: 28px;

    border: 4px solid var(--yellow);

    transform: skew(-20deg);

    transition: opacity 0.3s ease;
}

.logo-icon span:first-child {
    left: 3px;
}

.logo-icon span:last-child {
    right: 3px;
    opacity: 0.6;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-family: "Arial Black", "Arial", sans-serif;
    
    color: white;

    font-size: 19px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text strong span {
    color: var(--yellow);
}

.logo-text small {
    color: #aebcc5;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 1.3px;

    margin-top: 4px;
}


/* =========================================
   NAV
========================================= */

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 30px;

    margin-left: auto;
}

.nav > a:not(.nav-button) {
    position: relative;

    color: #e5edf2;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.nav > a:not(.nav-button)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--yellow);

    transition: width 0.3s ease;
}

.nav > a:not(.nav-button):hover {
    color: var(--yellow);
}

.nav > a:not(.nav-button):hover::after {
    width: 100%;
}

.nav-button {
    background: var(--yellow);
    color: #111;

    padding: 13px 20px;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

    white-space: nowrap;
}

.nav-button:hover {
    background: white;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    margin-left: auto;

    background: transparent;
    color: white;

    font-size: 22px;

    transition: transform 0.3s ease;
}

.menu-button:hover {
    transform: scale(1.08);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 760px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: none !important;
}


/* =========================================
   CARROSSEL HERO
========================================= */

.hero-slides {
    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #061321 0%,
            #061321 45%,
            #061321 100%
        );
}

.hero-slide {
    position: absolute;

    top: 7%;
    left: 0;

    width: 100%;
    height: 86%;

    opacity: 0;
    visibility: hidden;

    overflow: hidden;

    border-radius: 0;

    transition:
        opacity 1s ease,
        visibility 1s ease;

    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    transform: scale(1.04);

    transition:
        transform 7s ease;
}

.hero-slide.active img {
    transform: scale(1);
}


/* =========================================
   OVERLAY DO CARROSSEL
========================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(6, 19, 33, 1) 0%,
            rgba(6, 19, 33, 0.98) 13%,
            rgba(6, 19, 33, 0.90) 28%,
            rgba(6, 19, 33, 0.55) 45%,
            rgba(6, 19, 33, 0.20) 68%,
            rgba(6, 19, 33, 0.10) 100%
        );
}


/* =========================================
   CONTEÚDO DO HERO
========================================= */

.hero-content {
    position: relative;

    z-index: 3;

    width: 100%;

    height: 100%;
}

.hero-text {
    max-width: 620px;

    padding-top: 80px;

    animation:
        heroTextIn 1s ease both;
}

@keyframes heroTextIn {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================
   OVERLAY DO CARROSSEL
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(6, 19, 33, 1) 0%,
            rgba(6, 19, 33, 0.97) 17%,
            rgba(6, 19, 33, 0.82) 34%,
            rgba(6, 19, 33, 0.38) 58%,
            rgba(6, 19, 33, 0.12) 82%,
            rgba(6, 19, 33, 0.18) 100%
        );
}


/* =========================================
   CONTEÚDO DO HERO
========================================= */

.hero-content {
    position: relative;

    z-index: 3;

    width: 100%;
}

.hero-text {
    max-width: 620px;

    padding-top: 80px;

    animation:
        heroTextIn 1s ease both;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;

    color: var(--yellow);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero h1 {
    color: white;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(48px, 6vw, 78px);

    font-weight: 900;

    line-height: 0.98;

    letter-spacing: -3px;

    text-transform: uppercase;

    margin-bottom: 25px;

    max-width: 650px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    max-width: 530px;

    color: #d8e1e7;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================================
   HERO DESKTOP
========================================= */

@media (min-width: 801px) {

    .hero {
        min-height: 100vh;

        height:
            max(760px, 100vh);

        align-items: stretch;
    }


    .hero-content {

        width: 100%;

        height: 100%;

        min-height: inherit;

        margin: 0;

        padding-left:
            clamp(35px, 6vw, 90px);

        padding-right:
            clamp(35px, 6vw, 90px);

        display: flex;

        align-items: flex-end;
    }


    .hero-text {

        width:
            min(5000px, 48vw);

        max-width: 200px;

        padding-top: 0;

        padding-bottom:
            clamp(75px, 10vh, 115px);

        margin: 0;

        z-index: 5;
    }


    .hero h1 {

        max-width: 650px;

        font-size:
            clamp(52px, 6vw, 84px);

        line-height: 0.98;

        margin-bottom: 22px;
    }


    .hero p {

        max-width: 200px;

        margin-bottom: 30px;
    }


    .hero-info {

        position: absolute;

        right:
            clamp(35px, 6vw, 90px);

        bottom:
            clamp(75px, 10vh, 115px);

        margin: 0;

        display: flex;

        align-items: flex-start;

        justify-content: flex-end;

        gap:
            clamp(28px, 4vw, 55px);

        padding-left: 35px;

        border-left:
            1px solid rgba(255, 255, 255, 0.20);

        z-index: 5;
    }


    .hero-info div {

        min-width: 92px;
    }


    .hero-info strong {

        font-size:
            clamp(26px, 2.3vw, 34px);
    }


    .hero-info span {

        display: block;

        max-width: 100px;

        line-height: 1.35;
    }


    .hero-slide {

        top: 7%;

        left: 0;

        right: auto;

        width: 100%;

        height: 100%;

        border-radius: 0;
    }


    .hero-slide img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center center;
    }


    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(6, 19, 33, 1) 0%,
                rgba(6, 19, 33, 0.98) 12%,
                rgba(6, 19, 33, 0.91) 27%,
                rgba(6, 19, 33, 0.58) 43%,
                rgba(6, 19, 33, 0.22) 67%,
                rgba(6, 19, 33, 0.10) 100%
            );
    }


    .hero-badge {

        position: absolute;

        right:
            clamp(25px, 3.5vw, 55px);

        top: 50%;

        transform:
            translateY(-50%);

        z-index: 6;

        width: 58px;

        height: 58px;

        border:
            1px solid rgba(255, 255, 255, 0.35);

        border-radius: 50%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        color: #fff;

        font-size: 7px;

        letter-spacing: 1.5px;

        opacity: 0.9;
    }


    .hero-badge i {

        color: var(--yellow);

        font-size: 12px;
    }


    .hero-badge span {

        font-weight: 800;
    }
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 25px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--yellow);
    color: #111;
}

.btn-primary:hover {
    background: white;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18);
}

.btn-outline {
    color: white;

    border:
        1px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    background: white;

    color: var(--blue);

    transform: translateY(-3px);
}

.btn-dark {
    background: var(--blue);
    color: white;
}

.btn-dark:hover {
    background: var(--yellow);

    color: #111;

    transform: translateY(-3px);
}


/* =========================================
   HERO INFO
========================================= */

.hero-info {
    display: flex;

    margin-top: 65px;

    gap: 40px;
}

.hero-info div {
    display: flex;

    flex-direction: column;
}

.hero-info strong {
    color: var(--yellow);

    font-family: "Montserrat", sans-serif;

    font-size: 27px;
    font-weight: 800;
}

.hero-info span {
    color: #b8c5cd;

    font-size: 10px;

    margin-top: 4px;
}


/* =========================================
   SETAS DO CARROSSEL
========================================= */

.carousel-arrow {
    position: absolute;

    top: 50%;

    z-index: 7;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border:
        1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background:
        rgba(6, 19, 33, 0.35);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 15px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-arrow:hover {
    background: var(--yellow);

    border-color: var(--yellow);

    color: #111;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================
   INDICADORES
========================================= */

.carousel-dots {
    position: absolute;

    left: 50%;
    bottom: 35px;

    z-index: 7;

    display: flex;
    align-items: center;

    gap: 8px;

    transform: translateX(-50%);
}

.carousel-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.4);

    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.carousel-dot.active {
    width: 28px;

    border-radius: 10px;

    background: var(--yellow);
}


/* =========================================
   HEADINGS
========================================= */

.section-heading {
    max-width: 700px;
}

.section-heading.centered {
    text-align: center;

    margin:
        0 auto 60px;
}

.section-heading h2 {
    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--yellow-dark);
}

.section-heading p {
    color: #6f7b83;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   EVENTOS
========================================= */

.events {
    background: #ffffff;

    color: var(--blue);

    padding: 90px 0;
}

.events .section-heading h2 {
    color: var(--blue);
}

.events .section-heading p {
    color: #6f7b83;
}

.events-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 1px;

    background:
        rgba(6, 19, 33, 0.15);
}

.event-card {
    min-height: 210px;

    background: var(--blue-dark);

    padding: 35px 25px;

    text-align: center;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.event-card:hover {
    background: var(--blue-light);

    transform: translateY(-7px);

    box-shadow:
        0 15px 30px rgba(6, 19, 33, 0.18);
}

.event-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto 22px;

    color: var(--yellow);

    border:
        1px solid rgba(255, 196, 0, 0.35);

    border-radius: 50%;

    font-size: 20px;
}

.event-card h3 {
    color: white;

    font-size: 14px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.event-card p {
    color: #9cabb4;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   SOBRE
========================================= */

.about {
    padding: 110px 0;

    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 580px;

    object-fit: cover;

    border-radius: 8px;

    transition:
        transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.015);
}

.experience-card {
    position: absolute;

    right: -30px;
    bottom: 35px;

    width: 170px;

    padding: 25px;

    background: var(--yellow);

    color: #111;

    border-radius: 5px;
}

.experience-card strong {
    display: block;

    font-family: "Montserrat", sans-serif;

    font-size: 38px;

    font-weight: 900;
}

.experience-card span {
    display: block;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;

    text-transform: uppercase;
}

.about-content h2 {
    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--yellow-dark);
}

.about-content p {
    color: #6e777e;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 17px;
}

.about-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin: 30px 0;
}

.about-list div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 600;
}

.about-list i {
    color: var(--yellow-dark);
}


/* =========================================
   SERVIÇOS
========================================= */

.services {
    padding: 110px 0;

    background: var(--blue-dark);
}

.services .section-heading h2 {
    color: white;
}

.services .section-heading p {
    color: #aebcc5;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    overflow: hidden;

    padding: 40px 35px;

    min-height: 300px;

    background: var(--blue);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    border-color:
        rgba(255, 196, 0, 0.55);

    background: var(--blue-light);

    transform: translateY(-7px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.16);
}

.service-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color:
        rgba(255, 255, 255, 0.08);

    font-family: "Montserrat", sans-serif;

    font-size: 50px;

    font-weight: 900;
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 196, 0, 0.1);

    color: var(--yellow);

    font-size: 21px;

    margin-bottom: 25px;
}

.service-card h3 {
    color: white;

    font-size: 18px;

    margin-bottom: 15px;
}

.service-card p {
    color: #9cabb4;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-card a {
    color: var(--yellow);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;
}

.service-card a i {
    margin-left: 6px;
}


/* =========================================
   PORTFÓLIO
========================================= */

.portfolio {
    padding: 110px 0;

    background: #ffffff;
}

.portfolio-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.portfolio-header > p {
    max-width: 360px;

    color: #6f7b83;

    font-size: 14px;

    line-height: 1.7;
}

.portfolio-tabs {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    margin:
        0 0 40px;
}

.portfolio-tab {
    padding:
        12px 22px;

    border:
        1px solid #dce4e9;

    border-radius: 999px;

    background: #ffffff;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-tab:hover {
    color: #111;

    background: #f4f6f7;

    border-color:
        var(--yellow-dark);

    transform:
        translateY(-2px);
}

.portfolio-tab.active {
    background: var(--yellow);

    color: #111;

    border-color:
        var(--yellow);

    box-shadow:
        0 8px 20px rgba(6, 19, 33, 0.12);
}

.portfolio-panel[hidden] {
    display: none !important;
}

.portfolio-panel {
    width: 100%;

    animation:
        portfolioPanelIn 0.45s ease;
}

@keyframes portfolioPanelIn {
    from {
        opacity: 0;
        transform:
            translateY(15px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

.portfolio-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    grid-template-rows:
        280px 280px;

    gap: 15px;

    width: 100%;
}

.portfolio-item {
    position: relative;

    overflow: hidden;

    min-height: 0;

    border-radius: 5px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.portfolio-item.large {
    grid-row:
        span 2;
}

.portfolio-item:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(6, 19, 33, 0.18);
}

.portfolio-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease;
}

.portfolio-item:hover img {
    transform:
        scale(1.07);
}

.portfolio-overlay {
    position: absolute;

    inset:
        auto 0 0;

    width: 100%;

    padding:
        45px 25px 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;

    box-sizing: border-box;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(6, 19, 33, 0.95)
        );

    z-index: 2;
}

.portfolio-overlay span {
    display: block;

    color: var(--yellow);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin: 0 0 7px 0;
    padding: 0;

    line-height: 1.2;
}

.portfolio-overlay h3 {
    display: block;

    margin: 0;
    padding: 0;

    line-height: 1.2;

    font-size: 18px;
}

.portfolio-button {
    display: flex;

    justify-content: center;

    margin-top: 40px;
}


/* =========================================
   DIFERENCIAIS
========================================= */

.differentials {
    padding: 100px 0;

    background: var(--blue);

    color: white;
}

.differentials .section-heading h2 {
    color: white;
}

.differentials-grid {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    gap: 35px;
}

.differentials-grid .differential {
    flex:
        1 1 0;

    min-width: 0;

    max-width: 220px;

    text-align: center;
}

.differentials .section-heading.centered {
    width: 100%;

    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.differential {
    text-align: center;

    padding: 20px;

    transition:
        transform 0.4s ease;
}

.differential:hover {
    transform:
        translateY(-6px);
}

.differential-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto 22px;

    border:
        1px solid rgba(255, 196, 0, 0.3);

    color: var(--yellow);

    border-radius: 50%;

    font-size: 21px;
}

.differential h3 {
    font-size: 15px;

    margin-bottom: 12px;
}

.differential p {
    color: #a4b3bc;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   PROCESSO
========================================= */

.process {
    padding: 110px 0;

    background: white;
}

.process-grid {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}

.process-item {
    flex: 1;

    text-align: center;

    max-width: 220px;
}

.process-item:hover {
    transform:
        translateY(-5px);
}

.process-number {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto 20px;

    background: var(--yellow);

    color: #111;

    border-radius: 50%;

    font-family: "Montserrat", sans-serif;

    font-size: 18px;

    font-weight: 900;
}

.process-item h3 {
    margin-bottom: 10px;

    font-size: 17px;
}

.process-item p {
    color: #737d84;

    font-size: 12px;

    line-height: 1.6;
}

.process-line {
    width: 50px;
    height: 1px;

    background: #d5dfe4;
}


/* =========================================
   CTA
========================================= */

.cta {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    text-align: center;

    background-image:
        url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=2200&q=85");

    background-size: cover;

    background-position: center;
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(6, 19, 33, 0.9);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: auto;
}

.cta h2 {
    color: white;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.cta h2 span {
    color: var(--yellow);
}

.cta p {
    color: #d0dce3;

    font-size: 15px;

    margin-bottom: 30px;
}


/* =========================================
   CONTATO
========================================= */

.contact {
    padding: 110px 0;

    background: #f2f5f7;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.contact-info h2 {
    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(35px, 4vw, 50px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.contact-info > p {
    color: #707b82;

    font-size: 14px;

    line-height: 1.8;

    max-width: 450px;

    margin-bottom: 40px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}

.contact-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);

    color: #111;

    border-radius: 50%;
}

.contact-item div:last-child {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.contact-item span {
    color: #888;

    font-size: 10px;

    text-transform: uppercase;
}

.contact-item strong {
    font-size: 14px;
}


/* =========================================
   FORMULÁRIO
========================================= */

.contact-form-wrapper {
    padding: 45px;

    background: white;

    border:
        1px solid #dce4e9;

    box-shadow:
        0 20px 60px rgba(6, 19, 33, 0.08);
}

.form-heading {
    margin-bottom: 30px;
}

.form-heading h3 {
    font-family: "Montserrat", sans-serif;

    font-size: 25px;

    margin-bottom: 7px;
}

.form-heading p {
    color: #888;

    font-size: 13px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;
}

.form-group label {
    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding:
        14px 15px;

    border:
        1px solid #d8e0e5;

    background: #fafcfd;

    outline: none;

    font-size: 13px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color:
        var(--yellow-dark);

    background: white;

    box-shadow:
        0 0 0 3px rgba(255, 196, 0, 0.08);
}

.form-button {
    width: 100%;

    margin-top: 5px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--blue-deep);

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.5fr 1fr;

    gap: 50px;

    padding: 75px 0;
}

.footer-brand p {
    max-width: 280px;

    color: #899ca9;

    font-size: 12px;

    line-height: 1.7;

    margin-top: 20px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h4 {
    color: var(--yellow);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.footer-column a {
    color: #9aaab5;

    font-size: 12px;
}

.footer-column a:hover {
    color: white;

    transform:
        translateX(3px);
}

.footer-column a i {
    width: 18px;
}

.social-links {
    display: flex;

    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;
}

.social-links a:hover {
    color: #111;

    background: var(--yellow);

    border-color:
        var(--yellow);

    transform:
        translateY(-3px);
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #637784;

    font-size: 10px;
}


/* =========================================
   WHATSAPP
========================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;

    background: #25d366;

    color: white;

    border-radius: 50%;

    font-size: 28px;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.3);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform:
        scale(1.1);

    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.4);
}


/* =========================================
   ANIMAÇÕES
========================================= */

.animate-on-scroll,
.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animate-on-scroll.visible,
.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   RESPONSIVO - 1000
========================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 18px;
    }

    .events-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .differentials-grid {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

        max-width: 700px;
    }

    .differentials-grid .differential {
        max-width: none;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .carousel-prev {
        left: 20px;
    }

    .carousel-next {
        right: 20px;
    }

    .hero-slide {
        width: 94%;
        height: 92%;

        right: 1%;
        top: 4%;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .header .nav-container {
        width: 100%;
        max-width: none;

        padding-left: 20px;
        padding-right: 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex-shrink: 0;
    }

    .nav {
        position: absolute;

        top: 82px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

        margin-left: 0;

        background: var(--blue-deep);

        border-top:
            1px solid rgba(255, 255, 255, 0.08);

        animation:
            mobileMenuIn 0.3s ease;
    }

    @keyframes mobileMenuIn {
        from {
            opacity: 0;
            transform:
                translateY(-10px);
        }

        to {
            opacity: 1;
            transform:
                translateY(0);
        }
    }

    .nav.active {
        display: flex;
    }

    .nav > a {
        padding: 12px 0;
    }

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

    .menu-button {
        display: flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        margin-left: auto;
    }


    /* =====================================
       HERO TABLET
    ===================================== */

    .hero {
        min-height: 720px;
        height: auto;

        align-items: center;
    }

    .hero-content {
        width: 100%;

        min-height: 720px;

        height: auto;

        padding:
            0 20px;

        display: flex;

        align-items: flex-end;
    }

    .hero-slide {
        top: 0;
        right: 0;

        width: 100%;
        height: 100%;

        border-radius: 0;
    }

    .hero-slide img {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 19, 33, 0.97) 0%,
                rgba(6, 19, 33, 0.78) 42%,
                rgba(6, 19, 33, 0.35) 100%
            );
    }

    .hero-text {
        width: 100%;

        max-width: 680px;

        padding-top: 0;

        padding-bottom: 115px;
    }

    .hero h1 {
        max-width: 620px;
    }

    .hero-info {
        position: static;

        margin-top: 38px;

        padding-left: 0;

        border-left: 0;

        gap: 24px;

        justify-content: flex-start;
    }

    .hero-info div {
        min-width: 0;
    }

    .hero-info span {
        max-width: 95px;

        line-height: 1.35;
    }

    .hero-badge {
        display: none;
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;

        font-size: 13px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-image img {
        height: 450px;
    }

    .experience-card {
        right: 15px;
    }

    .services-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            250px 250px 250px;
    }

    .portfolio-item.large {
        grid-column:
            span 2;

        grid-row:
            span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width:
            min(100% - 30px, 1180px);
    }

    .nav-container {
        height: 72px;
    }

    .nav {
        top: 72px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        min-height: 720px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-slide {
        top: 0;
        right: 0;

        width: 100%;
        height: 100%;

        border-radius: 0;
    }

    .hero-slide img {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 19, 33, 0.48) 0%,
                rgba(6, 19, 33, 0.66) 38%,
                rgba(6, 19, 33, 0.96) 100%
            );
    }

    .hero-text {
        width: 100%;

        padding-bottom: 55px;
    }

    .hero h1 {
        font-size:
            clamp(40px, 12vw, 52px);

        line-height: 0.98;

        letter-spacing: -2px;
    }

    .hero p {
        max-width: 520px;

        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-height: 50px;
    }

    .hero-info {
        margin-top: 32px;

        gap: 18px;

        flex-wrap: wrap;
    }

    .hero-info strong {
        font-size: 22px;
    }

    .hero-info span {
        font-size: 9px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .carousel-prev {
        left: 12px;
    }

    .carousel-next {
        right: 12px;
    }

    .carousel-dots {
        bottom: 20px;
    }

    .carousel-dot {
        width: 7px;
        height: 7px;
    }

    .carousel-dot.active {
        width: 22px;
    }

    .events-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .event-card {
        min-height: 180px;

        padding:
            25px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-tabs {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

        margin-bottom: 30px;

        scrollbar-width: thin;
    }

    .portfolio-tab {
        flex:
            0 0 auto;

        padding:
            11px 17px;

        font-size: 10px;
    }

    .portfolio-header {
        flex-direction: column;

        align-items: flex-start;
    }

    .portfolio-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(4, 250px);
    }

    .portfolio-item.large {
        grid-column: auto;

        grid-row: auto;
    }

    .differentials-grid {
        grid-template-columns:
            1fr 1fr;

        max-width: 600px;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-line {
        width: 1px;

        height: 40px;
    }

    .contact-form-wrapper {
        padding:
            25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 24px;
    }
}


/* =========================================
   TELAS MUITO PEQUENAS
========================================= */

@media (max-width: 400px) {

    .events-grid {
        grid-template-columns: 1fr;
    }

    .differentials-grid {
        grid-template-columns: 1fr;

        max-width: 320px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-info {
        flex-wrap: wrap;
    }

    .hero-content {
        min-height: 720px;
    }

    .hero-text {
        padding-bottom: 42px;
    }

    .hero-info {
        gap: 14px;
    }
}


/* =========================================
   FOCO / ACESSIBILIDADE
========================================= */

:focus-visible {
    outline: 2px solid var(--yellow);

    outline-offset: 4px;
}


/* =========================================
   REDUÇÃO DE MOVIMENTO
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}


/* =========================================
   RESPONSIVO (overlay do portfólio)
========================================= */

@media (max-width: 768px) {

    .portfolio-overlay {
        padding: 45px 18px 18px;
    }

    .portfolio-overlay span {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {

    .portfolio-overlay {
        padding: 40px 15px 15px;
    }
}