:root{
    --white:#ffffff;
    --line:#e5e7eb;
    --muted:#6b7280;
    --text:#1f2937;
}

/* =========================================================
   BASE
========================================================= */

.home-page{
    background:#f4f7fb;
    overflow-x:hidden;
}

.home-page,
.home-page *{
    font-family:'Poppins',Arial,Helvetica,sans-serif;
    box-sizing:border-box;
}

.paginainicial-wrapper{
    display:flex;
    min-height:100vh;
    width:100%;
}

/* =========================================================
   LADO ESQUERDO
========================================================= */

.homepage-left{
    width:48%;
    min-height:100vh;

    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    border-top-right-radius:40px;
    border-bottom-right-radius:40px;

    background:
        radial-gradient(
            circle at 35% 45%,
            rgba(0,255,200,.18),
            transparent 28%
        ),
        radial-gradient(
            circle at top left,
            rgba(0,255,200,.12),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom,
            rgba(255,255,255,.03),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #032b74 0%,
            #001d52 100%
        );
}

.tech-line-1,
.tech-line-2,
.tech-line-3{
    position:absolute;
    border-radius:50%;
}

.tech-line-1{
    width:1200px;
    height:1200px;

    top:-550px;
    left:-550px;

    border:1px solid rgba(255,255,255,.04);
}

.tech-line-2{
    width:900px;
    height:900px;

    left:-350px;
    bottom:-550px;

    border:1px solid rgba(0,255,200,.08);
}

.tech-line-3{
    width:700px;
    height:700px;

    top:120px;
    right:-500px;

    border:1px solid rgba(255,255,255,.03);
}

.glow{
    position:absolute;

    width:450px;
    height:450px;

    background:rgba(0,255,200,.08);

    border-radius:50%;

    filter:blur(90px);
}

.dots{
    position:absolute;

    width:220px;
    height:220px;

    left:50px;
    bottom:60px;

    opacity:.3;

    background-image:
        radial-gradient(
            rgba(0,255,200,.4) 1px,
            transparent 1px
        );

    background-size:14px 14px;
}

.brand-area{
    position:relative;
    z-index:20;

    text-align:center;
    color:#fff;
}

.brand-logo{
    width:180px;
    margin-bottom:25px;
}

.brand-title{
    font-size:78px;
    font-weight:700;
    line-height:1;
    margin:0;
}

.brand-title span{
    color:#11d3b0;
}

.brand-subtitle{
    margin-top:20px;
    font-size:16px;
    opacity:.85;
}

/* =========================================================
   LADO DIREITO
========================================================= */

.homepage-metrics{
    width:52%;
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:24px;

    padding:40px;

    background:#f4f7fb;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.homepage-titulos{
    position:relative;

    width:100%;
    max-width:900px;

    background:var(--white);

    border:1px solid var(--line);
    border-radius:12px;

    box-shadow:0 14px 34px rgba(6,33,74,.07);

    padding:25px;

    display:flex;
    flex-direction:column;
    gap:10px;

    animation:fadeInUp .7s ease;
}

.brand-logo-higt{
    position:absolute;
    width:120px;
    right:20px;
    top:20px;
}

.homepage-brand-titulo{
    font-size:30px;
    font-weight:700;
    text-align:center;
    margin:0;
}

.homepage-brand-titulo span{
    color:#11d3b0;
}

.subtitulo{
    text-align:center;
    color:var(--muted);
    margin:0;
}

.titulo-card{
    text-align:center;
    font-size:20px;
    font-weight:700;
    margin-top:10px;
}

/* =========================================================
   TEXTO
========================================================= */

.homepage-textos{
    width:100%;
    max-width:900px;

    background:#F2F9F9;

    border:1px solid var(--line);
    border-radius:12px;

    box-shadow:0 14px 34px rgba(6,33,74,.07);

    padding:25px;

    display:flex;
    flex-direction:column;

    gap:18px;

    animation:fadeInUp .7s ease;
}

.homepage-textos p{
    margin:0;

    font-size:16px;
    line-height:1.7;

    color:var(--text);
}

/* =========================================================
   CARDS
========================================================= */

.homepage-cards{
    width:100%;
    max-width:800px;

    display:flex;
    flex-wrap:wrap;

    justify-content:center;

    gap:24px;
}

.homepage-card{
    flex:1 1 250px;

    min-width:250px;

    background:#F2F9F9;

    border:1px solid var(--line);
    border-radius:12px;

    box-shadow:0 14px 34px rgba(6,33,74,.07);

    padding:20px;

    transition:.3s;

    animation:fadeInUp .7s ease;
}

.homepage-card:hover{
    transform:translateY(-4px);
}

.homepage-card span{
    display:block;

    font-size:13px;
    font-weight:800;

    color:var(--muted);
}

.homepage-card strong{
    display:block;

    font-size:32px;

    margin:8px 0;

    color:var(--text);
}

.homepage-card p{
    margin:0;
    color:var(--muted);
}

.homepage-card-blue{
    border-top:4px solid #1769e0;
}

.homepage-card-red{
    border-top:4px solid #dc2626;
}

.homepage-card-green{
    border-top:4px solid #30f916;
}

/* =========================================================
   BOTÕES
========================================================= */

.acoes{
    display:flex;
    justify-content:center;
    gap:15px;
    width:100%;
    max-width:900px;
}

.btn{
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    min-width:200px;
}

.btn-login{
    background:linear-gradient(
        90deg,
        #0bb39c,
        #058d7e
    );

    border:0;

    border-radius:16px;

    color:#fff;

    cursor:pointer;

    font-size:19px;
    font-weight:600;

    height:60px;

    transition:.3s;

    width:100%;
}

.btn-login:hover{
    color:#fff;

    transform:translateY(-2px);

    box-shadow:
        0 10px 25px rgba(
            11,
            179,
            156,
            .25
        );
}

/* =========================================================
   LOGIN
========================================================= */

.tipo-login{
    width:100%;
    max-width:900px;

    background:#032B70;

    border-radius:12px;

    padding:30px;

    display:grid;

    gap:20px;

    animation:fadeInUp .7s ease;
}

.tipo-login span{
    color:#fff;

    font-size:30px;
    font-weight:800;

    text-align:center;
}

.btn-logins{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.btn-logins a{
    background:linear-gradient(
        90deg,
        #0bb39c,
        #058d7e
    );

    border-radius:16px;

    color:#fff;
    text-decoration:none;

    min-height:80px;

    padding:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    text-align:center;

    font-size:18px;
    font-weight:600;

    transition:.3s;
}

.btn-logins a:hover{
    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(
            11,
            179,
            156,
            .25
        );
}

.btn-logins a:last-child{
    grid-column:1 / -1;
    max-width:400px;
    justify-self:center;
}

/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width:1200px){

    .homepage-left{
        width:40%;
    }

    .homepage-metrics{
        width:60%;
    }
}

@media (max-width:991px){

    .paginainicial-wrapper{
        flex-direction:column;
    }

    .homepage-left{
        width:100%;
        min-height:320px;

        border-radius:0;
    }

    .homepage-metrics{
        width:100%;
        padding:20px;
    }

    .brand-title{
        font-size:56px;
    }

    .btn-logins{
        grid-template-columns:1fr;
    }

    .btn-logins a:last-child{
        grid-column:auto;
        max-width:none;
    }

    .brand-logo-higt{
        position:static;
        margin:auto;
        display:block;
    }
}

@media (max-width:576px){

    .brand-title{
        font-size:42px;
    }

    .homepage-brand-titulo{
        font-size:24px;
    }

    .tipo-login span{
        font-size:22px;
    }

    .homepage-card{
        min-width:100%;
    }

    .btn-login{
        font-size:16px;
    }
}