/* ============================================================
   1. Variáveis
   2. Label
   3. Introdução
   4. Visual Card
   5. Visual Card TEC2
   6. Modal
   ...
============================================================ */


/* ============================================================
   1. VARIÁVEIS
============================================================ */

: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-small: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 18px 35px rgba(0, 53, 83, 0.596);

    --transition: 0.3s ease;
}


/* ============================================================
   2. LABEL
============================================================ */

.section-label {

    display: inline-block;

    color: #52cefb;

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

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


/* ============================================================
   3. INTRODUÇÃO
============================================================ */

.tecnologia-intro {

    padding: 120px 80px;

    background: var(--light-bg);
}

.tecnologia-intro-container {

    max-width: 1350px;
    margin: auto;

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

    gap: 70px;

    flex-wrap: wrap;
}

.tecnologia-text {

    flex: 1;

    min-width: 320px;
    max-width: 550px;
}

.tecnologia-text h2 {

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

    color: var(--primary-blue);

    margin: 20px 0 30px;
}

.tecnologia-text p {

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

    color: var(--text-medium);

    margin-bottom: 20px;
}


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

.tecnologia-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);
}

/* Quadrícula */

.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:hover {

    transform: translateY(-6px);

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

.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: 30px;

    color: #5b6b7c;

    line-height: 1.6;
}


/* ============================================================
   5. VISUAL CARD TEC2
============================================================ */

.image-modal,
.image-modal * {

    cursor: none !important;
}

.visual-card-2 {

    position: relative;

    width: 500px;
    height: 300px;

    padding: 40px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #a2b9c9 0%,
            #ffffff 100%
        );

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

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

    text-align: center;

    overflow: hidden;

    transition: var(--transition);

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

.visual-card-2:hover {

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

.visual-card-2 img {

    width: 110%;
    height: 110%;

    object-fit: cover;
}


/* ============================================================
   6. MODAL
============================================================ */

.image-modal {

    position: fixed;
    inset: 0;

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

    padding: 40px;

    background: rgba(10, 20, 35, 0.82);

    backdrop-filter: blur(6px);

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.image-modal.active {

    opacity: 1;
    visibility: visible;
}

.modal-img {

    max-width: 100%;
    max-height: 100vh;

    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    animation: zoomIn 0.35s ease;
}

.close-modal {

    position: absolute;

    top: 25px;
    right: 35px;

    color: white;

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

    cursor: pointer !important;

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

.close-modal:hover {

    transform: scale(1.1);

    opacity: 0.8;
}

@keyframes zoomIn {

    from {

        transform: scale(0.85);

        opacity: 0;
    }

    to {

        transform: scale(1);

        opacity: 1;
    }
}

/* ============================================================
   7. LISTA DE TECNOLOGIAS
============================================================ */

.tecnologias-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;
}


/* ============================================================
   8. GRID
============================================================ */

.tecnologias-grid {

    max-width: 1200px;

    margin: auto;

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

    gap: 30px;
}


/* ============================================================
   9. CARDS
============================================================ */

.tecnologia-card {

    width: 320px;
    height: 220px;

    padding: 35px;

    border-radius: 24px;

    background: #ffffff;

    border: 1px solid #96c6eb;

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

    text-align: center;

    transition: var(--transition);
}

.tecnologia-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 56, 109, 0.719);
}

.tecnologia-card i {

    font-size: 2.3rem;

    color: var(--secondary-blue);

    margin-bottom: 25px;
}

.tecnologia-card h3 {

    font-size: 1.2rem;
    line-height: 1.5;

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


/* ============================================================
   10. CTA
============================================================ */

.cta-tecnologia {

    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: #000000;

    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);
}


/* ============================================================
   11. HERO
============================================================ */

/* Hero compacto */

.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;

    text-align: left;
}

.hero-todos h1 {

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

    margin: 0;

    color: white;
}

.hero-todos p {

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

    margin: 0;

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

    max-width: 600px;
}


/* ============================================================
   12. RESPONSIVIDADE GERAL
============================================================ */

@media (max-width: 900px) {

    .hero-todos .hero-content {

        padding: 0 40px;
    }

    .hero-todos h1 {

        font-size: 3rem;
    }

    .tecnologia-intro,
    .tecnologias-lista,
    .cta-tecnologia {

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

    .tecnologia-text h2 {

        font-size: 2.3rem;
    }

    .cta-content h2 {

        font-size: 2.4rem;
    }
}

@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%;
    }

    .visual-card {

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

    .visual-card-2 {

        width: 100%;
        max-width: 500px;
    }

    .tecnologia-card {

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

/* ============================================================
   13. EMPLOYEE PLANET
============================================================ */

.employee-grid {

    max-width: 1200px;

    margin: auto;

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

    gap: 30px;
}

.employee-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);
}

/* grid overlay */
.employee-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 */
.employee-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);
}

.employee-card:hover {

    transform: translateY(-6px);

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

.employee-card i,
.employee-card h3 {

    position: relative;
    z-index: 2;
}

.employee-card i {

    font-size: 2.2rem;

    color: var(--secondary-blue);

    margin-bottom: 20px;
}

.employee-card h3 {

    font-size: 1.2rem;

    line-height: 1.6;

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


/* ============================================================
   14. BENEFÍCIOS
============================================================ */

.beneficios {

    background: #ffffff;
}

.beneficios-texto {

    max-width: 950px;

    margin: auto;
}

.beneficios-texto h2 {

    font-size: 2.7rem;
    line-height: 1.2;

    color: var(--primary-blue);

    margin: 20px 0 30px;
}

.beneficios-texto p {

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

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

.beneficios-lista {

    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 28px;

    list-style: none;

    padding-left: 0;
}

.beneficios-lista li {

    position: relative;

    padding-left: 30px;

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

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

.beneficios-lista li::before {

    content: "•";

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

    color: #19b5ff;

    font-size: 1.8rem;
    line-height: 1;
}


/* ============================================================
   15. ROI
============================================================ */

.roi-section {

    padding: 100px 8%;
}

.roi-grid {

    display: grid;

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

    gap: 24px;

    margin-top: 50px;
}

.roi-card {

    position: relative;

    background: #ffffff;

    border-radius: 18px;

    padding: 35px 25px;

    text-align: center;

    transition: var(--transition);

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.roi-card:hover {

    transform: translateY(-8px);
}

.roi-top-line {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;
}

.roi-top-line.green { background: #1B3F94; }
.roi-top-line.blue  { background: #0093D0; }
.roi-top-line.orange{ background: #1B3F94; }
.roi-top-line.cyan  { background: #0093D0; }

.roi-card i {

    font-size: 2.2rem;

    margin-bottom: 20px;

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

.roi-card h3 {

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

    margin-bottom: 10px;

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

.roi-card p {

    color: #666;
    line-height: 1.6;
}


/* ============================================================
   16. RESPONSIVIDADE FINAL
============================================================ */

@media (max-width: 900px) {

    .roi-grid {

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

    .employee-grid {

        gap: 20px;
    }
}

@media (max-width: 600px) {

    .roi-grid {

        grid-template-columns: 1fr;
    }

    .roi-section {

        padding: 80px 20px;
    }

    .employee-card {

        width: 100%;
    }

    .beneficios-texto h2 {

        font-size: 2.2rem;
    }

    .roi-card h3 {

        font-size: 1.6rem;
    }
}


/* ============================================================
   LIMPEZA FINAL (pequenas normalizações)
============================================================ */

.tecnologia-intro,
.tecnologias-lista,
.cta-tecnologia {

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

@media (max-width: 900px) {

    .tecnologia-intro,
    .tecnologias-lista,
    .cta-tecnologia {

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

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

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

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