@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700&display=swap");

:root {
    --azul-escuro: #082f4f;
    --azul: #075b7b;
    --azul-claro: #39c7df;
    --branco: #ffffff;
    --cinza-claro: #f4f7f9;
    --cinza: #747d85;
    --texto: #26323a;
    --verde: #25d366;
    --sombra: 0 18px 45px rgba(2, 47, 79, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    font-family: "Manrope", Arial, sans-serif;
    color: var(--texto);
    background: var(--branco);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* CABEÇALHO */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    width: 340px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.footer-logo {
    width: 340px;
    justify-content: flex-start;
}

/* MENU */

.navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    color: #252525;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--azul-claro);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--azul-claro);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    padding: 12px 20px;
    border-radius: 30px;
    color: var(--branco);
    background: var(--azul);
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-contact:hover {
    background: var(--azul-escuro);
}

/* MENU MOBILE */

.menu-button {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 7px;
    background: var(--azul);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--branco);
    transition: 0.25s ease;
}

/* BANNER */

.hero {
    position: relative;
    min-height: 720px;
    padding-top: 95px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=90")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(4, 40, 67, 0.96) 0%,
        rgba(5, 61, 92, 0.9) 48%,
        rgba(5, 61, 92, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 720px;
    padding: 90px 0;
}

.hero-label {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #bfefff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.hero h1 {
    max-width: 730px;
    margin-bottom: 26px;
    color: var(--branco);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(50px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.04;
}

.hero p {
    max-width: 620px;
    margin-bottom: 38px;
    color: #d7ebf5;
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* BOTÕES */

.button-primary,
.button-outline,
.button-dark,
.button-white {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.button-primary {
    color: var(--azul-escuro);
    background: var(--branco);
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--branco);
}

.button-dark {
    color: var(--branco);
    background: var(--azul);
}

.button-white {
    color: var(--azul);
    background: var(--branco);
}

.button-primary:hover,
.button-outline:hover,
.button-dark:hover,
.button-white:hover {
    transform: translateY(-3px);
}

/* INFORMAÇÃO DO BANNER */

.hero-info {
    position: absolute;
    right: 5%;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--branco);
    background: rgba(255, 255, 255, 0.11);
}

.hero-info-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--azul);
    background: var(--branco);
    font-size: 22px;
}

.hero-info div:last-child {
    display: flex;
    flex-direction: column;
}

.hero-info strong {
    font-size: 14px;
}

.hero-info span {
    font-size: 12px;
}

/* SETA */

.scroll-button {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 30;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    border-radius: 50%;
    color: var(--branco);
    background: var(--azul);
}

/* BENEFÍCIOS */

.benefits {
    position: relative;
    z-index: 10;
    margin-top: -25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
    background: var(--branco);
    box-shadow: var(--sombra);
    overflow: hidden;
}

.benefit {
    min-height: 135px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;
    border-right: 1px solid #e5edf1;
}

.benefit:last-child {
    border-right: 0;
}

.benefit > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--azul);
    background: #e8f6fa;
    font-size: 23px;
}

.benefit div {
    display: flex;
    flex-direction: column;
}

.benefit strong {
    font-size: 14px;
}

.benefit span {
    color: var(--cinza);
    font-size: 12px;
}

/* QUEM SOMOS */

.about {
    padding: 125px 0 110px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 24px 0 0 24px;
}

.about-image img {
    position: relative;
    z-index: 2;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--sombra);
}

.about-image-decoration {
    position: absolute;
    inset: 0 40px 40px 0;
    border: 12px solid #dff3f8;
    border-radius: 12px;
}

.about-experience {
    position: absolute;
    right: -20px;
    bottom: 40px;
    z-index: 3;
    width: 240px;
    padding: 22px;
    border-radius: 10px;
    color: var(--branco);
    background: var(--azul);
}

.about-experience strong,
.about-experience span {
    display: block;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--azul-claro);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.section-label.light {
    color: #c4eff8;
}

.about-content h2,
.section-heading h2,
.contact-content h2 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 18px;
    color: #69737a;
    font-size: 15px;
    line-height: 1.85;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.about-list i {
    color: var(--azul-claro);
}

/* SERVIÇOS */

.services {
    padding: 105px 0;
    background: var(--cinza-claro);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--cinza);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    min-height: 395px;
    padding: 43px 34px;
    border: 1px solid #dde8ed;
    border-radius: 14px;
    background: var(--branco);
    box-shadow: 0 12px 30px rgba(2, 47, 79, 0.06);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    color: var(--branco);
    background: var(--azul);
}

.service-number {
    position: absolute;
    right: 24px;
    top: 20px;
    color: #d9e6eb;
    font-size: 42px;
    font-weight: 700;
}

.service-highlight {
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 14px;
    border-radius: 0 0 8px 0;
    color: var(--azul-escuro);
    background: var(--azul-claro);
    font-size: 10px;
    font-weight: 700;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--azul);
    background: #e9f7fb;
    font-size: 30px;
}

.service-card.featured .service-icon {
    background: var(--branco);
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.service-card.featured h3 {
    color: var(--branco);
}

.service-card p {
    min-height: 100px;
    margin-bottom: 25px;
    color: #6f7980;
    font-size: 14px;
    line-height: 1.8;
}

.service-card.featured p {
    color: #d6e8ef;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--azul);
    font-size: 11px;
    font-weight: 700;
}

.service-card.featured a {
    color: var(--branco);
}

/* CHAMADA FINAL */

.contact-banner {
    position: relative;
    padding: 75px 0;

    background:
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85")
        center / cover no-repeat;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 65, 96, 0.94);
}

.contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-content h2 {
    color: var(--branco);
}

.contact-content p {
    color: #d5eaf3;
}

/* RODAPÉ */

.footer {
    color: #b8ccd5;
    background: #102d3d;
}

.footer-grid {
    min-height: 370px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.35fr;
    gap: 65px;
    align-items: center;
}

.footer-brand p {
    max-width: 470px;
    font-size: 14px;
}

/* NOME E CNPJ DA EMPRESA */

.footer-company-data {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 22px 0 16px;
}

.footer-company-data strong {
    max-width: 520px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.footer-company-data span {
    color: #b9d7e6;
    font-size: 14px;
    font-weight: 500;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 8px;
    color: var(--branco);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.footer-contact h3 {
    color: #b9d7ff;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 700;
}

.footer-contact p {
    color: #ffffff;
    font-size: 15px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--branco);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* WHATSAPP */

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 40px;
    color: var(--branco);
    background: var(--verde);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    font-size: 12px;
    font-weight: 700;
}

.whatsapp-button i {
    font-size: 26px;
}

/* ANIMAÇÕES */

.service-card,
.benefit,
.about-content,
.about-image {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-card.show,
.benefit.show,
.about-content.show,
.about-image.show {
    opacity: 1;
    transform: translateY(0);
}

/* TABLET */

@media (max-width: 1000px) {

    .logo,
    .footer-logo {
        width: 270px;
    }

    .menu-button {
        display: block;
    }

    .navigation {
        position: absolute;
        top: 95px;
        left: 5%;
        right: 5%;
        display: none;
        flex-direction: column;
        padding: 15px;
        border-radius: 10px;
        background: var(--branco);
        box-shadow: var(--sombra);
    }

    .navigation.open {
        display: flex;
    }

    .nav-link,
    .nav-contact {
        width: 100%;
        padding: 14px;
        text-align: center;
    }

    .hero-info {
        display: none;
    }

    .benefits-grid,
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 70px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* CELULAR */

@media (max-width: 650px) {

    .header-content {
        min-height: 82px;
    }

    .logo,
    .footer-logo {
        width: 205px;
    }

    .navigation {
        top: 82px;
    }

    .hero {
        min-height: 680px;
        padding-top: 82px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-outline {
        width: 100%;
    }

    .about-image img {
        height: 390px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-company-data strong {
        font-size: 13px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
    }

    .whatsapp-button span {
        display: none;
    }
}