/* =========================================
   RESET / CONFIGURAÇÕES GERAIS
========================================= */

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 80px;
    font-family: "Poppins", sans-serif;
    color: #111827;
    background: #ffffff;
}
/* =========================================
   HEADER
========================================= */

header {
    width: 100%;
    height: 80px;

    background: #ffffff;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    border-bottom: 1px solid #e5e7eb;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05);
}


/* =========================================
   MENU
========================================= */

.menu {
    width: 100%;
    max-width: 1200px;

    height: 80px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;

    z-index: 1002;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;

    width: 150px;
    height: auto;

    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.04);
}


/* =========================================
   LINKS DO MENU
========================================= */

.menu ul {
    display: flex;
    align-items: center;

    gap: 35px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.menu ul li {
    display: flex;
}

.menu ul li a {
    position: relative;

    color: #111827;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    padding: 8px 2px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   HOVER DOS LINKS
========================================= */

.menu ul li a:hover {
    color: #2563eb;

    transform: scale(1.08);
}


/* =========================================
   LINHA ANIMADA DOS LINKS
========================================= */

.menu ul li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #2563eb;

    border-radius: 2px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.menu ul li a:hover::after {
    width: 100%;
}


/* =========================================
   BOTÃO WHATSAPP
========================================= */

.bnt button {
    border: none;

    background: #2563eb;

    padding: 12px 22px;

    border-radius: 9px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.bnt button a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.bnt button:hover {
    background: #1d4ed8;

    transform: scale(1.05);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.20);
}


/* =========================================
   BOTÃO MENU MOBILE
========================================= */

/* Checkbox invisível */

#menu-mobile {
    display: none;
}


/* Ícone ☰ */

.menu-icon {
    display: none;

    color: #111827;

    font-size: 30px;

    cursor: pointer;

    line-height: 1;

    z-index: 1002;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.menu-icon:hover {
    color: #2563eb;

    transform: scale(1.08);
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 768px) {

    body {
        padding-top: 70px;
    }

    header {
        height: 70px;
    }

    .menu {
        height: 70px;

        padding: 0 20px;
    }


    /* Logo */

    .logo img {
        width: 125px;
    }


    /* Mostra botão ☰ */

    .menu-icon {
        display: block;

        margin-left: auto;
    }


    /* Esconde botão WhatsApp */

    .bnt {
        display: none;
    }


    /* =====================================
       MENU MOBILE
    ===================================== */

    .menu ul {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 20px 0;

        background: #ffffff;

        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;

        box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.08);

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    /* Itens */

    .menu ul li {
        width: 100%;

        justify-content: center;
    }


    /* Links */

    .menu ul li a {
        display: block;

        width: 100%;

        padding: 15px 20px;

        text-align: center;

        font-size: 16px;
    }


    /* Hover no celular */

    .menu ul li a:hover {
        transform: scale(1.03);

        color: #2563eb;
    }


    /* =====================================
       MENU ABERTO
    ===================================== */

    #menu-mobile:checked ~ ul {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    /* Ícone ativo */

    #menu-mobile:checked + .menu-icon {
        color: #2563eb;
    }
}


/* =========================================
   CELULARES PEQUENOS
========================================= */

@media (max-width: 400px) {

    .menu {
        padding: 0 15px;
    }

    .logo img {
        width: 110px;
    }

    .menu-icon {
        font-size: 27px;
    }
}

/* =========================================
   SEÇÃO QUEM SOMOS
========================================= */

.topo {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 90px 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    box-sizing: border-box;
}


/* =========================================
   IMAGEM
========================================= */

.topo > img {
    width: 100%;
    max-width: 540px;

    height: 500px;

    object-fit: cover;

    border-radius: 18px;

    display: block;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Hover da imagem */

.topo > img:hover {
    transform: scale(1.02);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.14);
}


/* =========================================
   CONTEÚDO
========================================= */

.topo-conteudo {
    width: 100%;
}


/* =========================================
   TÍTULO
========================================= */

.topo h1 {
    margin: 0 0 25px;

    color: #111827;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;

    position: relative;
}


/* Linha azul abaixo do título */

.topo h1::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin-top: 12px;

    background: #2563eb;

    border-radius: 5px;
}


/* =========================================
   PARÁGRAFOS
========================================= */

.topo p {
    margin: 0 0 18px;

    color: #6b7280;

    font-size: 16px;

    line-height: 1.7;
}


/* Último parágrafo */

.topo p:last-of-type {
    margin-bottom: 30px;
}


/* =========================================
   BOTÃO
========================================= */

.cta-1 {
    margin-top: 10px;
}

.cta-1 button {
    border: none;

    background: #2563eb;

    padding: 14px 25px;

    border-radius: 10px;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.18);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Link do botão */

.cta-1 button a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;
}


/* Hover */

.cta-1 button:hover {
    background: #1d4ed8;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(37, 99, 235, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .topo {
        grid-template-columns: 1fr;

        gap: 40px;

        max-width: 700px;

        padding: 70px 25px;
    }


    .topo > img {
        max-width: 100%;

        height: 400px;

        margin: 0 auto;
    }


    .topo h1 {
        font-size: 36px;
    }
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .topo {
        padding: 55px 20px;

        gap: 30px;
    }


    .topo > img {
        height: 300px;

        border-radius: 14px;
    }


    .topo h1 {
        font-size: 30px;

        margin-bottom: 20px;
    }


    .topo p {
        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 15px;
    }


    .topo p:last-of-type {
        margin-bottom: 25px;
    }


    /* Botão ocupa toda a largura */

    .cta-1 {
        width: 100%;
    }

    .cta-1 button {
        width: 100%;
    }
}


/* =========================================
   SEÇÃO SERVIÇOS
========================================= */

.conteiner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 90px 20px;

    box-sizing: border-box;

    display: grid;

    /* 3 cards por linha */
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    align-items: stretch;
}


/* =========================================
   TÍTULO DA SEÇÃO
========================================= */

.conteiner > h2 {
    grid-column: 1 / -1;

    margin: 0 0 25px;

    text-align: center;

    color: #111827;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;
}


/* Palavra "serviços" */

.conteiner > h2 span {
    color: #2563eb;
}


/* =========================================
   CARD
========================================= */

.caixa {
    position: relative;

    min-height: 340px;

    height: 100%;

    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   HOVER DO CARD
========================================= */

.caixa:hover {
    transform: translateY(-8px);

    border-color: #2563eb;

    box-shadow:
        0 18px 40px rgba(37, 99, 235, 0.12);
}


/* =========================================
   ÍCONE
========================================= */

.caixa i {
    width: 60px;
    height: 60px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(37, 99, 235, 0.10);

    color: #2563eb;

    font-size: 28px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   HOVER DO ÍCONE
========================================= */

.caixa:hover i {
    background: #2563eb;

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================
   TÍTULO DO CARD
========================================= */

.caixa h3 {
    margin: 0 0 15px;

    color: #111827;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================
   TEXTO DO CARD
========================================= */

.caixa p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================
   ÁREA DO BOTÃO
========================================= */

.caixa .bnt {
    /*
       Empurra o botão para o final
       do card.
    */

    margin-top: auto;

    width: 100%;

    padding-top: 25px;
}


/* =========================================
   BOTÃO
========================================= */

.caixa .bnt button {
    width: 100%;

    border: none;

    background: #2563eb;

    padding: 13px 20px;

    border-radius: 10px;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   LINK DENTRO DO BOTÃO
========================================= */

.caixa .bnt button a {
    display: block;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================
   HOVER DO BOTÃO
========================================= */

.caixa .bnt button:hover {
    background: #1d4ed8;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.20);
}


/* =========================================
   VALOR PEQUENO
========================================= */

.caixa .bnt button small {
    font-size: 11px;

    vertical-align: super;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .conteiner {
        grid-template-columns: repeat(2, 1fr);

        padding: 70px 25px;

        gap: 20px;
    }


    .conteiner > h2 {
        margin-bottom: 25px;

        font-size: 36px;
    }


    .caixa {
        min-height: 320px;

        padding: 30px 25px;
    }


    .caixa h3 {
        font-size: 20px;
    }
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .conteiner {
        grid-template-columns: 1fr;

        padding: 60px 20px;

        gap: 20px;
    }


    .conteiner > h2 {
        margin-bottom: 20px;

        font-size: 30px;
    }


    .caixa {
        min-height: 0;

        height: auto;

        padding: 30px 25px;
    }


    .caixa h3 {
        font-size: 20px;
    }


    .caixa p {
        font-size: 15px;

        line-height: 1.6;
    }


    /* ÁREA DO BOTÃO */

    .caixa .bnt {
        margin-top: 25px;

        padding-top: 0;

        width: 100%;

        display: block;
    }


    /* BOTÃO */

    .caixa .bnt button {
        width: 100%;

        padding: 14px 18px;

        display: block;
    }


    /* LINK DO BOTÃO */

    .caixa .bnt button a {
        display: block;

        width: 100%;

        color: #ffffff;

        text-decoration: none;

        font-size: 14px;

        font-weight: 600;

        line-height: 1.4;

        white-space: normal;
    }


    /* VALOR PEQUENO */

    .caixa .bnt button small {
        display: inline;

        font-size: 11px;

        vertical-align: super;

        color: #ffffff;
    }

}























/* =========================================
SEÇÃO DIFERENCIAIS
========================================= */

.diferenciais {
    width: 100%;
    padding: 90px 20px;
    background: #f5f7fa;
    box-sizing: border-box;
}

.diferenciais-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =========================================
TÍTULO
========================================= */

.diferenciais-container h2 {
    margin: 0 0 15px;
    text-align: center;
    color: #111827;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.diferenciais-container h2 span {
    color: #2563eb;
}

/* =========================================
SUBTÍTULO
========================================= */

.diferenciais-subtitulo {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================
GRID DOS DIFERENCIAIS
========================================= */

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* =========================================
CARD
========================================= */

.diferencial {
    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    text-align: center;

    box-sizing: border-box;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* =========================================
HOVER DO CARD
========================================= */

.diferencial:hover {
    transform: translateY(-8px);

    border-color: #2563eb;

    box-shadow:
        0 18px 40px rgba(37, 99, 235, 0.12);
}

/* =========================================
ÍCONE
========================================= */

.diferencial i {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(37, 99, 235, 0.10);

    color: #2563eb;

    border-radius: 14px;

    font-size: 28px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

/* =========================================
HOVER DO ÍCONE
========================================= */

.diferencial:hover i {
    background: #2563eb;
    color: #ffffff;

    transform: scale(1.08);
}

/* =========================================
TÍTULO DO CARD
========================================= */

.diferencial h3 {
    margin: 0 0 12px;

    color: #111827;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.3;
}

/* =========================================
TEXTO DO CARD
========================================= */

.diferencial p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.65;
}

/* =========================================
CTA
========================================= */

.diferenciais-cta {
    margin-top: 50px;

    padding: 40px 30px;

    background: #2563eb;

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.15);

    box-sizing: border-box;
}

/* =========================================
TÍTULO CTA
========================================= */

.diferenciais-cta h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 26px;
    font-weight: 600;
}

/* =========================================
TEXTO CTA
========================================= */

.diferenciais-cta p {
    margin: 0 0 25px;

    color: #dbeafe;

    font-size: 16px;
    line-height: 1.6;
}

/* =========================================
BOTÃO CTA
========================================= */

.diferenciais-cta a {
    display: inline-block;

    padding: 13px 28px;

    background: #ffffff;
    color: #2563eb;

    border-radius: 9px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.diferenciais-cta a:hover {
    background: #f8fafc;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 950px) {

    .diferenciais {
        padding: 70px 25px;
    }

    .diferenciais-container h2 {
        font-size: 36px;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .diferencial {
        padding: 30px 25px;
    }
}

/* =========================================
CELULAR
========================================= */

@media (max-width: 600px) {

    .diferenciais {
        padding: 60px 20px;
    }

    .diferenciais-container h2 {
        font-size: 30px;
    }

    .diferenciais-subtitulo {
        margin-bottom: 35px;
        font-size: 15px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferencial {
        padding: 30px 25px;
    }

    .diferencial h3 {
        font-size: 19px;
    }

    .diferencial p {
        font-size: 15px;
        line-height: 1.6;
    }

    .diferenciais-cta {
        margin-top: 35px;
        padding: 30px 20px;
    }

    .diferenciais-cta h3 {
        font-size: 23px;
    }

    .diferenciais-cta p {
        font-size: 15px;
    }

    .diferenciais-cta a {
        width: 100%;
        box-sizing: border-box;
    }
}


/* =========================================
SEÇÃO DE CONTATO / FORMULÁRIO
========================================= */

.secao-formulario {
    width: 100%;
    padding: 90px 20px;

    background: #ffffff;

    box-sizing: border-box;
}

/* =========================================
CONTAINER
========================================= */

.formulario-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: center;

    box-sizing: border-box;
}

/* =========================================
INFORMAÇÕES
========================================= */

.formulario-info {
    max-width: 470px;
}

.formulario-tag {
    display: inline-block;

    margin-bottom: 16px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

/* =========================================
TÍTULO
========================================= */

.formulario-info h2 {
    margin: 0 0 20px;

    color: #111827;

    font-size: 44px;
    font-weight: 700;

    line-height: 1.15;
}

.formulario-info h2 strong {
    color: #2563eb;
}

/* =========================================
TEXTO
========================================= */

.formulario-info p {
    margin: 0;

    color: #6b7280;

    font-size: 17px;

    line-height: 1.7;
}

/* =========================================
FORMULÁRIO
========================================= */

.formulario {
    width: 100%;

    padding: 45px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;
}

/* =========================================
CAMPOS
========================================= */

.campo {
    margin-bottom: 22px;
}

.campo label {
    display: block;

    margin-bottom: 8px;

    color: #1f2937;

    font-size: 15px;
    font-weight: 600;
}

.campo label span {
    color: #2563eb;
}

/* =========================================
INPUTS
========================================= */

.campo input {
    width: 100%;
    height: 54px;

    padding: 0 17px;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    background: #ffffff;

    color: #111827;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.campo input::placeholder {
    color: #9ca3af;
}

.campo input:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* =========================================
BOTÃO DO FORMULÁRIO
========================================= */

.formulario button {
    width: 100%;
    height: 56px;

    margin-top: 5px;

    border: none;

    border-radius: 10px;

    background: #2563eb;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.formulario button span {
    margin-left: 8px;

    font-size: 20px;
}

.formulario button:hover {
    background: #1d4ed8;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.20);
}

.formulario button:active {
    transform: translateY(0);
}

/* =========================================
AVISO DOS CAMPOS
========================================= */

.obrigatorio {
    display: block;

    margin-top: 15px;

    color: #9ca3af;

    font-size: 12px;
}

/* =========================================
TABLET
========================================= */

@media (max-width: 900px) {

    .secao-formulario {
        padding: 70px 25px;
    }

    .formulario-container {
        grid-template-columns: 1fr;

        gap: 40px;

        max-width: 650px;
    }

    .formulario-info {
        max-width: 100%;

        text-align: center;
    }

    .formulario-info h2 {
        font-size: 36px;
    }

    .formulario-info p {
        font-size: 16px;
    }
}

/* =========================================
CELULAR
========================================= */

@media (max-width: 600px) {

    .secao-formulario {
        padding: 60px 15px;
    }

    .formulario-container {
        gap: 30px;
    }

    .formulario-info h2 {
        font-size: 30px;
    }

    .formulario-info p {
        font-size: 15px;

        line-height: 1.6;
    }

    .formulario {
        padding: 28px 20px;

        border-radius: 14px;
    }

    .campo {
        margin-bottom: 18px;
    }

    .campo input {
        height: 50px;

        font-size: 14px;
    }

    .formulario button {
        height: 52px;

        font-size: 15px;
    }
}

/* =========================================
   RODAPÉ
========================================= */

.rodape {
    width: 100%;

    padding: 25px 20px;

    background: #111827;

    color: #9ca3af;

    text-align: center;

    box-sizing: border-box;
}

.rodape p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
}

.rodape strong {
    color: #2563eb;

    font-weight: 600;
}