/* =========================================================
   XPATEC 2.0
   ARQUIVO PRINCIPAL DE ESTILOS
========================================================= */

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

:root {
    --color-primary: #0758c9;
    --color-primary-dark: #063d8f;
    --color-primary-light: #e9f2ff;

    --color-secondary: #20a86b;
    --color-secondary-dark: #147a4b;

    --color-dark: #0b1730;
    --color-dark-soft: #16233d;

    --color-text: #4c5870;
    --color-text-light: #748096;

    --color-white: #ffffff;
    --color-background: #f5f8fc;
    --color-background-soft: #eef4fb;

    --color-border: #dbe3ee;
    --color-shadow: rgba(20, 40, 80, 0.12);

    --font-main: Arial, Helvetica, sans-serif;

    --container-width: 1180px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 30px;

    --transition: 0.3s ease;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
}


/* =========================================================
   ESTRUTURA GERAL
========================================================= */

.container {
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

section {
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: var(--color-secondary);
}

.section-label-light {
    color: var(--color-white);
}

.section-label-light::before {
    background: var(--color-white);
}

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

.section-heading h2 {
    margin-bottom: 18px;
    color: var(--color-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.section-heading p {
    color: var(--color-text);
    font-size: 1.08rem;
}


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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 0.94rem;
    font-weight: 800;
    text-align: center;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: 0 12px 30px rgba(7, 88, 201, 0.25);
}

.button-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 16px 38px rgba(7, 88, 201, 0.32);
}

.button-secondary {
    color: var(--color-dark);
    background: var(--color-white);
    border-color: var(--color-border);
}

.button-secondary:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

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

.button-outline-light {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.button-outline-light:hover {
    color: var(--color-primary-dark);
    background: var(--color-white);
    border-color: var(--color-white);
}


/* =========================================================
   HEADER PREMIUM 2.0
========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    width:100%;
    height:72px;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:
        background .35s ease,
        box-shadow .35s ease,
        height .35s ease;
}

.header-container{

    height:72px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;
}

/* ---------- LOGO ---------- */

.brand{

    display:flex;
    flex-direction:column;

    text-decoration:none;

    transition:.30s;
}

.brand:hover{

    transform:translateY(-1px);

}

.brand-name{

    font-size:2rem;
    font-weight:900;

    letter-spacing:-.05em;

    color:var(--color-primary);

    line-height:1;
}

.brand-description{

    margin-top:4px;

    font-size:.70rem;

    font-weight:700;

    letter-spacing:.30em;

    text-transform:uppercase;

    color:#74829B;
}

/* ---------- MENU ---------- */

.main-navigation{

    flex:1;

    display:flex;

    justify-content:center;
}

.main-navigation ul{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;
}

.main-navigation a{

    position:relative;

    font-size:.95rem;

    font-weight:700;

    color:#1A2745;

    transition:.30s;
}

.main-navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--color-primary);

    transition:.30s;
}

.main-navigation a:hover{

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

.main-navigation a:hover::after{

    width:100%;
}

/* ---------- BOTÃO ---------- */

.button-header{

    height:46px;

    padding:0 28px;

    border-radius:14px;

    background:var(--color-primary);

    color:#FFF;

    font-weight:700;

    transition:.30s;
}

.button-header:hover{

    transform:translateY(-2px);

    box-shadow:0 14px 30px rgba(0,82,204,.25);
}

/* ---------- MENU MOBILE ---------- */

.menu-toggle{

    display:none;

    width:44px;

    height:44px;

    border:none;

    background:none;

    cursor:pointer;
}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    margin:6px auto;

    border-radius:20px;

    background:#16233D;

    transition:.30s;
}

/* =========================================================
   FIM HEADER PREMIUM
========================================================= */

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

.hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(32, 168, 107, 0.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 30%,
            rgba(7, 88, 201, 0.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f9fbff 0%,
            #eef5ff 52%,
            #f7fffb 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(7, 88, 201, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(32, 168, 107, 0.12);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 640px;
}

.hero-content h1 {
    margin-bottom: 26px;
    color: var(--color-dark);
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-content h1 span {
    display: block;
    color: var(--color-primary);
}

.hero-text {
    max-width: 620px;
    margin-bottom: 16px;
    color: var(--color-dark-soft);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
}

.hero-description {
    max-width: 610px;
    color: var(--color-text);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}


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

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-core {
    position: relative;
    z-index: 5;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    border: 12px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 30%,
            #2b7de9,
            var(--color-primary-dark)
        );
    box-shadow:
        0 30px 70px rgba(7, 88, 201, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

.technology-core::after {
    content: "";
    position: absolute;
    inset: -22px;
    z-index: -1;
    border: 1px solid rgba(7, 88, 201, 0.2);
    border-radius: 50%;
}

.technology-core span {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.technology-core small {
    max-width: 130px;
    margin-top: 7px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0.85;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(7, 88, 201, 0.25);
    border-radius: 50%;
}

.orbit-one {
    width: 340px;
    height: 340px;
}

.orbit-two {
    width: 450px;
    height: 450px;
}

.orbit-three {
    width: 540px;
    height: 540px;
}

.segment-card {
    position: absolute;
    z-index: 6;
    min-width: 145px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    border: 1px solid rgba(219, 227, 238, 0.9);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 35px rgba(20, 40, 80, 0.13);
    backdrop-filter: blur(10px);
}

.segment-icon {
    color: var(--color-secondary);
    font-size: 1rem;
}

.segment-card strong {
    font-size: 0.82rem;
}

.segment-social {
    top: 30px;
    left: 40px;
}

.segment-tourism {
    top: 70px;
    right: 5px;
}

.segment-finance {
    top: 245px;
    right: -15px;
}

.segment-education {
    bottom: 55px;
    right: 45px;
}

.segment-maintenance {
    bottom: 25px;
    left: 30px;
}

.segment-craft {
    top: 245px;
    left: -10px;
}


/* =========================================================
   MANIFESTO
========================================================= */

.manifesto-section {
    padding: 115px 0;
    background: var(--color-white);
}

.manifesto-container {
    max-width: 930px;
    text-align: center;
}

.manifesto-container h2 {
    margin-bottom: 24px;
    color: var(--color-dark);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.manifesto-container p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text);
    font-size: 1.2rem;
}


/* =========================================================
   METODOLOGIA — INÍCIO
========================================================= */

.methodology-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );

}

.methodology-grid{

    display:grid;

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

    gap:28px;

    margin-top:70px;

}

/* ---------- CARD ---------- */

.methodology-card{

    position:relative;

    overflow:hidden;

    padding:38px;

    min-height:320px;

    background:#FFF;

    border:1px solid rgba(15,35,70,.08);

    border-radius:24px;

    box-shadow:
        0 18px 45px rgba(16,35,70,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.methodology-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--color-primary),
        #2DBE77
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.methodology-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,82,204,.20);

    box-shadow:
        0 28px 60px rgba(16,35,70,.12);

}

.methodology-card:hover::before{

    transform:scaleX(1);

}

/* ---------- NÚMERO ---------- */

.methodology-number{

    position:absolute;

    top:24px;

    right:28px;

    font-size:3rem;

    font-weight:900;

    color:rgba(0,82,204,.08);

}

/* ---------- ÍCONE ---------- */

.methodology-icon{

    width:70px;

    height:70px;

    margin-bottom:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );

    color:#FFF;

    font-size:1.45rem;

    font-weight:700;

    box-shadow:
        0 16px 35px rgba(0,82,204,.20);

}

/* ---------- TEXTO ---------- */

.methodology-card h3{

    margin-bottom:16px;

    font-size:1.45rem;

    color:var(--color-dark);

}

.methodology-card p{

    color:var(--color-text);

    line-height:1.8;

    font-size:1rem;

}

/* ---------- MENSAGEM ---------- */

.methodology-message{

    max-width:850px;

    margin:70px auto 0;

    padding:34px 40px;

    border-radius:24px;

    text-align:center;

    background:
        linear-gradient(
            145deg,
            rgba(7,88,201,.06),
            rgba(45,190,119,.06)
        );

    border:1px solid rgba(0,82,204,.08);

}

.methodology-message p{

    font-size:1.20rem;

    color:var(--color-dark);

}

.methodology-message strong{

    color:var(--color-primary);

}

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

@media (max-width:1024px){

.methodology-grid{

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

}

}

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

@media (max-width:768px){

.methodology-section{

    padding:80px 0;

}

.methodology-grid{

    grid-template-columns:1fr;

    gap:22px;

    margin-top:45px;

}

.methodology-card{

    min-height:auto;

    padding:32px;

}

.methodology-number{

    font-size:2.4rem;

}

.methodology-icon{

    width:60px;

    height:60px;

    font-size:1.2rem;

}

.methodology-message{

    margin-top:45px;

    padding:28px;

}

.methodology-message p{

    font-size:1.05rem;

}

}

/* =========================================================
   METODOLOGIA — FIM
========================================================= */
/* =========================================================
   PLATAFORMAS — INÍCIO
========================================================= */

.platforms-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(7, 88, 201, 0.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 100%
        );
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 68px;
}

/* ---------- CARD ---------- */

.platform-card {
    position: relative;
    min-height: 350px;
    padding: 38px 38px 34px 44px;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    border: 1px solid rgba(20, 40, 80, 0.09);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    box-shadow:
        0 18px 45px rgba(20, 40, 80, 0.07);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-secondary)
        );
}

.platform-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -95px;
    width: 210px;
    height: 210px;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(7, 88, 201, 0.08),
            transparent 68%
        );

    pointer-events: none;
    transition: transform 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-9px);
    border-color: rgba(7, 88, 201, 0.22);

    box-shadow:
        0 28px 60px rgba(20, 40, 80, 0.13);
}

.platform-card:hover::after {
    transform: scale(1.2);
}

/* ---------- CABEÇALHO DO CARD ---------- */

.platform-card-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 34px;
}

.platform-category {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.platform-status {
    flex-shrink: 0;
    padding: 8px 13px;

    color: #147b50;
    border: 1px solid rgba(32, 168, 107, 0.14);
    border-radius: 50px;

    background: rgba(32, 168, 107, 0.1);

    font-size: 0.69rem;
    font-weight: 800;
    white-space: nowrap;
}

/* ---------- STATUS POR PLATAFORMA ---------- */

.platform-card:nth-child(2) .platform-status,
.platform-card:nth-child(3) .platform-status {
    color: #0758c9;
    border-color: rgba(7, 88, 201, 0.14);
    background: rgba(7, 88, 201, 0.09);
}

.platform-card:nth-child(4) .platform-status {
    color: #916000;
    border-color: rgba(231, 166, 33, 0.18);
    background: rgba(231, 166, 33, 0.12);
}

.platform-card:nth-child(5) .platform-status {
    color: #58657a;
    border-color: rgba(88, 101, 122, 0.16);
    background: rgba(88, 101, 122, 0.1);
}

.platform-card:nth-child(6) .platform-status {
    color: #7651a8;
    border-color: rgba(118, 81, 168, 0.16);
    background: rgba(118, 81, 168, 0.1);
}

/* ---------- CONTEÚDO ---------- */

.platform-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: var(--color-dark);
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.platform-card p {
    position: relative;
    z-index: 2;

    max-width: 560px;
    margin-bottom: 30px;

    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.75;
}

/* ---------- LINK ---------- */

.platform-link {
    position: relative;
    z-index: 2;

    width: fit-content;
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--color-primary);
    font-size: 0.93rem;
    font-weight: 800;

    transition: color 0.3s ease;
}

.platform-link span {
    font-size: 1.3rem;
    line-height: 1;

    transition: transform 0.3s ease;
}

.platform-link:hover {
    color: var(--color-primary-dark);
}

.platform-link:hover span {
    transform: translateX(7px);
}

/* =========================================================
   PLATAFORMAS — TABLET
========================================================= */

@media (max-width: 1024px) {

    .platforms-section {
        padding: 95px 0;
    }

    .platforms-grid {
        gap: 22px;
        margin-top: 55px;
    }

    .platform-card {
        min-height: 335px;
        padding: 34px 30px 30px 38px;
    }

    .platform-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }
}

/* =========================================================
   PLATAFORMAS — MOBILE
========================================================= */

@media (max-width: 768px) {

    .platforms-section {
        padding: 80px 0;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 45px;
    }

    .platform-card {
        min-height: auto;
        padding: 32px 28px 30px 35px;
        border-radius: 22px;
    }

    .platform-card-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 26px;
    }

    .platform-card h3 {
        font-size: 2.1rem;
    }

    .platform-card p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

/* =========================================================
   PLATAFORMAS — CELULAR PEQUENO
========================================================= */

@media (max-width: 480px) {

    .platforms-section {
        padding: 68px 0;
    }

    .platform-card {
        padding: 29px 23px 27px 30px;
    }

    .platform-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .platform-category {
        font-size: 0.7rem;
    }

    .platform-status {
        padding: 7px 11px;
        font-size: 0.66rem;
    }

    .platform-card h3 {
        font-size: 1.9rem;
    }
}

/* =========================================================
   PLATAFORMAS — FIM
========================================================= */
/* =========================================================
   DIFERENCIAIS — INÍCIO
========================================================= */

.differentials-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(32, 168, 107, 0.08),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8fd 100%
        );
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 68px;
}

/* ---------- CARD ---------- */

.differential-card {
    position: relative;
    min-height: 320px;
    padding: 36px 32px;
    overflow: hidden;

    border: 1px solid rgba(20, 40, 80, 0.09);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.9);

    box-shadow:
        0 16px 42px rgba(20, 40, 80, 0.06);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.differential-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            var(--color-secondary)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.differential-card:hover {
    transform: translateY(-9px);
    border-color: rgba(7, 88, 201, 0.2);

    box-shadow:
        0 26px 58px rgba(20, 40, 80, 0.12);
}

.differential-card:hover::before {
    transform: scaleX(1);
}

/* ---------- NÚMERO ---------- */

.differential-number {
    position: absolute;
    top: 24px;
    right: 26px;

    color: rgba(7, 88, 201, 0.08);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

/* ---------- ÍCONE ---------- */

.differential-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-white);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--color-primary),
            var(--color-primary-dark)
        );

    box-shadow:
        0 14px 30px rgba(7, 88, 201, 0.2);

    font-size: 1.35rem;
    font-weight: 900;
}

/* ---------- CONTEÚDO ---------- */

.differential-card h3 {
    max-width: 250px;
    margin-bottom: 16px;

    color: var(--color-dark);
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.differential-card p {
    color: var(--color-text);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ---------- DESTAQUE FINAL ---------- */

.differentials-highlight {
    max-width: 900px;
    margin: 70px auto 0;
    padding: 36px 44px;

    text-align: center;

    border: 1px solid rgba(7, 88, 201, 0.1);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 88, 201, 0.07),
            rgba(32, 168, 107, 0.08)
        );
}

.differentials-highlight span {
    display: block;
    margin-bottom: 12px;

    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.differentials-highlight p {
    color: var(--color-dark);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.4;
}

.differentials-highlight strong {
    color: var(--color-primary);
}

/* =========================================================
   DIFERENCIAIS — TABLET
========================================================= */

@media (max-width: 1024px) {

    .differentials-section {
        padding: 95px 0;
    }

    .differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        margin-top: 55px;
    }

    .differential-card {
        min-height: 300px;
    }
}

/* =========================================================
   DIFERENCIAIS — MOBILE
========================================================= */

@media (max-width: 768px) {

    .differentials-section {
        padding: 80px 0;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .differential-card {
        min-height: auto;
        padding: 32px 28px;
    }

    .differential-card h3 {
        max-width: none;
    }

    .differentials-highlight {
        margin-top: 45px;
        padding: 30px 26px;
    }
}

/* =========================================================
   DIFERENCIAIS — CELULAR PEQUENO
========================================================= */

@media (max-width: 480px) {

    .differentials-section {
        padding: 68px 0;
    }

    .differential-card {
        padding: 29px 24px;
        border-radius: 21px;
    }

    .differential-icon {
        width: 58px;
        height: 58px;
    }

    .differential-number {
        font-size: 2.35rem;
    }

    .differentials-highlight {
        padding: 27px 22px;
        border-radius: 22px;
    }
}

/* =========================================================
   DIFERENCIAIS — FIM
========================================================= */

/* =========================================================
   QUEM SOMOS — INÍCIO
========================================================= */

.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(7, 88, 201, 0.09),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #eef4fb 100%
        );
}

.about-container {
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 90px;
}

/* ---------- BLOCO VISUAL ---------- */

.about-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
}

.about-shape-one {
    width: 390px;
    height: 390px;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.2),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--color-primary),
            #063d8f
        );

    box-shadow:
        0 35px 70px rgba(7, 88, 201, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.about-shape-two {
    top: 38px;
    right: 15px;
    width: 175px;
    height: 175px;
    border: 24px solid rgba(32, 168, 107, 0.2);
}

.about-message {
    position: relative;
    z-index: 3;
    max-width: 310px;
    padding: 40px 30px;
    color: var(--color-white);
    text-align: center;
}

.about-message span {
    display: block;
    margin-bottom: 18px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.82;
}

.about-message strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

/* ---------- CONTEÚDO ---------- */

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

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

.about-content h2 {
    margin-bottom: 28px;
    color: var(--color-dark);
    font-size: clamp(2.35rem, 4.3vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.about-content p {
    max-width: 640px;
    margin-bottom: 18px;
    color: var(--color-text);
    font-size: 1.04rem;
    line-height: 1.75;
}

.about-content .button {
    margin-top: 18px;
}

/* =========================================================
   QUEM SOMOS — TABLET
========================================================= */

@media (max-width: 1024px) {

    .about-section {
        padding: 95px 0;
    }

    .about-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 55px;
    }

    .about-visual {
        min-height: 420px;
    }

    .about-shape-one {
        width: 330px;
        height: 330px;
    }

    .about-shape-two {
        width: 145px;
        height: 145px;
        border-width: 20px;
    }

    .about-message {
        max-width: 275px;
    }

    .about-message strong {
        font-size: 1.8rem;
    }
}

/* =========================================================
   QUEM SOMOS — MOBILE
========================================================= */

@media (max-width: 768px) {

    .about-section {
        padding: 75px 0;
    }

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

    .about-visual {
        min-height: 350px;
        order: 2;
    }

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

    .about-content h2 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-shape-one {
        width: 300px;
        height: 300px;
    }

    .about-shape-two {
        top: 20px;
        right: 4%;
        width: 125px;
        height: 125px;
        border-width: 18px;
    }

    .about-message {
        max-width: 250px;
        padding: 32px 24px;
    }

    .about-message strong {
        font-size: 1.65rem;
    }
}

@media (max-width: 420px) {

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

    .about-container {
        gap: 38px;
    }

    .about-visual {
        min-height: 305px;
    }

    .about-shape-one {
        width: 260px;
        height: 260px;
    }

    .about-shape-two {
        width: 105px;
        height: 105px;
        border-width: 15px;
    }

    .about-message {
        max-width: 225px;
        padding: 28px 20px;
    }

    .about-message strong {
        font-size: 1.45rem;
    }
}

/* =========================================================
   QUEM SOMOS — FIM
========================================================= */
/* =========================================================
   NÚMEROS
========================================================= */

.numbers-section {
    padding: 70px 0;
    background: var(--color-dark);
}

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

.number-card {
    min-height: 135px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.number-card:last-child {
    border-right: 0;
}

.number-card strong {
    margin-bottom: 8px;
    color: var(--color-white);
    font-size: 3rem;
    line-height: 1;
}

.number-card span {
    max-width: 190px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 700;
}


/* =========================================================
   CONTATO — INÍCIO
========================================================= */

.contact-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    color:#FFF;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(32,168,107,.28),
            transparent 30%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(255,255,255,.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #063D8F 0%,
            #0758C9 100%
        );

}

.contact-section::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    right:-220px;

    top:-180px;

    border-radius:50%;

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

}

.contact-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    left:-140px;

    bottom:-140px;

    border-radius:50%;

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

}

/* ---------- GRID ---------- */

.contact-container{

    position:relative;

    z-index:2;

    display:grid;

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

    align-items:center;

    gap:70px;

}

/* ---------- TEXTO ---------- */

.contact-content h2{

    max-width:760px;

    margin-bottom:22px;

    color:#FFF;

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

    line-height:1.08;

    letter-spacing:-.05em;

}

.contact-content p{

    max-width:640px;

    color:rgba(255,255,255,.82);

    font-size:1.08rem;

    line-height:1.8;

}

/* ---------- BOTÕES ---------- */

.contact-actions{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-actions .button{

    width:100%;

    justify-content:center;

    min-height:58px;

    border-radius:16px;

    font-size:1rem;

    font-weight:700;

    transition:.30s;

}

.button-light{

    background:#FFF;

    color:var(--color-primary);

    box-shadow:
        0 18px 40px rgba(0,0,0,.18);

}

.button-light:hover{

    transform:translateY(-3px);

}

.button-outline-light{

    border:2px solid rgba(255,255,255,.30);

    color:#FFF;

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

}

.button-outline-light:hover{

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

    transform:translateY(-3px);

}

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

@media (max-width:1024px){

.contact-section{

    padding:95px 0;

}

.contact-container{

    gap:45px;

}

.contact-content h2{

    font-size:clamp(2.2rem,4vw,3.3rem);

}

}

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

@media (max-width:768px){

.contact-section{

    padding:80px 0;

}

.contact-container{

    grid-template-columns:1fr;

    gap:40px;

}

.contact-actions{

    width:100%;

}

}

/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width:480px){

.contact-section{

    padding:65px 0;

}

.contact-content h2{

    font-size:2rem;

}

.contact-actions .button{

    min-height:54px;

    font-size:.95rem;

}

}

/* =========================================================
   CONTATO — FIM
========================================================= */
/* =========================================================
   RODAPÉ — INÍCIO
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 28px;

    color: rgba(255, 255, 255, 0.72);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(7, 88, 201, 0.14),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #071124 0%,
            #040a16 100%
        );
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);

    pointer-events: none;
}

/* ---------- GRID ---------- */

.footer-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 58px;
}

/* ---------- MARCA ---------- */

.footer-brand {
    max-width: 360px;
}

.brand-footer {
    width: fit-content;
}

.brand-footer .brand-name {
    color: var(--color-white);
    font-size: 2rem;
}

.brand-footer .brand-description {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    max-width: 330px;
    margin-top: 24px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ---------- COLUNAS ---------- */

.footer-column h3 {
    position: relative;
    margin-bottom: 24px;

    color: var(--color-white);
    font-size: 1rem;
    font-weight: 800;
}

.footer-column h3::after {
    content: "";
    display: block;

    width: 32px;
    height: 3px;
    margin-top: 10px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            var(--color-secondary)
        );
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column li,
.footer-column a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.89rem;
    line-height: 1.5;
}

.footer-column a {
    position: relative;
    width: fit-content;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

/* ---------- BASE DO RODAPÉ ---------- */

.footer-bottom {
    position: relative;
    z-index: 2;

    margin-top: 65px;
    padding-top: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.46);
    font-size: 0.78rem;
}

/* =========================================================
   RODAPÉ — TABLET
========================================================= */

@media (max-width: 1024px) {

    .site-footer {
        padding: 75px 0 26px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, 1fr);
        gap: 38px;
    }
}

/* =========================================================
   RODAPÉ — MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-footer {
        padding: 65px 0 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .footer-brand p {
        max-width: 420px;
    }

    .footer-bottom {
        margin-top: 48px;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }
}

/* =========================================================
   RODAPÉ — CELULAR PEQUENO
========================================================= */

@media (max-width: 480px) {

    .site-footer {
        padding: 58px 0 22px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .brand-footer .brand-name {
        font-size: 1.85rem;
    }

    .footer-column h3 {
        margin-bottom: 18px;
    }

    .footer-bottom {
        margin-top: 42px;
        padding-top: 23px;
    }
}

/* =========================================================
   RODAPÉ — FIM
========================================================= */