:root {
    --primary: #006585;
    --primary-dark: #00546f;
    --green: #08b75a;
    --green-hover: #069c4c;
    --text: #22272a;
    --text-light: #667075;
    --white: #ffffff;
    --light: #f3f4f3;
    --border: #dde3e5;
    --container: 1180px;
    --radius: 10px;
    --transition: .25s ease;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

/* =====================================================
   TÍTULOS
===================================================== */

h1,
h2,
h3 {
    line-height: 1.15;
}

h2 {
    color: var(--primary);
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
    letter-spacing: -.025em;
}

h2 strong {
    font-weight: 800;
}

.section-label,
.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading .section-label {
    margin-bottom: 8px;
}

.section-heading p {
    max-width: 620px;
    margin: 15px auto 0;
    color: var(--text-light);
    font-size: .92rem;
}

.privacy-seal {
    display: inline-block;
    margin-top: 18px;
}

.privacy-seal img {
    display: block;
    width: 170px;
    max-width: 100%;
    height: auto;
}

.compact-heading {
    margin-bottom: 40px;
}

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

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
}

.button-whatsapp {
    background: var(--green);
}

.button-whatsapp:hover {
    background: var(--green-hover);
}

.button-white {
    background: var(--white);
    color: var(--primary);
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .035);
    backdrop-filter: blur(10px);
}

.header-container {
    height: 76px;
    display: flex;
    align-items: center;
}

.logo {
    width: 210px;
    margin-right: auto;
}

.logo img {
    width: 165px;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.desktop-nav a {
    position: relative;
    padding: 29px 0;
    color: #34383a;
    font-size: .76rem;
    font-weight: 600;
    transition: color var(--transition);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 21px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-social {
    margin-left: 32px;
    display: flex;
    gap: 10px;
}

.header-social a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: .9rem;
    border-radius: 50%;
}

.mobile-menu-button {
    display: none;
    width: 43px;
    height: 43px;
    padding: 9px;
    background: var(--primary);
    border-radius: 5px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
    border-radius: 20px;
}

.mobile-nav {
    display: none;
}

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

   AJUSTES:
   - imagem mais aberta
   - cabeça inteira
   - homem mais para a direita
   - mais servidores visíveis
===================================================== */

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 101, 133, 1) 0%,
            rgba(0, 101, 133, .98) 25%,
            rgba(0, 101, 133, .88) 37%,
            rgba(0, 101, 133, .63) 48%,
            rgba(0, 101, 133, .30) 60%,
            rgba(0, 101, 133, .08) 73%,
            rgba(0, 101, 133, 0) 86%
        ),
        url("assets/hero.png");

    /*
       A foto fica ligeiramente menor que antes.
       Isso é o que ajuda a mostrar a cabeça inteira.
    */
    background-size:
        100% 100%,
        80% auto;

    /*
       100% = ancora a imagem na direita.

       0% = ancora a imagem no topo,
       evitando cortar a cabeça.
    */
    background-position:
        center,
        right 5%;

    background-repeat:
        no-repeat,
        no-repeat;

    background-color: var(--primary);
}

.hero-content {
    width: 48%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    margin-bottom: 13px;
    color: white;
}

.hero h1.eyebrow {
    display: inline-block;
    color: white;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    color: white;
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.hero p {
    max-width: 500px;
    margin: 19px 0 25px;
    color: rgba(255, 255, 255, .92);
    font-size: .9rem;
    line-height: 1.65;
}

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

.services {
    padding: 70px 0 80px;
    background: #f1f2f1;
}

.services-grid {
    max-width: 920px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.service-card {
    min-height: 295px;
    padding: 30px 24px 24px;
    display: flex;
    flex-direction: column;
    background: var(--primary);
    color: white;
    border-radius: 13px;
    text-align: center;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
}

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: white;
    font-size: 1.35rem;
}

.service-card h3 {
    min-height: 42px;
    margin-bottom: 13px;
    color: white;
    font-size: 1.05rem;
}

.service-card p {
    color: rgba(255, 255, 255, .9);
    font-size: .73rem;
    line-height: 1.65;
}

.service-card > a {
    margin: auto auto 0;
    padding-top: 17px;
    color: white;
    font-size: .68rem;
    font-weight: 700;
    text-decoration: underline;
}

/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 55px 0;
    background: var(--primary);
    color: white;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-container > div {
    max-width: 700px;
}

.cta span {
    display: block;
    margin-bottom: 9px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.cta h2 {
    color: white;
    font-size: clamp(1.5rem, 2.3vw, 2.25rem);
    line-height: 1.2;
}

/* =====================================================
   CLIENTES
===================================================== */

.clients {
    padding: 46px 0;
    background: #f1f2f1;
}

.clients-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

.clients-title {
    padding-right: 35px;
    border-right: 2px solid rgba(0, 101, 133, .25);
}

.clients-title .section-label {
    margin-bottom: 7px;
}

.clients-title h2 {
    font-size: 1.55rem;
}

.clients-title h2 strong {
    display: block;
}

.clients-slider {
    min-width: 0;
}

.clients-viewport {
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    transition: transform .65s cubic-bezier(.22, .61, .36, 1);
}

.client-logo {
    min-width: 25%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
}

.client-logo img {
    max-width: 145px;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(10%);
    transition:
        transform .25s ease,
        filter .25s ease;
}

.client-logo:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.clients-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.clients-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 50%;
    background: #b7c4c8;
    cursor: pointer;
    transition: .25s;
}

.clients-dots button.active {
    width: 18px;
    border-radius: 10px;
    background: var(--primary);
}

/* =====================================================
   NÚMEROS
===================================================== */

.numbers {
    padding: 38px 0;
    background: var(--primary);
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.number-item {
    position: relative;
    padding: 10px 20px;
    text-align: center;
}

.number-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 50px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .25);
}

.number-item strong {
    display: block;
    color: white;
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
}

.number-item span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: .68rem;
}

/* =====================================================
   SOBRE NÓS
===================================================== */

.about-technology {
    padding: 90px 0;
    background: #f1f2f1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    padding-left: 28px;
    padding-bottom: 28px;
    isolation: isolate;
}

.about-image::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 86%;
    height: 87%;
    background: var(--primary);
    border-radius: 22px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 465px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.about-content {
    max-width: 590px;
}

.about-content .section-label {
    margin-bottom: 9px;
}

.about-content h2 {
    max-width: 590px;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: clamp(1.8rem, 2.6vw, 2.65rem);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -.035em;
}

.about-content p {
    max-width: 570px;
    margin-bottom: 17px;
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.8;
}

.about-content p strong {
    color: #50575b;
    font-weight: 800;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 29px 0 31px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: .92rem;
    font-weight: 600;
}

.check-list i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    background: #e8f0f2;
    color: var(--primary);
    border-radius: 50%;
    font-size: .72rem;
}

.about-content .button {
    min-width: 225px;
    min-height: 51px;
    padding: 14px 25px;
    border-radius: 6px;
    font-size: .83rem;
}

/* =====================================================
   TECNOLOGIAS
===================================================== */

.technologies {
    padding: 50px 0;
    background: white;
}

.technologies-heading {
    margin-bottom: 30px;
}

.technologies-heading h2 {
    font-size: 1.7rem;
}

.technologies-heading p {
    font-size: .78rem;
}

.technologies-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
}

.technology-logo {
    width: 135px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

/* =====================================================
   CTA SECUNDÁRIO
===================================================== */

.help-cta {
    background: var(--primary);
    color: white;
}

.help-cta-container {
    min-height: 275px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: stretch;
}

.help-cta-image {
    min-height: 275px;
}

.help-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-cta-content {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.help-cta-content > span {
    margin-bottom: 7px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.help-cta-content h2 {
    max-width: 550px;
    color: white;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.help-cta-content p {
    max-width: 520px;
    margin: 12px 0 20px;
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
}

/* =====================================================
   AVALIAÇÕES
===================================================== */

.reviews {
    padding: 70px 0 75px;
    background: #f1f2f1;
}

.trustindex-container {
    width: 100%;
    max-width: 1050px;
    min-height: 170px;
    margin: auto;
}

/* =====================================================
   BLOG
===================================================== */

.blog {
    padding: 70px 0 80px;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    overflow: hidden;
    background: white;
    border: 1px solid #e2e5e6;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .055);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 30px rgba(0, 0, 0, .11);
}

.blog-image {
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover img {
    transform: scale(1.04);
}

.blog-content {
    padding: 22px;
}

.blog-content > span {
    color: var(--primary);
    font-size: .63rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content h2,
.blog-content h3 {
    margin: 9px 0 11px;
    color: var(--primary);
    font-size: 1rem;
}

.blog-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: .76rem;
    line-height: 1.65;
}

/* =====================================================
   CONTATO
===================================================== */

.contact {
    padding: 75px 0;
    background: #f1f2f1;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-content h2 {
    margin: 7px 0 18px;
    font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.contact-content > p {
    max-width: 520px;
    margin-bottom: 27px;
    color: var(--text-light);
    font-size: .85rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 15px;
}

.contact-item > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: .9rem;
}

.contact-item span {
    display: block;
    color: var(--text-light);
    font-size: .65rem;
}

.contact-item a,
.contact-item p {
    font-size: .8rem;
    font-weight: 600;
}

.contact-form {
    padding: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .09);
}

.contact-form > div {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    background: #fafafa;
    border: 1px solid #d9dfe1;
    border-radius: 4px;
    outline: none;
    font-size: .8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 101, 133, .08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* =====================================================
   TRABALHE CONOSCO
===================================================== */

.jobs {
    padding: 55px 0;
    background: var(--primary);
    color: white;
}

.jobs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.jobs span {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.jobs h2 {
    margin: 7px 0 9px;
    color: white;
    font-size: 1.8rem;
}

.jobs p {
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
}

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

.footer {
    padding: 55px 0 0;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr .9fr;
    gap: 50px;
}

.footer-about img {
    width: 160px;
    margin-bottom: 17px;
}

.footer-about p {
    max-width: 310px;
    color: var(--text-light);
    font-size: .75rem;
}

.footer h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: .88rem;
}

.footer li {
    margin: 7px 0;
    color: var(--text-light);
    font-size: .72rem;
}

.footer-bottom {
    margin-top: 45px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: .67rem;
}

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

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 7px 25px rgba(0, 0, 0, .18);
    font-size: 1.7rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    width: max-content;
    padding: 7px 11px;
    background: white;
    color: var(--text);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
    font-size: .65rem;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;
    right: 29px;
    bottom: 92px;
    z-index: 800;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .desktop-nav,
    .header-social {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        padding: 8px 24px 20px;
        background: white;
    }

    .mobile-nav.active {
        display: grid;
    }

    .mobile-nav a {
        padding: 13px 4px;
        border-bottom: 1px solid #eee;
        color: var(--primary);
        font-size: .82rem;
        font-weight: 600;
    }

    /*
       Mantém o homem visível e evita cortar
       a cabeça em notebooks/tablets.
    */
    .hero {
        background-size:
            100% 100%,
            auto 100%;

        background-position:
            center,
            72% top;
    }

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

    .clients-layout {
        grid-template-columns: 230px 1fr;
        gap: 30px;
    }

    .client-logo {
        min-width: 33.333%;
    }

    .about-grid {
        grid-template-columns: .95fr 1.05fr;
        gap: 50px;
    }

    .about-image {
        padding-left: 22px;
        padding-bottom: 22px;
    }

    .about-image img {
        height: 410px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .contact-grid {
        gap: 45px;
    }
}

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

@media (max-width: 720px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-container {
        height: 70px;
    }

    .logo {
        width: 175px;
    }

    .logo img {
        width: 155px;
    }

    .hero {
        min-height: 500px;
        padding: 65px 0;

        background-image:
            linear-gradient(
                90deg,
                rgba(0, 101, 133, .98) 0%,
                rgba(0, 101, 133, .92) 45%,
                rgba(0, 101, 133, .65) 75%,
                rgba(0, 101, 133, .48) 100%
            ),
            url("assets/hero.png");

        /*
           No celular preservamos a altura completa
           da imagem para não cortar a cabeça.
        */
        background-size:
            100% 100%,
            auto 100%;

        background-position:
            center,
            64% top;

        background-repeat:
            no-repeat,
            no-repeat;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        max-width: 430px;
        font-size: 2rem;
    }

    .hero p {
        max-width: 440px;
        font-size: .84rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 260px;
    }

    .cta {
        padding: 50px 0;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 27px;
    }

    .clients {
        padding: 45px 0;
    }

    .clients-layout {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .clients-title {
        padding-right: 0;
        padding-bottom: 22px;
        border-right: 0;
        border-bottom: 2px solid rgba(0, 101, 133, .18);
    }

    .client-logo {
        min-width: 50%;
        height: 80px;
        padding: 10px 15px;
    }

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

    .number-item {
        padding: 24px 10px;
    }

    .number-item:nth-child(2)::after {
        display: none;
    }

    .about-technology {
        padding: 65px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        padding-left: 22px;
        padding-bottom: 22px;
    }

    .about-image::before {
        width: 87%;
        height: 87%;
        border-radius: 18px;
    }

    .about-image img {
        height: 390px;
        border-radius: 18px;
    }

    .about-content {
        max-width: none;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .about-content p {
        font-size: .86rem;
    }

    .check-list {
        gap: 13px;
        margin: 26px 0 30px;
    }

    .check-list li {
        font-size: .87rem;
    }

    .check-list i {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .technologies {
        padding: 50px 0;
    }

    .technologies-grid {
        gap: 20px;
    }

    .technology-logo {
        width: 120px;
    }

    .help-cta-container {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .help-cta-image {
        height: 230px;
        min-height: 0;
    }

    .help-cta-content {
        padding: 40px 24px 45px;
    }

    .reviews,
    .blog,
    .contact {
        padding: 60px 0;
    }

    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 27px 20px;
    }

    .jobs-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* =====================================================
   BLOG, ARTIGOS E FORMULÁRIOS INTERNOS
===================================================== */

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card .read-more:hover {
    color: var(--green);
}

.blog-page {
    padding: 80px 0 90px;
    background: var(--light);
}

.blog-page .blog-grid {
    max-width: 1080px;
    margin: 0 auto;
}

.blog-page .blog-card {
    height: 100%;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
}

.blog-list-heading {
    margin-bottom: 30px;
}

.blog-articles {
    display: grid;
    gap: 24px;
}

.blog-articles .blog-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
}

.blog-articles .blog-image {
    min-height: 230px;
}

.blog-card[data-url] {
    cursor: pointer;
}

.blog-card[data-url]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 22px;
}

.sidebar-card {
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .055);
}

.sidebar-card h2 {
    margin: 7px 0 14px;
    color: var(--primary);
    font-size: 1.15rem;
    line-height: 1.3;
}

.sidebar-card p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: .78rem;
}

.sidebar-about {
    position: relative;
    padding-top: 105px;
}

.sidebar-about > img {
    position: absolute;
    top: -72px;
    right: -45px;
    width: 190px;
    opacity: .13;
}

.sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 800;
}

.sidebar-services {
    display: grid;
}

.sidebar-services li + li {
    border-top: 1px solid var(--border);
}

.sidebar-services a {
    padding: 10px 0;
    display: block;
    color: var(--text-light);
    font-size: .74rem;
    font-weight: 600;
    transition: color var(--transition), padding var(--transition);
}

.sidebar-services a:hover {
    padding-left: 5px;
    color: var(--primary);
}

.sidebar-contact {
    background: var(--primary);
    color: var(--white);
}

.sidebar-contact .section-label {
    color: #9ee8ff;
}

.sidebar-contact h2 {
    color: var(--white);
}

site-header,
site-footer {
    display: block;
}

.desktop-nav a[aria-current="page"] {
    color: var(--primary);
}

.desktop-nav a[aria-current="page"]::after {
    width: 100%;
}

.blog-page .blog-image {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(0, 84, 111, .92),
            rgba(0, 101, 133, .72)
        ),
        url("assets/hero.png") center / cover;
}

.blog-page .blog-image::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -65px;
    width: 200px;
    height: 200px;
    background: url("assets/logo-redonda.png") center / contain no-repeat;
    opacity: .17;
}

.article-page {
    padding: 75px 0 90px;
    background: var(--white);
}

.article-layout {
    max-width: 860px;
    margin: 0 auto;
}

.article-meta {
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-body h2,
.article-body h3 {
    margin: 34px 0 14px;
    color: var(--primary);
    line-height: 1.25;
}

.article-body h2 {
    font-size: 1.65rem;
}

.article-body h3 {
    font-size: 1.15rem;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: .94rem;
    line-height: 1.85;
}

.article-body a:not(.button) {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.article-related {
    margin-top: 48px;
    padding: 30px;
    border-left: 4px solid var(--green);
    border-radius: 8px;
    background: var(--light);
}

.article-related h2 {
    margin-top: 0;
}

.article-related ul {
    display: grid;
    gap: 13px;
}

.internal-content {
    padding: 80px 0 90px;
}

.career-intro {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.career-form {
    max-width: 780px;
    margin: 0 auto;
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 16px;
    background: var(--light);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .06);
}

.career-form .full-field {
    grid-column: 1 / -1;
}

.career-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: .76rem;
    font-weight: 700;
}

.career-form input,
.career-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
}

.career-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-status {
    min-height: 1.5em;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
}

button:disabled {
    cursor: wait;
    opacity: .65;
}

@media (max-width: 720px) {
    .blog-page,
    .article-page,
    .internal-content {
        padding: 60px 0;
    }

    .article-related,
    .career-form {
        padding: 24px 20px;
    }

    .career-form {
        grid-template-columns: 1fr;
    }

    .career-form .full-field {
        grid-column: auto;
    }
}

@media (max-width: 1000px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sidebar-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .blog-articles .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-articles .blog-image {
        min-height: 205px;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-contact {
        grid-column: auto;
    }
}

/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 430px) {

    .hero {
        background-position:
            center,
            61% top;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-heading h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 1.7rem;
    }

    .client-logo {
        min-width: 100%;
    }

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

    .number-item strong {
        font-size: 1.7rem;
    }

    .about-image {
        padding-left: 17px;
        padding-bottom: 17px;
    }

    .about-image::before {
        width: 88%;
        height: 88%;
        border-radius: 15px;
    }

    .about-image img {
        height: 320px;
        border-radius: 15px;
    }

    .check-list i {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .about-content .button {
        width: 100%;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 15px;
        bottom: 15px;
    }

    .back-to-top {
        right: 22px;
        bottom: 82px;
    }
}

/* =====================================================
   ACESSIBILIDADE
===================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* =====================================================
   PÁGINAS DE SERVIÇOS
===================================================== */

.internal-page .header {
    background: rgba(255, 255, 255, .98);
}

.internal-hero {
    position: relative;
    min-height: 430px;
    padding: 145px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 84, 111, .98) 0%,
            rgba(0, 101, 133, .92) 48%,
            rgba(0, 101, 133, .66) 100%
        ),
        url("assets/hero.png");
    background-position: center, center 42%;
    background-size: cover, cover;
    color: var(--white);
}

.internal-hero::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -175px;
    width: 470px;
    height: 470px;
    background: url("assets/logo-redonda.png") center / contain no-repeat;
    opacity: .12;
    pointer-events: none;
}

.internal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.breadcrumbs {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--white);
    text-decoration: underline;
}

.internal-hero .section-label {
    color: #9ee8ff;
}

.internal-hero h1 {
    max-width: 760px;
    margin: 8px 0 18px;
    color: var(--white);
    font-size: clamp(2.15rem, 5vw, 3.55rem);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.internal-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .92);
    font-size: .98rem;
}

.services-page {
    padding: 80px 0 90px;
    background: var(--light);
}

.services-page .services-grid {
    max-width: 1000px;
    gap: 14px;
}

.services-page .service-card {
    min-height: 320px;
}

.service-detail {
    padding: 85px 0;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 70px;
    align-items: start;
}

.service-copy h2 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.service-copy p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: .92rem;
}

.service-points {
    display: grid;
    gap: 13px;
    margin: 30px 0 35px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: .86rem;
    font-weight: 600;
}

.service-points i {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: .72rem;
}

.service-side-card {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 18px 45px rgba(0, 84, 111, .16);
}

.service-side-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    background: url("assets/logo-redonda.png") center / contain no-repeat;
    opacity: .11;
}

.service-side-card > * {
    position: relative;
    z-index: 1;
}

.service-side-card .service-icon {
    margin: 0 0 22px;
}

.service-side-card h2 {
    margin-bottom: 13px;
    color: var(--white);
    font-size: 1.35rem;
}

.service-side-card p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
}

.other-services {
    padding: 75px 0 85px;
    background: var(--light);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 35px;
}

.other-service-link {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 7px 24px rgba(0, 0, 0, .05);
    font-size: .8rem;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition);
}

.other-service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
}

@media (max-width: 1000px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-side-card {
        max-width: 620px;
    }

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

@media (max-width: 720px) {
    .internal-hero {
        min-height: 390px;
        padding: 115px 0 60px;
        background-position: center, 62% center;
    }

    .internal-hero::after {
        right: -130px;
        bottom: -145px;
        width: 360px;
        height: 360px;
    }

    .services-page,
    .service-detail,
    .other-services {
        padding: 60px 0;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .service-side-card {
        padding: 28px 24px;
    }
}
.article-featured-image {
    width: min(100%, 1040px);
    margin: 0 auto 36px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(14, 37, 63, 0.14);
}

.article-featured-image img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}
