/* =========================
   PÁGINA TECNOLOGIA
   FUNDO CONTÍNUO
========================= */

.tecnologia-page {
    position: relative;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.42),
            rgba(255, 255, 255, 0.42)
        ),
        url("../assets/img/tecnologia-bg.png");

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

    background-attachment: fixed;

    background-color: #F5FAFA;
}


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

.tecnologia-hero {
    position: relative;

    min-height: 640px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.82) 38%,
            rgba(255, 255, 255, 0.38) 67%,
            rgba(255, 255, 255, 0.12) 100%
        ) !important;
}


/* DETALHE DECORATIVO */

.tecnologia-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -150px;
    bottom: -230px;

    border-radius: 50%;

    border:
        70px solid
        rgba(11, 93, 104, 0.035);

    pointer-events: none;
}


.tecnologia-hero .page-hero-content {
    position: relative;

    z-index: 2;

    max-width: 820px;
}


.tecnologia-hero h1 {
    max-width: 760px;
}


.tecnologia-hero p {
    max-width: 660px;
}


/* =========================
   PRINCÍPIOS
========================= */

.tecnologia-principios {
    position: relative;

    background:
        transparent !important;

    backdrop-filter:
        none !important;

    -webkit-backdrop-filter:
        none !important;
}


/* =========================
   CARDS PRINCÍPIOS
========================= */

.tech-grid {
    display: grid;

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

    gap: 18px;
}


.tech-card {
    position: relative;

    min-height: 250px;

    padding: 26px;

    overflow: hidden;

    border:
        1px solid
        rgba(11, 93, 104, 0.13);

    border-radius: 18px;

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

    backdrop-filter:
        blur(13px);

    -webkit-backdrop-filter:
        blur(13px);

    box-shadow:
        0 12px 34px
        rgba(11, 93, 104, 0.08);

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


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

    border-color:
        rgba(11, 93, 104, 0.28);

    box-shadow:
        0 20px 45px
        rgba(11, 93, 104, 0.13);
}


.tech-card > span {
    display: flex;

    width: 44px;
    height: 44px;

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

    margin-bottom: 30px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );

    color: white;

    font-size: 11px;
    font-weight: 700;
}


.tech-card h3 {
    margin-bottom: 11px;
}


.tech-card p {
    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   SEÇÃO ACESSO POR PERFIL
========================= */

/*
   Isso é importante porque
   .section-soft vem do base.css.
*/

.tecnologia-page .section-soft {
    position: relative;

    background:
        transparent !important;

    background-color:
        transparent !important;

    backdrop-filter:
        none !important;

    -webkit-backdrop-filter:
        none !important;
}


/* =========================
   PERFIS
========================= */

.profile-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.profile-list article {
    display: grid;

    grid-template-columns:
        52px 1fr;

    align-items: start;

    gap: 16px;

    padding: 20px;

    border:
        1px solid
        rgba(11, 93, 104, 0.13);

    border-radius: 15px;

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

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    box-shadow:
        0 10px 28px
        rgba(11, 93, 104, 0.06);

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


.profile-list article:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(11, 93, 104, 0.25);

    box-shadow:
        0 15px 34px
        rgba(11, 93, 104, 0.10);
}


.profile-list article > span {
    display: flex;

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background-color:
        var(--color-mint);

    color:
        var(--color-primary);

    font-size: 11px;
    font-weight: 700;
}


.profile-list h3 {
    margin-bottom: 5px;

    font-size: 16px;
}


.profile-list p {
    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   SEGURANÇA
========================= */

.security-section {
    position: relative;

    padding-top: 125px;
    padding-bottom: 125px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(7, 59, 66, 0.91),
            rgba(11, 93, 104, 0.86)
        ) !important;

    backdrop-filter:
        blur(4px);

    -webkit-backdrop-filter:
        blur(4px);

    box-shadow:
        0 -25px 70px
        rgba(7, 59, 66, 0.12),
        0 25px 70px
        rgba(7, 59, 66, 0.16);
}


/* BRILHO ATRÁS */

.security-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(67, 184, 176, 0.22),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================
   PAINEL SEGURANÇA
========================= */

.security-panel {
    position: relative;

    z-index: 2;

    max-width: 1050px;

    margin:
        -30px auto;

    padding: 62px;

    overflow: hidden;

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

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(11, 93, 104, 0.87),
            rgba(7, 59, 66, 0.94)
        );

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 30px 80px
        rgba(3, 37, 42, 0.32);
}


/* DECORAÇÃO */

.security-panel::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -130px;
    top: -120px;

    border-radius: 50%;

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

    pointer-events: none;
}


.security-panel > * {
    position: relative;

    z-index: 2;
}


.security-panel h2 {
    max-width: 780px;

    margin-bottom: 18px;

    color: white;
}


.security-panel > p {
    max-width: 760px;

    color: #D0E2E3;

    line-height: 1.8;
}


/* =========================
   AVISO SEGURANÇA
========================= */

.security-notice {
    max-width: 740px;

    margin-top: 34px;

    padding: 20px;

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

    border-radius: 14px;

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


.security-notice strong {
    display: block;

    margin-bottom: 7px;

    color: #8CE2DC;

    font-size: 13px;
}


.security-notice p {
    color: #D0E1E2;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================
   EVOLUÇÃO
========================= */

.tecnologia-evolucao {
    position: relative;

    background:
        transparent !important;

    background-color:
        transparent !important;

    backdrop-filter:
        none !important;

    -webkit-backdrop-filter:
        none !important;
}


.evolucao-texto {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.evolucao-texto p {
    font-size: 15px;

    line-height: 1.8;
}


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

.tecnologia-cta {
    position: relative;

    background:
        transparent !important;

    background-color:
        transparent !important;

    backdrop-filter:
        none !important;

    -webkit-backdrop-filter:
        none !important;

    border-top:
        1px solid
        rgba(11, 93, 104, 0.10);
}


.tecnologia-cta h2 {
    max-width: 680px;
}


/* =========================
   SOMBRA SUAVE NAS ÁREAS
========================= */

.tecnologia-principios,
.tecnologia-page .section-soft,
.tecnologia-evolucao,
.tecnologia-cta {
    isolation: isolate;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1024px) {

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


    .tecnologia-hero {
        min-height: 560px;
    }


    .security-panel {
        padding: 45px;
    }

}


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

@media (max-width: 768px) {

    .tecnologia-page {
        background-attachment:
            scroll;

        background-size:
            auto 100%;

        background-position:
            center top;
    }


    .tecnologia-hero {
        min-height: auto;

        background:
            rgba(255, 255, 255, 0.86)
            !important;
    }


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


    .security-section {
        padding-top: 80px;

        padding-bottom: 80px;
    }


    .security-panel {
        margin:
            0 auto;

        padding:
            35px 25px;
    }


    .security-panel h2 {
        font-size:
            clamp(
                2rem,
                7vw,
                2.8rem
            );
    }

}


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

@media (max-width: 480px) {

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


    .tech-card {
        padding: 22px;
    }


    .security-panel {
        padding:
            28px 20px;
    }

}