@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --azul-escuro: #111c2a;
    --azul-texto: #142033;
    --amarelo: #0065c4;
    --cinza-fundo: #f7f7f7;
    --cinza-texto: #6b7280;
    --branco: #fff;
    --borda-suave: rgba(0, 0, 0, 0.08);
    --sombra: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
 scroll-padding-top: 90px;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--azul-texto);
    background: var(--branco);
}

.lang-select {
    background: white;
    border: 1px solid #ddd;
    outline: none;
}

.lang-btn-format {
    position: static;
    top: 20px;
    right: 60px;
    gap: 6px;
    background: rgba(15, 35, 65, 0.9);
    padding: 6px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.lang-switch-desktop {
    display: flex;
}

.lang-switch-mobile {
    display: flex;
    width: 150px;
    justify-content: center;
}
.lang-btn {
    border: none;
    background: transparent;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-btn.active {
    background: #2563eb;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none !important;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.topo {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    background: rgba(24, 41, 63, 0.82);
    backdrop-filter: blur(8px);
}

.topo-inner {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.lang-btn img {
    width: 28px;
    height: 20px;
    display: block;
    border-radius: 3px;
}

.lang-btn:hover {
    transform: scale(1.1);
}

.logo .logo-img {
    height: 96px;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 32px;
}

.menu a,
.menu-mobile a {
    color: var(--branco);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.menu a:hover,
.menu-mobile a:hover {
    color: #dcdcdc;
}

.menu-mobile-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--branco);
    font-size: 1.6rem;
    cursor: pointer;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 20px;
    background: rgba(24, 41, 63, 0.82);
    backdrop-filter: blur(8px);
}

.menu-mobile.ativo {
    display: flex;
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }

    .menu-mobile-btn {
        display: block;
    }
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    padding: 140px 20px 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80")
            center/cover no-repeat;
}

.hero h1 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: clamp(36px, 5vw, 70px);
    line-height: 1.1;
    text-align: center;
    letter-spacing: -1px;
    font-weight: 800;
}

.overlay {
    display: none;
}

.hero-conteudo {
    text-align: center;
    max-width: 980px;
}

.hero-subtitulo {
    color: var(--branco);
    font-size: 1.7rem;
    font-style: italic;
    margin-bottom: 22px;
}

.hero-titulo {
    color: var(--branco);
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 34px;
}

.hero-botao {
    display: inline-block;
    background: var(--amarelo);
    color: var(--branco);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 4px;
    transition: transform 0.2s ease, filter 0.2s ease;
    margin-top: 24px;
}

.hero-botao:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.servicos {
    padding: 90px 0;
    background: var(--cinza-fundo);
}

.titulo-secao {
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--azul-texto);
    margin-bottom: 14px;
}

.subtitulo-secao {
    text-align: center;
    color: var(--cinza-texto);
    font-style: italic;
    margin-bottom: 48px;
}

.imagens-atuation-modais {
    width: 50%;
}

.container-cards {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    gap: 32px;
}

.card-servico {
    background: var(--branco);
    border-radius: 16px;
    padding: 40px 30px;
    min-height: 360px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.14);
}

.icone-servico {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--amarelo);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icone-servico i {
    font-size: 42px;
    color: var(--branco);
}

.card-servico h3 {
    font-size: 1.9rem;
    margin-bottom: 16px;
    color: var(--azul-texto);
}

.card-servico p {
    color: var(--cinza-texto);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 980px) {
    .container-cards {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .card-servico {
        width: 100%;
        max-width: 360px;
        min-height: auto;
    }
    .imagens-atuation-modais {
        width: 100%;
    }
}

.areas {
    padding: 64px 0px;
}

.grid-areas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.area-card {
    background: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sombra);
    border: 1px solid var(--borda-suave);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.area-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.area-card h3,
.modais-areas h3 {
    color: var(--azul-texto);
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    margin: 22px 16px 8px;
}

.area-card p {
    text-align: center;
    color: var(--cinza-texto);
    margin: 0 16px 22px;
}

.sobre,
.contato {
    padding: 100px 0;
}

.sobre-grid,
.contato-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 42px;
    align-items: start;
}

.sobre-box {
    display: grid;
    gap: 18px;
    background: var(--cinza-fundo);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--borda-suave);
}

.sobre-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--azul-texto);
}

.sobre-box p {
    color: var(--cinza-texto);
    line-height: 1.7;
}

.time {
    padding: 90px 0;
    background: var(--branco);
}

.time-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pessoa {
    background: var(--branco);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    transition: 0.25s ease;
}

.pessoa img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #011a6e;
}

.pessoa h3 {
    font-size: 24px;
    color: var(--azul-texto);
    margin-bottom: 8px;
}

.pessoa p {
    color: var(--cinza-texto);
    margin-bottom: 18px;
    line-height: 1.6;
}

.redes-pessoa {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.redes-pessoa a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--amarelo);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.redes-pessoa a:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.redes-pessoa i {
    font-size: 18px;
}

.rodape {
    background: var(--azul-escuro);
    color: rgba(255, 255, 255, 0.82);
    padding: 26px 0;
}

.rodape-inner {
    text-align: center;
}

@media (max-width: 980px) {
    .container-cards,
    .grid-areas,
    .time-grid,
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .menu {
        display: none;
    }

    .menu-mobile {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        z-index: 1001;
    }

    .menu-mobile-btn {
        display: block;
    }

    .menu-mobile.ativo {
        display: flex;
    }

    .hero-subtitulo {
        font-size: 1.2rem;
    }

    .card-servico h3,
    .area-card h3 {
        font-size: 1.5rem;
    }
}
/* SOBRE NÓS / TIMELINE */
.sobre {
    padding: 90px 0;
    background: #f7f7f7;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #d9dee7;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 90px;
    min-height: 140px;
}

/* ITENS DA DIREITA NO HTML = TEXTO À ESQUERDA */
.timeline-item.direita {
    justify-content: flex-start;
}

.timeline-item.direita .timeline-texto {
    width: calc(50% - 90px);
    text-align: right;
    padding-right: 120px;
}

.timeline-item.direita .timeline-imagem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ITENS DA ESQUERDA NO HTML = TEXTO À DIREITA */
.timeline-item.esquerda {
    justify-content: flex-end;
}

.timeline-item.esquerda .timeline-texto {
    width: calc(50% - 90px);
    text-align: left;
    padding-left: 120px;
}

.timeline-item.esquerda .timeline-imagem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* IMAGEM CENTRAL */
.timeline-imagem {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 4px solid #eef2f7;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

.timeline-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BLOCO DE TEXTO */
.timeline-texto {
    position: relative;
}

.timeline-texto h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #0f2341;
    line-height: 1.2;
}

.timeline-texto h4 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #0f2341;
    line-height: 1.3;
}

.timeline-texto p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    max-width: 420px;
}

/* limita melhor a largura do texto */
.timeline-item.direita .timeline-texto p {
    margin-left: auto;
}

.timeline-item.esquerda .timeline-texto p {
    margin-right: auto;
}

/* tablet */
@media (max-width: 992px) {
    .timeline {
        padding: 60px 20px 20px;
    }

    .timeline-item.direita .timeline-texto,
    .timeline-item.esquerda .timeline-texto {
        width: calc(50% - 70px);
        padding-left: 90px;
        padding-right: 90px;
    }

    .timeline-imagem {
        width: 82px;
        height: 82px;
    }
}
/* sobre-empresa */
.sobre-empresa {
    padding: 80px 20px;
    background: #f9f9f9;
}

.sobre-empresa .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sobre-empresa .descricao {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sobre-diferenciais-linhas {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-top: 60px;
}

.sobre-linha {
    display: flex;
    align-items: center;
    gap: 45px;
    text-align: left;
}

.sobre-linha.invertida {
    flex-direction: row-reverse;
}

.sobre-linha img {
    width: 100%;
    max-width: 460px;
    border-radius: 18px;
}

.sobre-texto {
    width: 55%;
}

.sobre-texto h3 {
    font-size: 36px;
    color: var(--amarelo);
    margin-bottom: 18px;
    font-weight: 700;
}

.sobre-texto p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
    .sobre-linha,
    .sobre-linha.invertida {
        flex-direction: column;
        text-align: center;
    }

    .sobre-linha img,
    .sobre-texto {
        width: 100%;
    }

    .sobre-texto h3 {
        font-size: 28px;
    }

    .sobre-texto p {
        font-size: 16px;
    }
}

/* celular */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-item,
    .timeline-item.direita,
    .timeline-item.esquerda {
        justify-content: flex-start;
        min-height: auto;
        padding-left: 80px;
        margin-bottom: 60px;
    }

    .timeline-item.direita .timeline-imagem,
    .timeline-item.esquerda .timeline-imagem {
        position: absolute;
        left: 30px;
        top: 0;
        transform: translateX(-50%);
    }

    .timeline-item.direita .timeline-texto,
    .timeline-item.esquerda .timeline-texto {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .timeline-item.direita .timeline-texto p,
    .timeline-item.esquerda .timeline-texto p {
        margin: 0;
        max-width: 100%;
    }

    .timeline-imagem {
        width: 72px;
        height: 72px;
    }
}

.timeline-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-texto h3 {
    font-size: 20px;
    color: #142033;
    margin-bottom: 8px;
}

.timeline-texto h4 {
    font-size: 18px;
    color: #142033;
    margin-bottom: 12px;
}

.timeline-texto p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

/* RODAPÉ */
.rodape {
    background: #111c2a;
    color: white;
    padding: 30px 0;
}

.rodape-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rodape-info p,
.rodape-endereco p {
    margin: 4px 0;
    color: rgba(255, 255, 255, 0.85);
}

.rodape-redes {
    display: flex;
    gap: 16px;
    align-items: center;
}

.rodape-redes a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: 999px;
    transition: 0.3s;
    align-items: center;
}

.rodape-redes a:hover {
    background: #0099ff;
    color: #111c2a;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .timeline-item.esquerda .timeline-imagem,
    .timeline-item.direita .timeline-imagem {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-item.esquerda .timeline-texto,
    .timeline-item.direita .timeline-texto {
        grid-column: 2;
        text-align: left;
        padding: 0;
    }

    .timeline-texto {
        margin-left: 24px;
    }

    .timeline-imagem {
        width: 90px;
        height: 90px;
    }

    .rodape-conteudo {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .time-grid {
        flex-direction: column;
    }
}
@media (max-width: 980px) {
    .lang-switch-desktop {
        display: none;
    }
}
