/* =========================================================
   N.C.A.I.
   SITE OFICIAL
   STYLE.CSS
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

    --background: #05070b;

    --background-2: #080b11;

    --card: #0c1017;

    --text: #f5f7fb;

    --muted: #929aaa;

    --blue: #0866ff;

    --blue-light: #3183ff;

    --border: rgba(255,255,255,.09);

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--background);

    color: var(--text);

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

    line-height: 1.6;

    overflow-x: hidden;

}


body.chat-open {

    overflow: hidden;

}


img {

    max-width: 100%;

    height: auto;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font: inherit;

}


button {

    cursor: pointer;

}


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

.container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-left: auto;

    margin-right: auto;

}


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

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    transition: .3s ease;

}


.site-header.scrolled {

    background: rgba(5,7,11,.88);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);

}


.navbar {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


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

.brand {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.brand img {
    width: 175px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   MENU
========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-link {

    color: #9ba3b1;

    font-size: .86rem;

    transition: .25s ease;

}


.nav-link:hover,
.nav-link.active {

    color: white;

}


.nav-button {

    border: 1px solid rgba(8,102,255,.5);

    background: rgba(8,102,255,.1);

    color: white;

    padding: 11px 17px;

    border-radius: 10px;

    transition: .25s ease;

}


.nav-button:hover {

    background: var(--blue);

    transform: translateY(-2px);

}


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

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: transparent;

}


.menu-toggle span {

    display: block;

    width: 18px;

    height: 2px;

    background: white;

    margin: 4px auto;

}


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

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top: 130px;

    position: relative;

}


.hero-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 60px;

    align-items: center;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #7c8595;

    font-size: .7rem;

    letter-spacing: .15em;

    font-weight: 700;

    margin-bottom: 25px;

}


.status-dot {

    width: 7px;

    height: 7px;

    background: var(--blue);

    border-radius: 50%;

    box-shadow:
        0 0 15px var(--blue);

}


.hero h1 {

    font-family: "Space Grotesk";

    font-size: clamp(
        3.2rem,
        7vw,
        6.5rem
    );

    line-height: .94;

    letter-spacing: -.065em;

}


.hero h1 span {

    color: var(--blue-light);

}


.hero-description {

    max-width: 650px;

    color: var(--muted);

    margin-top: 30px;

    font-size: 1rem;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;

}


/* =========================================================
   BOTÕES
========================================================= */

.button {

    border: none;

    border-radius: 11px;

    padding: 14px 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 700;

    transition: .25s ease;

}


.button.primary {

    background: var(--blue);

    color: white;

    box-shadow:
        0 12px 35px rgba(8,102,255,.2);

}


.button.primary:hover {

    background: var(--blue-light);

    transform: translateY(-3px);

}


.button.secondary {

    background: rgba(255,255,255,.025);

    border: 1px solid var(--border);

    color: white;

}


.button.secondary:hover {

    transform: translateY(-3px);

    border-color:
        rgba(255,255,255,.2);

}


.button.large {

    padding: 16px 25px;

}


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

.hero-stats {

    display: flex;

    gap: 40px;

    margin-top: 50px;

}


.hero-stats div {

    display: flex;

    flex-direction: column;

}


.hero-stats strong {

    font-family: "Space Grotesk";

    font-size: .95rem;

}


.hero-stats span {

    color: #626b7a;

    font-size: .7rem;

}


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

.hero-visual {

    min-height: 570px;

    display: grid;

    place-items: center;

    position: relative;

}


.logo-card {

    width: min(
        450px,
        90%
    );

    aspect-ratio: 1;

    border-radius: 40px;

    border: 1px solid var(--border);

    background:

        radial-gradient(
            circle,
            rgba(8,102,255,.14),
            transparent 50%
        ),

        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.005)
        );

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0,0,0,.5);

}


.hero-logo {

    width: 72%;

    max-width: 330px;

    height: auto;

    object-fit: contain;

    position: relative;

    z-index: 2;

}


.scan-line {

    position: absolute;

    left: 0;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            transparent
        );

    animation: scan 5s infinite;

}


@keyframes scan {

    0% {

        top: 10%;

        opacity: 0;

    }

    20% {

        opacity: 1;

    }

    80% {

        opacity: 1;

    }

    100% {

        top: 90%;

        opacity: 0;

    }

}


/* =========================================================
   ÓRBITAS
========================================================= */

.orbit {

    position: absolute;

    border: 1px solid rgba(8,102,255,.15);

    border-radius: 50%;

}


.orbit-1 {

    width: 520px;

    height: 190px;

    transform: rotate(-25deg);

}


.orbit-2 {

    width: 550px;

    height: 280px;

    transform: rotate(55deg);

}


/* =========================================================
   ELEMENTOS FLUTUANTES
========================================================= */

.code-box {

    position: absolute;

    border: 1px solid rgba(8,102,255,.3);

    background: rgba(5,7,11,.8);

    color: #65a0ff;

    padding: 8px 11px;

    border-radius: 8px;

    font-size: .7rem;

    z-index: 3;

}


.box-1 {

    top: 18%;

    left: 12%;

}


.box-2 {

    top: 28%;

    right: 12%;

}


.box-3 {

    bottom: 18%;

    left: 14%;

}


.floating-label {

    position: absolute;

    color: #4f5867;

    font-size: .6rem;

    letter-spacing: .16em;

}


.label-1 {

    top: 14%;

    right: 3%;

}


.label-2 {

    bottom: 14%;

    right: 4%;

}


/* =========================================================
   INTRO
========================================================= */

.intro {

    padding: 90px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.intro-grid {

    display: grid;

    grid-template-columns:
        80px
        1.4fr
        .8fr;

    gap: 35px;

}


.section-number {

    color: var(--blue);

    font-family: "Space Grotesk";

}


.section-label {

    color: #687283;

    font-size: .7rem;

    letter-spacing: .16em;

    font-weight: 700;

}


.intro h2 {

    font-family: "Space Grotesk";

    font-size: clamp(
        2rem,
        4vw,
        3.5rem
    );

    line-height: 1;

    letter-spacing: -.045em;

    margin-top: 12px;

}


.intro p {

    color: var(--muted);

    font-size: .9rem;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 120px 0;

}


.section-heading {

    display: grid;

    grid-template-columns:
        1fr
        .7fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 55px;

}


.section-heading h2 {

    font-family: "Space Grotesk";

    font-size: clamp(
        2.8rem,
        5vw,
        5rem
    );

    line-height: .95;

    letter-spacing: -.05em;

    margin-top: 12px;

}


.section-heading h2 span {

    color: var(--blue-light);

}


.section-heading > p {

    color: var(--muted);

}


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

.services-grid {

    display: grid;

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

    gap: 14px;

}


.service-card {

    min-height: 300px;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            transparent
        );

    position: relative;

    transition: .3s ease;

}


.service-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(8,102,255,.4);

}


.service-icon {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    border: 1px solid rgba(8,102,255,.3);

    color: var(--blue-light);

    margin-bottom: 45px;

}


.service-number {

    position: absolute;

    top: 32px;

    right: 32px;

    color: #48505d;

    font-size: .7rem;

}


.service-card h3 {

    font-family: "Space Grotesk";

    font-size: 1.2rem;

    margin-bottom: 10px;

}


.service-card p {

    color: var(--muted);

    font-size: .83rem;

}


.service-card a {

    display: inline-block;

    color: #6da5ff;

    font-size: .75rem;

    margin-top: 22px;

}


/* =========================================================
   SOLUÇÕES
========================================================= */

.solution-panel {

    display: grid;

    grid-template-columns:
        1fr
        .8fr;

    gap: 70px;

    padding: 70px;

    border-radius: 30px;

    border: 1px solid rgba(8,102,255,.25);

    background:

        radial-gradient(
            circle at 10% 30%,
            rgba(8,102,255,.12),
            transparent 30%
        ),

        rgba(8,12,19,.8);

}


.solution-content h2 {

    font-family: "Space Grotesk";

    font-size: clamp(
        2.6rem,
        5vw,
        4.5rem
    );

    line-height: .95;

    letter-spacing: -.05em;

    margin: 15px 0 25px;

}


.solution-content h2 span {

    color: var(--blue-light);

}


.solution-content p {

    max-width: 620px;

    color: var(--muted);

    margin-bottom: 28px;

}


.problem-list {

    border-left: 1px solid var(--border);

    padding-left: 30px;

}


.problem {

    display: grid;

    grid-template-columns:
        35px 1fr;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

}


.problem > span {

    color: var(--blue);

    font-size: .7rem;

}


.problem strong {

    display: block;

    font-size: .9rem;

}


.problem small {

    color: #6e7685;

}


/* =========================================================
   PROJETOS
========================================================= */

.projects-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        .6fr;

    gap: 14px;

}


.project-card,
.coming-card {

    border: 1px solid var(--border);

    border-radius: 23px;

    overflow: hidden;

}


.project-visual {

    min-height: 350px;

    display: grid;

    place-items: center;

    position: relative;

    background:

        radial-gradient(
            circle,
            rgba(8,102,255,.15),
            transparent 50%
        );

}


.project-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(8,102,255,.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(8,102,255,.06) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

}


.project-logo {
    width: min(
        450px,
        100%
    );

    height: auto;

    position: relative;

    z-index: 2;
}


.project-info {

    padding: 28px;

}


.project-info span,
.coming-card > span {

    color: #4e86db;

    font-size: .65rem;

    letter-spacing: .15em;

    font-weight: 700;

}


.project-info h3,
.coming-card h3 {

    font-family: "Space Grotesk";

    font-size: 1.4rem;

    margin: 8px 0;

}


.project-info p {

    color: var(--muted);

    font-size: .83rem;

}


.coming-card {

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(8,102,255,.07),
            rgba(255,255,255,.01)
        );

}


.plus {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(8,102,255,.3);

    border-radius: 14px;

    color: var(--blue);

    font-size: 1.5rem;

    margin-bottom: 45px;

}


.coming-card button {

    border: none;

    background: transparent;

    color: #70a6ff;

    text-align: left;

    margin-top: 25px;

}


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

.process-grid {

    display: grid;

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

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);

}


.process-step {

    min-height: 220px;

    padding: 28px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.process-step > span {

    color: var(--blue);

    font-size: .7rem;

}


.process-step h3 {

    font-family: "Space Grotesk";

    margin-top: 38px;

}


.process-step p {

    color: var(--muted);

    font-size: .82rem;

    margin-top: 8px;

}


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

.about-grid {

    display: grid;

    grid-template-columns:
        .7fr
        1.3fr;

    gap: 100px;

    align-items: center;

}


.about-logo {

    min-height: 430px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 30px;

    background:

        radial-gradient(
            circle,
            rgba(8,102,255,.12),
            transparent 55%
        );

    position: relative;

    padding: 50px;

}


.about-logo img {

    width: min(
        330px,
        100%
    );

    height: auto;

    object-fit: contain;

}


.about-content h2 {

    font-family: "Space Grotesk";

    font-size: clamp(
        2.5rem,
        4.5vw,
        4.4rem
    );

    line-height: .95;

    letter-spacing: -.05em;

    margin: 15px 0 25px;

}


.about-content > p {

    color: var(--muted);

    margin-bottom: 15px;

}


.values {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;

    margin-top: 35px;

}


.values > div {

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 15px;

}


.values strong {

    display: block;

    color: var(--blue);

    font-size: .68rem;

    letter-spacing: .15em;

    margin-bottom: 10px;

}


.values span {

    color: #8d95a3;

    font-size: .78rem;

}


/* =========================================================
   CONTACTO
========================================================= */

.contact-box {

    position: relative;

    text-align: center;

    padding: 110px 30px;

    border-radius: 35px;

    border: 1px solid rgba(8,102,255,.25);

    overflow: hidden;

    background:

        radial-gradient(
            circle,
            rgba(8,102,255,.14),
            transparent 60%
        );

}


.contact-logo-bg {

    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    width: 500px;

    max-width: 80%;

    opacity: .035;

    pointer-events: none;

}


.contact-logo-bg img {

    width: 100%;

    height: auto;

}


.contact-box > *:not(.contact-logo-bg) {

    position: relative;

    z-index: 2;

}


.contact-box h2 {

    font-family: "Space Grotesk";

    font-size: clamp(
        3.2rem,
        7vw,
        6rem
    );

    line-height: 1;

    margin: 12px 0;

}


.contact-box > p {

    max-width: 600px;

    margin: 0 auto 30px;

    color: var(--muted);

}


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

.footer {

    border-top: 1px solid var(--border);

    padding: 70px 0 25px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    padding-bottom: 60px;

}


.footer-brand {

    display: inline-flex;

    align-items: center;

}


.footer-brand img {

    width: 145px;

    height: auto;

}


.footer-grid p {

    color: #737b89;

    margin: 15px 0 5px;

}


.footer-grid small {

    color: #4d5562;

    font-size: .7rem;

}


.footer-links {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    width: 55%;

    justify-self: end;

}


.footer-links div {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-links strong {

    color: #555e6d;

    font-size: .65rem;

    letter-spacing: .15em;

    margin-bottom: 7px;

}


.footer-links a {

    color: #8d95a3;

    font-size: .78rem;

}


.footer-links a:hover {

    color: white;

}


.footer-bottom {

    border-top: 1px solid var(--border);

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    color: #4e5663;

    font-size: .68rem;

}


/* =========================================================
   CHAT FLUTUANTE
========================================================= */

.chat-launcher {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 200;

    display: flex;

    align-items: center;

    gap: 10px;

}


.chat-tooltip {

    background: #10151e;

    border: 1px solid var(--border);

    padding: 9px 12px;

    border-radius: 9px;

    color: #c9cfda;

    font-size: .7rem;

    opacity: 0;

    transform: translateX(10px);

    transition: .25s;

}


.chat-launcher:hover .chat-tooltip {

    opacity: 1;

    transform: translateX(0);

}


#chatButton {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    border: 1px solid rgba(8,102,255,.6);

    background: var(--blue);

    color: white;

    font-size: 1.2rem;

    position: relative;

    box-shadow:
        0 12px 35px rgba(8,102,255,.3);

}


.online-dot {

    position: absolute;

    right: 2px;

    top: 2px;

    width: 10px;

    height: 10px;

    background: #4cff9a;

    border: 2px solid var(--blue);

    border-radius: 50%;

}


/* =========================================================
   CHAT
========================================================= */

.chat-overlay {

    position: fixed;

    inset: 0;

    z-index: 500;

    background: rgba(0,0,0,.65);

    backdrop-filter: blur(6px);

    opacity: 0;

    pointer-events: none;

    transition: .3s;

}


.chat-overlay.open {

    opacity: 1;

    pointer-events: auto;

}


.chat-panel {

    position: absolute;

    top: 0;

    right: 0;

    width: min(
        500px,
        100%
    );

    height: 100%;

    background: #080b10;

    border-left: 1px solid var(--border);

    transform: translateX(100%);

    transition: .35s;

    overflow-y: auto;

}


.chat-overlay.open .chat-panel {

    transform: translateX(0);

}


.chat-header {

    padding: 28px;

    display: flex;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);

}


.chat-status {

    color: #62a0ff;

    font-size: .65rem;

    letter-spacing: .13em;

}


.chat-header h2 {

    font-family: "Space Grotesk";

    font-size: 2rem;

    margin-top: 8px;

}


.close-chat {

    width: 38px;

    height: 38px;

    border: 1px solid var(--border);

    background: transparent;

    color: white;

    border-radius: 10px;

    font-size: 1.5rem;

}


.chat-body {

    padding: 28px;

}


.chat-intro {

    color: #8c95a4;

    font-size: .85rem;

    margin-bottom: 15px;

}


.chat-options {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 9px;

    margin-bottom: 28px;

}


.chat-options button {

    border: 1px solid var(--border);

    background: rgba(255,255,255,.02);

    color: #cdd3de;

    padding: 13px;

    border-radius: 10px;

    text-align: left;

    font-size: .76rem;

}


.chat-options button:hover,
.chat-options button.selected {

    border-color:
        rgba(8,102,255,.6);

    background:
        rgba(8,102,255,.1);

    color: white;

}


/* =========================================================
   FORM
========================================================= */

#projectForm {

    display: grid;

    gap: 17px;

}


#projectForm label {

    display: grid;

    gap: 7px;

    color: #7e8796;

    font-size: .7rem;

}


#projectForm input,
#projectForm textarea {

    width: 100%;

    border: 1px solid var(--border);

    background: #0d1118;

    color: white;

    padding: 13px;

    border-radius: 10px;

    outline: none;

    resize: vertical;

}


#projectForm input:focus,
#projectForm textarea:focus {

    border-color: var(--blue);

}


.submit {

    width: 100%;

}


.form-note {

    text-align: center;

    color: #555e6c;

    font-size: .65rem;

}


/* =========================================================
   ANIMAÇÃO
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 980px) {


    .menu-toggle {

        display: block;

    }


    .nav-menu {

        position: fixed;

        left: 0;

        right: 0;

        top: 82px;

        background: rgba(5,7,11,.97);

        backdrop-filter: blur(20px);

        border-bottom: 1px solid var(--border);

        display: grid;

        padding: 15px 24px 25px;

        transform: translateY(-130%);

        transition: .3s;

    }


    .nav-menu.open {

        transform: translateY(0);

    }


    .nav-link {

        padding: 13px 0;

    }


    .nav-button {

        margin-top: 10px;

    }


    .hero-grid,
    .solution-panel,
    .about-grid {

        grid-template-columns: 1fr;

    }


    .hero-visual {

        min-height: 450px;

    }


    .intro-grid {

        grid-template-columns: 1fr;

    }


    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .services-grid {

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

    }


    .projects-grid {

        grid-template-columns: 1fr;

    }


    .process-grid {

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

    }


    .problem-list {

        border-left: none;

        border-top: 1px solid var(--border);

        padding-left: 0;

        padding-top: 20px;

    }


    .footer-links {

        width: 100%;

    }

}


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

@media(max-width: 620px) {


    .container {

        width:
            calc(100% - 30px);

    }


    .section {

        padding: 80px 0;

    }


    .navbar {

        min-height: 72px;

    }


    .brand img {

        width: 120px;

    }


    .nav-menu {

        top: 72px;

    }


    .hero {

        padding-top: 110px;

    }


    .hero h1 {

        font-size:
            clamp(
                2.8rem,
                14vw,
                4.5rem
            );

    }


    .hero-stats {

        gap: 20px;

        flex-wrap: wrap;

    }


    .hero-visual {

        min-height: 350px;

    }


    .logo-card {

        width: 82%;

        border-radius: 25px;

    }


    .hero-logo {

        width: 78%;

    }


    .orbit {

        display: none;

    }


    .floating-label {

        display: none;

    }


    .services-grid,
    .process-grid,
    .values {

        grid-template-columns: 1fr;

    }


    .solution-panel {

        padding: 35px 20px;

    }


    .project-visual {

        min-height: 260px;

    }


    .project-logo {

        width: 70%;

    }


    .about-logo {

        min-height: 330px;

        padding: 35px;

    }


    .about-logo img {

        width: 90%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-links {

        justify-self: start;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }


    .chat-tooltip {

        display: none;

    }


    .chat-launcher {

        right: 15px;

        bottom: 15px;

    }


    .chat-options {

        grid-template-columns: 1fr;

    }


    .chat-header,
    .chat-body {

        padding: 22px;

    }


    .contact-logo-bg {

        width: 450px;

        max-width: 95%;

    }

}

/* =========================================================
   CONTACT ACTIONS
========================================================= */

.contact-actions {

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 10px;

}


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

.whatsapp-contact {

    min-height: 56px;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 8px 16px 8px 9px;

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

    border-radius: 12px;

    background: rgba(255,255,255,.025);

    color: white;

    text-align: left;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;

}


.whatsapp-contact:hover {

    transform: translateY(-3px);

    border-color:
        rgba(37,211,102,.5);

    background:
        rgba(37,211,102,.06);

}


/* =========================================================
   ÍCONE
========================================================= */

.whatsapp-icon {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #25D366;

    color: white;

}


.whatsapp-icon svg {

    width: 22px;

    height: 22px;

    fill: currentColor;

}


/* =========================================================
   TEXTO
========================================================= */

.whatsapp-text {

    display: flex;

    flex-direction: column;

    gap: 1px;

}


.whatsapp-text strong {

    font-size: .75rem;

    font-weight: 700;

}


.whatsapp-text small {

    color: #707987;

    font-size: .63rem;

}


/* =========================================================
   SETA
========================================================= */

.whatsapp-arrow {

    color: #25D366;

    font-size: 1rem;

    margin-left: 8px;

}

/* =========================================================
   SERVIÇOS TERMINADOS — PUBLICAÇÃO NO 05 / PROCESSO
========================================================= */
.completed-services {
    margin-top: 18px;
}
.completed-services-list {
    display: grid;
    gap: 10px;
}
.completed-service-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}
.completed-service-card:has(img) {
    grid-template-columns: 58px 1fr;
}
.completed-service-card img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.completed-service-card > div {
    min-width: 0;
}
.completed-service-card span {
    color: var(--blue-light);
    font-size: .58rem;
    letter-spacing: .12em;
    font-weight: 700;
}
.completed-service-card h4 {
    font-family: "Space Grotesk";
    font-size: .95rem;
    margin: 2px 0;
}
.completed-service-card p {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
}
.completed-service-card a,
.recruitment-card .dynamic-card-link {
    display: inline-block;
    margin-top: 7px;
    color: var(--blue-light);
    font-size: .75rem;
    font-weight: 700;
}
.recruitment-card p {
    color: var(--muted);
    margin: 8px 0;
}
@media(max-width:620px){
    .completed-service-card { grid-template-columns: 1fr; }
    .completed-service-card img { width: 100%; height: 150px; }
}
.completed-services-header{display:grid;gap:4px;margin-bottom:10px;padding:4px 2px}
.completed-services-header span{color:var(--blue-light);font-size:.58rem;letter-spacing:.14em;font-weight:800}
.completed-services-header strong{font-family:"Space Grotesk";font-size:.9rem}
.completed-service-placeholder{width:58px;height:58px;display:grid;place-items:center;border-radius:10px;border:1px solid var(--border);background:rgba(255,255,255,.04);font-size:.62rem;font-weight:800;letter-spacing:.08em}
@media(max-width:620px){.completed-service-placeholder{width:100%;height:150px}}
