﻿:root {
    --primary: #033640;
    --accent: #e5751c;
    --text: #171717;
    --muted: #4f4f4f;
    --bg-light: #efefef;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
}

body {
    font-family: "Lato", sans-serif;
    color: var(--text);
    background: #f3f3f3;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body > :first-child {
    margin-top: 0 !important;
}

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section-gap {
    padding: 72px 0;
}

.top-alert {
    background: #003947;
    color: #fff;
    text-align: center;
    font-weight: 800;
    padding: 7px 10px 8px;
    font-size: 17px;
    line-height: 1.2;
    margin: 0 !important;
    border-top: 0;
}

.header-wrap {
    background: #fff;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 20px 0 18px;
}

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

.brand-logo {
    width: 138px;
    max-width: 100%;
    height: auto;
    display: block;
}

.header-info {
    display: flex;
    gap: 46px;
    text-align: right;
    align-items: flex-start;
    margin-left: auto;
    justify-content: flex-end;
}

.header-info p {
    margin: 0;
    max-width: 335px;
    line-height: 1.45;
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.header-info strong {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.hero {
    position: relative;
    background: #003947;
    min-height: 610px;
    color: #fff;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(360px, 420px) 444px;
    gap: 54px;
    align-items: center;
    width: min(1600px, 100%);
    margin: 0 auto;
    padding: 0 92px;
    background: url('../img/banner.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.hero-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 86, 97, 0.64) 0%,
        rgba(7, 86, 97, 0.64) 50%,
        rgba(0, 0, 0, 0.80) 50%,
        rgba(0, 0, 0, 0.80) 92%,
        rgba(7, 86, 97, 0.62) 92%,
        rgba(7, 86, 97, 0.62) 100%
    );
    z-index: 1;
}

.hero-copy,
.lead-box {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    font-size: 50px;
    margin: 0 0 26px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 310px;
}

.hero-copy p {
    font-size: 30px;
    font-weight: 600;
    color: #f0f3f5;
    max-width: 376px;
    margin: 0;
    line-height: 1.13;
}

.lead-box {
    background: rgba(0, 0, 0, 0.90);
    padding: 40px 34px 42px;
    border-radius: 0;
    width: 444px;
    min-height: 515px;
    max-width: 444px;
    justify-self: center;
}

.lead-box h2 {
    margin: 0 0 34px;
    font-size: 30px;
    line-height: 1.13;
    font-weight: 700;
    color: #ffffff;
    max-width: 304px;
}

.feedback {
    font-size: 0.98rem;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 6px;
}

.feedback.ok {
    background: #115b27;
}

.feedback.erro {
    background: #8a1d1d;
}

.lead-box form {
    display: grid;
    gap: 18px;
}

.lead-box input {
    width: 100%;
    border: none;
    border-radius: 0;
    height: 54px;
    padding: 12px 8px;
    font-size: 15px;
    font-family: "Lato", sans-serif;
    background: #ffffff;
    color: #6f6f6f;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.btn {
    border: none;
    border-radius: 3px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.lead-box .btn-primary {
    margin-top: 4px;
    height: 49px;
    padding: 0 8px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
}

.btn-light {
    background: #fff;
    color: #000;
}

.benefits h3 {
    text-align: center;
    font-size: 45px;
    line-height: 1.15;
    margin: 0 auto 38px;
    font-weight: 400;
    color: #000;
    max-width: 668px;
}

.benefits h3 span {
    font-weight: 800;
    display: block;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

.benefit-grid article {
    text-align: center;
}

.benefit-grid img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 12px;
    object-fit: cover;
    border: 2px solid #111;
}

.benefit-grid h4 {
    margin: 0 0 10px;
    font-size: 1.6rem;
}

.benefit-grid p {
    margin: 0;
    color: #323232;
    line-height: 1.45;
    font-size: 1.06rem;
}

.split {
    display: grid;
    grid-template-columns: 479px 1fr;
    background: #00303c;
    width: min(1914px, 100%);
    margin: 0 auto;
}

.split-item {
    min-height: 473px;
}

.split-item.image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-item.image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(185, 215, 244, 0.58);
}

.split-item.dark {
    background: #00303c;
    color: #fff;
    padding: 40px 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.split-item.dark h3 {
    font-size: 41px;
    line-height: 1.04;
    margin: 0 0 24px;
    text-transform: uppercase;
    text-align: center;
    max-width: 431px;
    color: #ffffff;
}

.split-item.dark p {
    font-size: 20px;
    line-height: 1.35;
    margin: 0 0 24px;
    font-weight: 700;
    text-align: center;
    max-width: 308px;
    color: #ffffff;
}

.split-item.dark ul {
    margin: 0;
    padding-left: 0;
    display: grid;
    gap: 6px;
    font-size: 19px;
    line-height: 1.25;
    list-style: none;
    width: 187px;
    color: #ffffff;
}

.split-item.dark li::before {
    content: ">";
    margin-right: 4px;
}

.team {
    display: grid;
    gap: 44px;
}

.profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #fff;
}

.profile.reverse img {
    order: 2;
}

.profile > div {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px;
}

.profile h3 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 2.8vw, 3rem);
    text-transform: uppercase;
}

.profile h3 span {
    font-weight: 800;
}

.profile p {
    margin: 0 0 10px;
    font-size: 1.32rem;
    line-height: 1.4;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-bottom: 72px;
}

.gallery img {
    height: 220px;
    object-fit: cover;
}

.highlights {
    background: #d3d3d3;
    padding: 90px 0 86px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
    align-items: start;
    max-width: 980px;
}

.cards article {
    text-align: center;
    padding: 0 8px;
}

.highlight-icon {
    font-size: 3.4rem;
    color: #101010;
    display: block;
    margin-bottom: 26px;
}

.cards h4 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 2.2vw, 2.45rem);
    font-weight: 700;
    color: #101010;
}

.cards p {
    margin: 0;
    font-size: clamp(1.05rem, 1.38vw, 1.3rem);
    line-height: 1.5;
    color: #2d2d2d;
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
}

.location {
    background-color: #efefef;
    background-image:
        linear-gradient(rgba(239, 239, 239, 0.82), rgba(239, 239, 239, 0.82)),
        url('../img/bg-branco.png');
    background-repeat: repeat, repeat;
    background-size: auto, 400px 400px;
    padding-top: 74px;
    padding-bottom: 0;
}

.location-copy {
    text-align: center;
    max-width: 820px;
}

.location-copy h3 {
    margin: 0 0 22px;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
}

.location-copy p {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    color: #000;
}

.location-copy p + p {
    margin-top: 16px;
}

.map-wrap {
    margin-top: 34px;
    width: min(1474px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.map-wrap iframe {
    width: 100%;
    height: 366px;
    min-height: 366px;
    border: 0;
}

.final-cta {
    background: #d9d9d9;
    text-align: center;
    padding: 58px 0 28px;
}

.final-cta h3 {
    font-size: 45px;
    line-height: 1.12;
    font-weight: 700;
    color: #000;
    margin: 0 auto 20px;
    max-width: 766px;
}

.final-cta .btn-primary {
    min-width: 357px;
    height: 50px;
    padding: 0 8px;
    border-radius: 0;
    font-size: 26px;
    font-weight: 700;
}

.responsavel {
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.08;
    color: #000;
    font-weight: 400;
}

footer {
    text-align: center;
    background: #00333d;
    color: #fff;
    padding: 16px;
}

.whats-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #21b446;
    color: #fff;
    text-decoration: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1080px) {
    .header-info {
        flex-direction: column;
        text-align: left;
    }

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

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

@media (max-width: 880px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 54px 20px;
        width: 100%;
    }

    .hero-content::after {
        background: rgba(0, 0, 0, 0.56);
    }

    .split,
    .profile {
        grid-template-columns: 1fr;
    }

    .profile.reverse img {
        order: 0;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .top-alert {
        font-size: 17px;
    }

    .benefit-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    .lead-box h2 {
        font-size: 1.9rem;
    }

    .hero-copy p,
    .split-item.dark p,
    .split-item.dark ul,
    .profile p,
    .cards p,
    .location-copy p {
        font-size: 1.05rem;
    }

    .whats-float {
        width: 56px;
        height: 56px;
        font-size: 0.8rem;
    }
}
