/* =========================================================
   GLEICOS TECNOLOGIA
   Identidade visual
   Azul-marinho + Dourado + Creme
   ========================================================= */


/* -------------------------
   CONFIGURAÇÕES GERAIS
   ------------------------- */

:root {
    --azul-marinho: #071a2e;
    --azul-profundo: #0d2a46;
    --dourado: #d7aa3a;
    --dourado-claro: #e7c76a;
    --creme: #f5f1e8;
    --branco: #ffffff;
    --cinza-azulado: #6f7d8c;

    --largura-conteudo: 92%;
    --largura-maxima: 1500px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--creme);
    color: var(--azul-marinho);
}


/* -------------------------
   CABEÇALHO
   ------------------------- */

.site-header {
    background: var(--azul-marinho);
    border-bottom: 1px solid rgba(231, 199, 106, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;

    min-height: 82px;

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

    padding: 0 30px;
}


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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}


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

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--branco);

    text-decoration: none;

    font-size: 14px;

    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--dourado-claro);
}


/* -------------------------
   BOTÃO DO CABEÇALHO
   ------------------------- */

.header-button {
    background: var(--dourado);
    color: var(--azul-marinho);

    text-decoration: none;

    padding: 12px 20px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

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

.header-button:hover {
    background: var(--dourado-claro);

    transform: translateY(-2px);
}


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

.site-header .logo {
    display: flex;
    align-items: center;
}

.site-header .logo img {
    display: block;
    width: 250px;
    height: auto;
}


/* -------------------------
   HERO
   ------------------------- */

.hero {
    color: var(--branco);
}

.hero-container {
    width: min(var(--largura-conteudo), var(--largura-maxima));

    min-height: 410px;

    margin: 0 auto;
    padding: 45px 30px 35px;

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 45px;

    align-items: center;
}


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

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

.hero-label {
    display: block;

    color: var(--dourado-claro);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.hero h1 {
    color: var(--branco);

    font-size: clamp(44px, 4.2vw, 64px);
    line-height: 1.02;

    margin: 0 0 25px;

    max-width: 850px;
}

.hero h1 span {
    display: block;
    color: var(--dourado);
    white-space: nowrap;
}

.hero-description {
    max-width: 650px;

    color: var(--branco);

    font-size: 18px;
    line-height: 1.6;

    margin: 0;
}


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

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 32px;
}

.button-primary,
.button-secondary {
    display: inline-flex;

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

    min-height: 50px;

    padding: 0 24px;

    border-radius: 4px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

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

.button-primary {
    background: var(--dourado);

    color: var(--azul-marinho);
}

.button-primary:hover {
    background: var(--dourado-claro);

    transform: translateY(-2px);
}

.button-secondary {
    border: 1px solid var(--dourado);

    color: var(--branco);

    background: transparent;
}

.button-secondary:hover {
    background: rgba(215, 170, 58, 0.10);

    transform: translateY(-2px);
}

.button-arrow {
    font-size: 20px;

    margin-left: 12px;
}


/* -------------------------
   HERO COM IMAGEM DE FUNDO
   ------------------------- */

.hero {
    position: relative;
    overflow: hidden;

    background:
            url("../images/hero-gleicos-bg.png") center center / cover no-repeat;


    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-container {
    position: relative;
    z-index: 1;

    width: min(var(--largura-conteudo), var(--largura-maxima));
    min-height: 475px;

    margin: 0 auto;
    padding: 72px 30px 62px;

    display: flex;
    align-items: center;
}

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


/* -------------------------
   DIFERENCIAIS
   ------------------------- */

.hero-benefits {
    max-width: 1200px;

    margin: 0 auto;

    position: relative;
    z-index: 2;

    padding: 22px 30px;

    border-top: 1px solid rgba(231, 199, 106, 0.24);

    background: rgba(7, 26, 46, 0.72);

    backdrop-filter: blur(3px);

    display: grid;

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

    gap: 0;
}

.benefit {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 55px;

    padding: 0 25px;

    border-right: 1px solid rgba(231, 199, 106, 0.18);
}

.benefit:first-child {
    padding-left: 0;
}

.benefit:last-child {
    border-right: none;
}

.benefit-icon {
    color: var(--dourado);

    font-size: 27px;

    flex-shrink: 0;
}

.benefit strong,
.benefit span {
    display: block;
}

.benefit strong {
    color: var(--branco);

    font-size: 13px;
}

.benefit span {
    color: rgba(255, 255, 255, 0.70);

    font-size: 12px;

    margin-top: 3px;
}


/* -------------------------
   SEÇÕES
   ------------------------- */

.section {
    max-width: 1200px;

    margin: 0 auto;

    padding: 90px 30px;
}

.section h2 {
    font-size: 42px;

    margin-bottom: 20px;
}

.section p {
    max-width: 700px;

    font-size: 17px;

    line-height: 1.7;
}


/* -------------------------
   RESPONSIVIDADE
   ------------------------- */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .header-container {
        padding: 15px 20px;
    }

    .hero-container {
        min-height: 500px;
        padding: 65px 20px 55px;
    }

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

    .hero h1 {
        font-size: 48px;
    }

    .section {
        padding: 70px 20px;
    }
}


@media (max-width: 600px) {

    .header-button {
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero-container {
        min-height: 520px;
        padding: 55px 20px 45px;
    }

    .hero {
        background-position: 64% center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        text-align: center;
    }
}
/* ========================================
   O QUE FAZEMOS
   ======================================== */

.solutions-section {
    background: var(--creme);
    color: var(--azul-marinho);

    padding: 85px 30px 90px;
}

.section-heading {
    width: min(var(--largura-conteudo), var(--largura-maxima));
    margin: 0 auto 48px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;

    align-items: end;
}

.section-label {
    display: block;

    color: var(--dourado);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 14px;
}

.section-title h2 {
    margin: 0;

    color: var(--azul-marinho);

    font-size: clamp(40px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.section-title h2 span {
    display: block;
}

.section-intro {
    display: flex;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    gap: 24px;
}

.section-intro p {
    max-width: 480px;

    margin: 0;

    color: var(--azul-marinho);

    font-size: 16px;
    line-height: 1.6;
}

.section-link {
    display: inline-block;

    color: var(--azul-marinho);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

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

    padding-bottom: 5px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.section-link:hover {
    color: var(--dourado);
    border-color: var(--dourado);
}


/* ========================================
   CARDS DE SOLUÇÕES
   ======================================== */

.solutions-grid {
    width: min(var(--largura-conteudo), var(--largura-maxima));
    margin: 0 auto;

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

    gap: 16px;
}

.solution-card {
    min-height: 185px;

    padding: 26px 28px 24px;

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

    border: 1px solid rgba(7, 26, 46, 0.12);

    border-radius: 6px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);

    border-color: var(--dourado);

    background: rgba(255, 255, 255, 0.8);
}

.solution-icon {
    color: var(--azul-marinho);

    font-size: 30px;
    line-height: 1;

    margin-bottom: 42px;
}

.solution-card h3 {
    color: var(--azul-marinho);

    font-size: 17px;
    line-height: 1.25;

    margin: 0 0 10px;
}

.solution-card p {
    color: var(--azul-marinho);

    font-size: 14px;
    line-height: 1.5;

    margin: 0;
}

/* ========================================
   NOSSOS SISTEMAS
   ======================================== */

.systems-section {
    background: var(--azul-marinho);
    color: var(--branco);

    padding: 90px 30px 95px;
}

.systems-heading {
    width: min(var(--largura-conteudo), var(--largura-maxima));
    margin: 0 auto 48px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;

    align-items: end;
}

.systems-heading .section-label {
    color: var(--dourado);
}

.systems-heading h2 {
    margin: 0;

    color: var(--branco);

    font-size: clamp(40px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.systems-heading h2 span {
    display: block;
    color: var(--branco);
}

.systems-intro {
    display: flex;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    gap: 24px;
}

.systems-intro p {
    max-width: 480px;

    margin: 0;

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

    font-size: 16px;
    line-height: 1.6;
}

.systems-link {
    display: inline-block;

    color: var(--branco);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

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

    padding-bottom: 5px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.systems-link:hover {
    color: var(--dourado);
    border-color: var(--dourado);
}


/* ========================================
   GRID DOS SISTEMAS
   ======================================== */

.systems-grid {
    width: min(var(--largura-conteudo), var(--largura-maxima));
    margin: 0 auto;

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

    gap: 16px;
}


/* ========================================
   CARD DO SISTEMA
   ======================================== */

.system-card {
    overflow: hidden;

    background: var(--branco);
    color: var(--azul-marinho);

    border-radius: 6px;

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.system-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.22);
}


/* ========================================
   ÁREA DE PREVIEW
   ======================================== */

.system-preview {
    height: 145px;

    overflow: hidden;

    background: var(--azul-marinho);

    border-bottom: 1px solid rgba(7, 26, 46, 0.10);
}

.system-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}

.system-card:hover .system-preview img {
    transform: scale(1.03);
}


/* ========================================
   CONTEÚDO DO CARD
   ======================================== */

.system-card-content {
    padding: 22px;
}

.system-category {
    display: block;

    color: var(--dourado);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.system-card h3 {
    color: var(--azul-marinho);

    font-size: 19px;
    line-height: 1.2;

    margin: 0 0 10px;
}

.system-card p {
    color: var(--azul-marinho);

    font-size: 13px;
    line-height: 1.5;

    margin: 0 0 18px;
}

.system-card a {
    color: var(--azul-marinho);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.25s ease;
}

.system-card a:hover {
    color: var(--dourado);
}

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

.services-section {
    background: var(--creme);
    color: var(--azul-marinho);
    padding: 90px 30px;
}

.services-heading {
    max-width: 1200px;
    margin: 0 auto 55px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: end;
}

.services-title h2 {
    margin: 0;

    color: var(--azul-marinho);

    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.services-title h2 span {
    display: block;
}

.services-intro {
    display: flex;
    align-items: flex-end;
}

.services-intro p {
    max-width: 520px;

    margin: 0;

    color: var(--azul-marinho);

    font-size: 16px;
    line-height: 1.65;
}


/* =========================
   LISTA DE SERVIÇOS
   ========================= */

.services-list {
    max-width: 1200px;
    margin: 0 auto;

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

    border-top: 1px solid rgba(7, 26, 46, 0.18);
}


/* =========================
   ITEM DE SERVIÇO
   ========================= */

.service-item {
    min-height: 190px;

    padding: 32px 35px;

    display: grid;
    grid-template-columns: 55px 1fr;

    gap: 25px;

    border-bottom: 1px solid rgba(7, 26, 46, 0.18);

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

.service-item:nth-child(odd) {
    border-right: 1px solid rgba(7, 26, 46, 0.18);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.55);
}


/* =========================
   NÚMERO
   ========================= */

.service-number {
    color: var(--dourado);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    padding-top: 3px;
}


/* =========================
   CONTEÚDO
   ========================= */

.service-content h3 {
    margin: 0 0 12px;

    color: var(--azul-marinho);

    font-size: 21px;
    line-height: 1.2;
}

.service-content p {
    max-width: 460px;

    margin: 0;

    color: var(--azul-marinho);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 900px) {

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

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

    .service-item:nth-child(odd) {
        border-right: none;
    }

}


@media (max-width: 600px) {

    .services-section {
        padding: 70px 20px;
    }

    .services-title h2 {
        font-size: 36px;
    }

    .service-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;

        padding: 28px 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }

}

/* =========================
   POR QUE A GLEICOS
   ========================= */

.why-section {
    background: var(--azul-marinho);
    color: var(--branco);
    padding: 90px 30px;
}

.why-heading {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.why-heading .section-label {
    color: var(--dourado);
}

.why-heading h2 {
    margin: 0;

    color: var(--branco);

    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.why-heading h2 span {
    display: block;
    color: var(--dourado);
}


/* =========================
   ITENS
   ========================= */

.why-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.why-item {
    padding: 0 28px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.why-item:first-child {
    padding-left: 0;
}

.why-item:last-child {
    padding-right: 0;
    border-right: none;
}


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

.why-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 20px;

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

    border: 1px solid var(--dourado);
    border-radius: 50%;

    color: var(--dourado);

    font-size: 24px;

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

.why-item:hover .why-icon {
    background: rgba(218, 168, 47, 0.10);
    transform: translateY(-3px);
}


/* =========================
   TÍTULO
   ========================= */

.why-item h3 {
    margin: 0 0 12px;

    color: var(--branco);

    font-size: 16px;
    line-height: 1.3;
}


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

.why-item p {
    max-width: 190px;

    margin: 0 auto;

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

    font-size: 13px;
    line-height: 1.55;
}


/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 1000px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 0;
    }

    .why-item:nth-child(2) {
        border-right: none;
    }

    .why-item:nth-child(5) {
        grid-column: 1 / -1;
        border-right: none;
    }

    .why-item:last-child {
        padding-right: 28px;
    }

}


@media (max-width: 600px) {

    .why-section {
        padding: 70px 20px;
    }

    .why-heading h2 {
        font-size: 36px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-item {
        padding: 0 0 35px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .why-item:last-child {
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .why-item p {
        max-width: 320px;
    }

}
/* =========================
   NOSSOS PROJETOS
   ========================= */

.projects-section {
    background: var(--creme);
    color: var(--azul-marinho);
    padding: 70px 30px 80px;
}


/* =========================
   CABEÇALHO
   ========================= */

.projects-heading {
    max-width: 1200px;
    margin: 0 auto 35px;
}

.projects-title {
    max-width: 700px;
}

.projects-title h2 {
    margin: 0 0 16px;

    color: var(--azul-marinho);

    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.projects-title h2 span {
    display: block;
}

.projects-title p {
    max-width: 650px;

    margin: 0;

    color: var(--azul-marinho);

    font-size: 15px;
    line-height: 1.55;
}


/* =========================
   GRID
   ========================= */

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================
   CARD
   ========================= */

.project-card {
    overflow: hidden;

    background: var(--branco);

    border: 1px solid rgba(7, 26, 46, 0.12);
    border-radius: 6px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(7, 26, 46, 0.12);
}


/* =========================
   IMAGEM
   ========================= */

.project-image {
    width: 100%;
    height: 155px;

    overflow: hidden;

    background: var(--azul-marinho);
}

.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.02);
}


/* =========================
   CONTEÚDO
   ========================= */

.project-content {
    padding: 18px 18px 20px;
}

.project-number {
    display: block;

    margin-bottom: 6px;

    color: var(--dourado);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.project-category {
    display: block;

    min-height: 26px;

    margin-bottom: 7px;

    color: var(--dourado);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.3px;

    line-height: 1.35;
}

.project-content h3 {
    margin: 0 0 9px;

    color: var(--azul-marinho);

    font-size: 18px;
    line-height: 1.2;
}

.project-content p {
    margin: 0;

    color: var(--azul-marinho);

    font-size: 12px;
    line-height: 1.5;
}


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

@media (max-width: 1050px) {

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

    .project-image {
        height: 210px;
    }
}


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

@media (max-width: 600px) {

    .projects-section {
        padding: 60px 20px 70px;
    }

    .projects-title h2 {
        font-size: 38px;
    }

    .projects-title p {
        font-size: 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-image {
        height: 210px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 19px;
    }

    .project-content p {
        font-size: 13px;
    }
}

/* =========================
   COMO TRABALHAMOS
   ========================= */

.process-section {
    background: var(--azul-marinho);
    color: var(--branco);
    padding: 80px 30px;
}


/* =========================
   CABEÇALHO
   ========================= */

.process-heading {
    max-width: 1200px;
    margin: 0 auto 55px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
    align-items: end;
}

.process-heading h2 {
    margin: 0;

    color: var(--branco);

    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.process-heading h2 span {
    display: block;
    color: var(--dourado);
}

.process-intro {
    display: flex;
    align-items: flex-end;
}

.process-intro p {
    max-width: 500px;

    margin: 0;

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

    font-size: 16px;
    line-height: 1.6;
}


/* =========================
   ETAPAS
   ========================= */

.process-steps {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
}


/* =========================
   ITEM
   ========================= */

.process-step {
    position: relative;

    min-height: 190px;

    padding: 0 24px;

    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step:first-child {
    padding-left: 0;
    border-left: none;
}

.process-step:last-child {
    padding-right: 0;
}


/* =========================
   NÚMERO
   ========================= */

.process-number {
    margin-bottom: 30px;

    color: var(--dourado);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


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

.process-step h3 {
    margin: 0 0 12px;

    color: var(--branco);

    font-size: 19px;
    line-height: 1.2;
}

.process-step p {
    max-width: 190px;

    margin: 0;

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

    font-size: 13px;
    line-height: 1.55;
}


/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 900px) {

    .process-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 0;
    }

    .process-step:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }
}


@media (max-width: 600px) {

    .process-section {
        padding: 65px 20px;
    }

    .process-heading h2 {
        font-size: 38px;
    }

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

    .process-step {
        min-height: auto;

        padding: 0 0 30px;

        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .process-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .process-number {
        margin-bottom: 15px;
    }

    .process-step p {
        max-width: none;
    }
}
/* =========================
   CTA — VAMOS CONVERSAR
   ========================= */

.cta-section {
    background: var(--creme);
    color: var(--azul-marinho);

    padding: 70px 30px;

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

    gap: 80px;
}


/* =========================
   CONTEÚDO
   ========================= */

.cta-content {
    width: 650px;
    max-width: 100%;
}

.cta-content .section-label {
    color: var(--dourado);
}

.cta-content h2 {
    margin: 0 0 15px;

    color: var(--azul-marinho);

    font-size: 42px;
    line-height: 1.08;
}

.cta-content h2 span {
    display: block;

    color: var(--dourado);
}

.cta-content p {
    margin: 0;

    color: var(--azul-marinho);

    font-size: 15px;
    line-height: 1.55;
}


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

.cta-actions {
    width: 190px;

    display: flex;
    flex-direction: column;

    gap: 12px;

    flex-shrink: 0;
}

.cta-button {
    width: 100%;
    min-height: 44px;

    padding: 12px 18px;

    box-sizing: border-box;

    display: inline-flex;

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

    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


/* =========================
   BOTÃO PRINCIPAL
   ========================= */

.cta-primary {
    background: var(--dourado);
    color: var(--azul-marinho);

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

.cta-primary:hover {
    background: var(--dourado-claro);

    transform: translateY(-2px);
}


/* =========================
   BOTÃO SECUNDÁRIO
   ========================= */

.cta-secondary {
    background: transparent;
    color: var(--azul-marinho);

    border: 1px solid var(--azul-marinho);
}

.cta-secondary:hover {
    background: var(--azul-marinho);
    color: var(--branco);
}


/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 900px) {

    .cta-section {
        gap: 45px;
    }

    .cta-content {
        width: auto;
        flex: 1;
    }

}


@media (max-width: 700px) {

    .cta-section {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        padding: 55px 20px;
    }

    .cta-content {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-actions {
        width: 100%;
        max-width: 260px;
    }

}

/* =========================
   RODAPÉ GLEICOS
   ========================= */

.site-footer {
    background: var(--azul-marinho);
    color: var(--branco);
    padding: 70px 30px 55px;
}


/* =========================
   ÁREA PRINCIPAL
   ========================= */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;

    gap: 55px;
    align-items: start;
}


/* =========================
   MARCA
   ========================= */

.footer-brand {
    max-width: 300px;
    text-align: left;
}

.footer-logo {
    color: var(--branco);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-tech {
    color: var(--dourado);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

.footer-brand p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.6;
}

.footer-brand .footer-description {
    margin-top: 12px;
    max-width: 240px;
}


/* =========================
   COLUNAS
   ========================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin: 0 0 22px;
    color: var(--branco);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-decoration: none;

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

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


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

.footer-contact span {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.footer-contact a:last-child {
    color: var(--dourado);
    font-weight: 700;
}


/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }
}


@media (max-width: 600px) {

    .site-footer {
        padding: 55px 20px 40px;
    }

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

    .footer-brand {
        max-width: 100%;
    }

}
/* =========================================================
   GLEICOS TECNOLOGIA
   RESPONSIVIDADE FINAL
   ========================================================= */


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

@media (max-width: 1050px) {

    /* -------------------------
       CABEÇALHO
       ------------------------- */

    .header-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .site-header .logo img {
        width: 190px;
    }


    /* -------------------------
       HERO
       ------------------------- */

    .hero-container {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-benefits {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(2) {
        border-right: none;
    }

    .benefit:nth-child(3),
    .benefit:nth-child(4) {
        border-top: 1px solid rgba(231, 199, 106, 0.18);
        padding-top: 15px;
        padding-bottom: 15px;
    }


    /* -------------------------
       SOLUÇÕES
       ------------------------- */

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

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


    /* -------------------------
       SISTEMAS
       ------------------------- */

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

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


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

@media (max-width: 600px) {

    /* -------------------------
       BASE
       ------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
    }


    /* -------------------------
       CABEÇALHO
       ------------------------- */

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-container {
        width: 100%;
        min-height: 68px;

        padding: 10px 16px;

        gap: 12px;
    }

    .site-header .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .site-header .logo img {
        width: 145px;
        max-width: 100%;
        height: auto;
    }

    .header-button {
        flex-shrink: 0;

        padding: 9px 11px;

        font-size: 11px;
        white-space: nowrap;
    }


    /* -------------------------
       HERO
       ------------------------- */

    .hero {
        width: 100%;
        background-position: 64% center;
    }

    .hero-container {
        width: 100%;
        min-height: auto;

        padding: 65px 20px 45px;

        display: flex;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .hero h1 {
        max-width: 100%;

        font-size: 38px;
        line-height: 1.04;

        margin-bottom: 20px;
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero-description {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.55;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 10px;

        margin-top: 26px;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        min-height: 48px;

        padding-left: 18px;
        padding-right: 18px;
    }


    /* -------------------------
       DIFERENCIAIS DO HERO
       ------------------------- */

    .hero-benefits {
        width: 100%;

        margin: 0;

        padding: 0;

        display: grid;
        grid-template-columns: 1fr 1fr;

        background: rgba(7, 26, 46, 0.82);
    }

    .benefit {
        min-height: 72px;

        padding: 12px 14px;

        gap: 8px;

        border-right: 1px solid rgba(231, 199, 106, 0.18);
        border-top: 1px solid rgba(231, 199, 106, 0.18);
    }

    .benefit:nth-child(1),
    .benefit:nth-child(2) {
        border-top: none;
    }

    .benefit:nth-child(2),
    .benefit:nth-child(4) {
        border-right: none;
    }

    .benefit:first-child {
        padding-left: 14px;
    }

    .benefit-icon {
        font-size: 20px;
    }

    .benefit strong {
        font-size: 10px;
        line-height: 1.2;
    }

    .benefit span {
        font-size: 9px;
        line-height: 1.25;
    }


    /* =====================================================
       O QUE FAZEMOS
       ===================================================== */

    .solutions-section {
        width: 100%;

        padding: 65px 20px 70px;
    }

    .section-heading {
        width: 100%;

        margin-bottom: 35px;

        display: flex;
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;
    }

    .section-title {
        width: 100%;
    }

    .section-title h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .section-intro {
        width: 100%;

        gap: 18px;
    }

    .section-intro p {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.55;
    }

    .section-link {
        font-size: 13px;
    }


    /* -------------------------
       CARDS DE SOLUÇÕES
       ------------------------- */

    .solutions-grid {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .solution-card {
        width: 100%;
        min-height: auto;

        padding: 22px 20px;
    }

    .solution-icon {
        margin-bottom: 28px;
        font-size: 27px;
    }

    .solution-card h3 {
        font-size: 17px;
    }

    .solution-card p {
        font-size: 14px;
    }


    /* =====================================================
       NOSSOS SISTEMAS
       ===================================================== */

    .systems-section {
        width: 100%;

        padding: 65px 20px 70px;
    }

    .systems-heading {
        width: 100%;

        margin-bottom: 35px;

        display: flex;
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;
    }

    .systems-heading h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .systems-intro {
        width: 100%;
        gap: 18px;
    }

    .systems-intro p {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.55;
    }

    .systems-link {
        font-size: 13px;
    }


    /* -------------------------
       CARDS DOS SISTEMAS
       ------------------------- */

    .systems-grid {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .system-card {
        width: 100%;
    }

    .system-preview {
        height: 190px;
    }

    .system-card-content {
        padding: 20px;
    }

    .system-card h3 {
        font-size: 20px;
    }

    .system-card p {
        font-size: 14px;
    }


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

    .services-section {
        width: 100%;

        padding: 65px 20px 70px;
    }

    .services-heading {
        width: 100%;

        margin-bottom: 40px;

        display: flex;
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;
    }

    .services-title h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .services-intro p {
        max-width: 100%;
        font-size: 15px;
    }

    .services-list {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .service-item {
        width: 100%;

        grid-template-columns: 38px 1fr;

        gap: 15px;

        min-height: auto;

        padding: 26px 5px;
    }

    .service-item:nth-child(odd) {
        border-right: none;
    }

    .service-number {
        font-size: 13px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        max-width: 100%;
        font-size: 14px;
    }


    /* =====================================================
       POR QUE A GLEICOS
       ===================================================== */

    .why-section {
        width: 100%;

        padding: 65px 20px 70px;
    }

    .why-heading {
        width: 100%;

        margin-bottom: 45px;
    }

    .why-heading h2 {
        font-size: 36px;
    }

    .why-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 0;
    }

    .why-item {
        padding: 0 0 30px;
        margin-bottom: 30px;
    }

    .why-item p {
        max-width: 100%;
    }


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

    .projects-section {
        width: 100%;

        padding: 65px 20px 70px;
    }

    .projects-heading {
        width: 100%;
    }

    .projects-title {
        width: 100%;
        max-width: none;
    }

    .projects-title h2 {
        font-size: 36px;
    }

    .projects-title p {
        max-width: 100%;
        font-size: 15px;
    }

    .projects-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .project-image {
        height: 210px;
    }


    /* =====================================================
       COMO TRABALHAMOS
       ===================================================== */

    .process-section {
        width: 100%;

        padding: 65px 20px 70px;
    }

    .process-heading {
        width: 100%;

        margin-bottom: 45px;

        display: flex;
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;
    }

    .process-heading h2 {
        font-size: 36px;
    }

    .process-intro p {
        max-width: 100%;
        font-size: 15px;
    }

    .process-steps {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 0;
    }

    .process-step {
        width: 100%;

        min-height: auto;

        padding: 0 0 28px;
        margin-bottom: 28px;

        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .process-step:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .process-number {
        margin-bottom: 12px;
    }

    .process-step h3 {
        font-size: 19px;
    }

    .process-step p {
        max-width: 100%;
        font-size: 14px;
    }


    /* =====================================================
       VAMOS CONVERSAR
       ===================================================== */

    .cta-section {
        width: 100%;

        padding: 60px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .cta-content {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-actions {
        width: 100%;
        max-width: none;
    }

    .cta-button {
        width: 100%;
        min-height: 48px;
    }


    /* =====================================================
       RODAPÉ
       ===================================================== */

    .site-footer {
        width: 100%;

        padding: 55px 20px 40px;
    }

    .footer-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .footer-description {
        max-width: 100%;
    }
}


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

@media (max-width: 380px) {

    .header-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header .logo img {
        width: 125px;
    }

    .header-button {
        padding: 8px 9px;
        font-size: 10px;
    }

    .hero h1,
    .section-title h2,
    .systems-heading h2,
    .services-title h2,
    .why-heading h2,
    .projects-title h2,
    .process-heading h2 {
        font-size: 33px;
    }

    .hero-container,
    .solutions-section,
    .systems-section,
    .services-section,
    .why-section,
    .projects-section,
    .process-section,
    .cta-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .benefit {
        padding-left: 10px;
        padding-right: 10px;
    }

    .benefit strong {
        font-size: 9px;
    }

    .benefit span {
        font-size: 8px;
    }
}