/* ============================================================
   1. VARIÁVEIS (ADICIONADAS PARA CONSISTÊNCIA)
============================================================ */

:root {

    --primary-blue: #1B3F94;
    --secondary-blue: #0093D0;
    --light-bg: #f4f8fb;

    --text-dark: #0a2540;
    --text-medium: #4d5b6b;

    --border-light: #d9e5ee;

    --card-gradient: linear-gradient(135deg, #d9f0ff 0%, #ffffff 100%);

    --shadow-soft: 0 10px 25px rgba(0,0,0,0.03);
    --shadow-hover: 0 18px 35px rgba(0, 80, 146, 0.35);
    --shadow-small: 0 10px 30px rgba(0, 0, 0, 0.03);

    --transition: 0.3s ease;
    
}


/* ============================================================
   2. LABEL (UNIFICADO)
============================================================ */

.section-label {

    display: inline-block;

    color: #52cefb;

    letter-spacing: 5px;
    text-transform: uppercase;

    font-size: 10px;
    font-weight: 600;
}


/* ============================================================
   3. INTRO SERVIÇO
============================================================ */

.servico-intro {

    padding: 120px 80px;

    background: #f4f8fb;
}

.servico-intro-container {

    max-width: 1350px;

    margin: auto;

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

    gap: 70px;

    flex-wrap: wrap;
}

/* ============================================================
   TEXTO DO SERVIÇO
============================================================ */

.servico-text {
    flex: 1;
    max-width: 650px;
    padding: 40px;
}

/* etiqueta superior */
.servico-text .section-label {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #66bfff;
}

/* título */
.servico-text h2 {
    margin-bottom: 30px;

    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;

    color: #1B3F94;
}

/* parágrafos */
.servico-text p {
    position: relative;

    margin-bottom: 18px;
    padding-left: 22px;

    font-size: 1.05rem;
    line-height: 1.8;

    color: #334155;
}

/* bolinha azul */
.servico-text p::before {
    content: "";

    position: absolute;

    left: 0;
    top: 11px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #0093D0;
}


/* ============================================================
   4. VISUAL CARD
============================================================ */

.servicos-visual {

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

.visual-card {

    position: relative;

    width: 320px;
    height: 320px;

    padding: 40px;

    border-radius: 32px;

    background: linear-gradient(135deg, #bac8d2 0%, #f3faff 100%);

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

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

    text-align: center;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-soft);
}

.visual-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-hover);
}

/* GRID EFFECT */
.visual-card::before {

    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(27,63,148,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,63,148,0.04) 1px, transparent 1px);

    background-size: 28px 28px;

    pointer-events: none;
}

/* GLOW */
.visual-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(0,147,208,0.08);

    top: -60px;
    right: -60px;

    filter: blur(20px);
}

.visual-card i,
.visual-card span,
.visual-card p {

    position: relative;
    z-index: 2;
}

.visual-card i {

    font-size: 4rem;

    color: var(--secondary-blue);

    margin-bottom: 28px;
}

.visual-card span {

    font-size: 3rem;
    font-weight: 700;

    color: var(--text-dark);

    margin-bottom: 14px;
}

.visual-card p {

    font-size: 25px;

    color: #5b6b7c;

    line-height: 1.6;
}


/* ============================================================
   5. LISTA SERVIÇOS
============================================================ */

.servicos-lista {

    padding: 120px 80px;

    background: #ffffff;
}

.section-header {

    max-width: 1200px;

    margin: auto auto 70px;
}

.section-header h2 {

    font-size: 2.7rem;

    color: #062b52;

    margin-top: 20px;
}


/* ============================================================
   6. GRID
============================================================ */

.servicos-grid {

    max-width: 1200px;

    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 30px;
}

/* ============================================================
   7. CARDS
============================================================ */

.servico-card {

    position: relative;

    width: 320px;
    min-height: 220px;

    padding: 35px;

    border-radius: 24px;

    background: var(--card-gradient);

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

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

    text-align: center;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-small);
}

.servico-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(0, 53, 83, 0.25);
}

.servico-card::before {

    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(27,63,148,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,63,148,0.04) 1px, transparent 1px);

    background-size: 28px 28px;

    pointer-events: none;
}

.servico-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(0,147,208,0.08);

    top: -60px;
    right: -60px;

    filter: blur(20px);
}

.servico-card i,
.servico-card h3 {

    position: relative;
    z-index: 2;
}

.servico-card i {

    font-size: 2.2rem;

    color: var(--secondary-blue);

    margin-bottom: 20px;
}

.servico-card h3 {

    font-size: 1.2rem;

    line-height: 1.6;

    color: var(--text-dark);
}


/* ============================================================
   8. CTA
============================================================ */

.cta-servico {

    position: relative;

    padding: 130px 80px;

    overflow: hidden;

    background: linear-gradient(135deg, #eef5f8, #dcecf3);
}

.cta-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(0,0,0,0.15);

    filter: blur(120px);

    top: -120px;
    right: -120px;
}

.cta-content {

    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.cta-content h2 {

    font-size: 3rem;
    line-height: 1.3;

    color: #000;
    margin: 20px 0 35px;
}

.cta-btn {

    display: inline-block;

    padding: 16px 38px;

    border-radius: 999px;

    text-decoration: none;

    color: white;
    font-weight: 700;

    background: linear-gradient(135deg,#00c6ff,#0072ff);

    transition: var(--transition);
}

.cta-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgb(0, 58, 83);
}


/* ============================================================
   9. HERO
============================================================ */

.hero-small {

    padding: 25px 40px;

    min-height: unset;
    height: auto;
}

.hero-todos {

    position: relative;

    min-height: 100px;

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

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #081c2c 0%,
        #0a2540 45%,
        #00a3b8 100%
    );
}

.hero-todos::before {

    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(255,255,255,0.08),
        transparent 40%
    );
}

.hero-todos .hero-content {

    position: relative;
    z-index: 2;

    max-width: 750px;

    padding-left: 100px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 0;
}

.hero-todos h1 {

    font-size: 41px;
    line-height: 1.1;

    margin: 0;

    color: white;
}

.hero-todos p {

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

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

    max-width: 600px;

    margin: 0;
}


/* ============================================================
   10. SERVIÇO 2 (PROCESSAMENTO)
============================================================ */

.servico-processamento {

    max-width: 1200px;

    margin: auto;

    padding: 40px 80px 120px;
}

.servico-processamento h2 {

    max-width: 900px;
}

.servico-processamento p {

    position: relative;

    padding-left: 28px;

    margin-bottom: 22px;
}

.servico-processamento p::before {

    content: "•";

    position: absolute;
    left: 0;
    top: 0;

    color: #00c6ff;

    font-size: 1.4rem;
}


/* ============================================================
   11. SERVIÇO 3 (SOFTWARE)
============================================================ */

.servico-software .servico-text {

    max-width: 600px;
}

.servico-software .servico-text p {

    max-width: 540px;
}

.servico-software .visual-card {

    background: linear-gradient(135deg,#0093D0,#1B3F94);
}

.servico-software .visual-card i {

    color: white;
}

.servico-software .servico-card {

    background: linear-gradient(135deg,#00a8e8,#005792);
}

.servico-software .servico-card:hover {

    box-shadow: 0 20px 40px rgba(0, 58, 83, 0.35);
}

.servico-software .cta-servico {

    background: linear-gradient(135deg,#eef7fb,#d9edf7);
}

.servico-software .cta-content h2 {

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   12. RESPONSIVIDADE FINAL
============================================================ */

@media (max-width: 1000px) {

    .servico-intro-container {

        flex-direction: column;
        text-align: center;
    }

    .servico-text {

        max-width: 100%;
    }

    .servicos-lista,
    .servico-intro,
    .cta-servico,
    .servico-processamento {

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

@media (max-width: 700px) {

    .hero-todos .hero-content {

        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .hero-todos h1 {

        font-size: 34px;
        text-align: center;
    }

    .hero-todos p {

        text-align: center;
        max-width: 90%;
    }

    .servico-text h2,
    .section-header h2 {

        font-size: 2rem;
    }

    .visual-card {

        width: 100%;
        max-width: 320px;
        height: 280px;
    }

    .servico-card {

        width: 100%;
    }

    .servico-processamento {

        padding: 40px 30px 100px;
    }
}


    /* 14.2 CURSOR - DESATIVAR NO MOBILE */
    @media (max-width: 900px) {

        .cursor,
        .cursor-ring,
        .trail,
        .particle {
            display: none !important;
        }

        /* restaurar cursor normal */
        * {
            cursor: auto !important;
        }
    }