/* ==========================================================
   PÁGINA DE AUTOMAÇÕES
========================================================== */

/* ==========================================================
   HERO + BENEFÍCIOS
   CONSULTORIA DE TECNOLOGIA
========================================================== */


.benefits{

    text-align:center;


    background:


    radial-gradient(
        circle at top,
        rgba(4,97,203,.18),
        transparent 40%
    ),


    linear-gradient(
        135deg,
        #00163d,
        #000d24
    );

}




.hero{

    position:relative;


    padding:170px 0 120px;


    background:


    radial-gradient(
        circle at 80% 20%,
        rgba(26,130,255,.25),
        transparent 35%
    ),


    linear-gradient(
        135deg,
        #000b22,
        #001b45
    );


    overflow:hidden;

}





.hero::after{

    content:"";


    position:absolute;


    width:500px;


    height:500px;


    right:-200px;


    bottom:-200px;


    background:#0461cb;


    opacity:.12;


    filter:blur(120px);


    border-radius:50%;


}





.hero-grid{

    display:grid;


    grid-template-columns:

    1.1fr .9fr;


    gap:80px;


    align-items:center;


}





/* etiqueta superior */


.tag{


    display:inline-flex;


    align-items:center;


    background:

    rgba(4,97,203,.15);



    color:#4da3ff;



    padding:10px 22px;



    border-radius:30px;



    margin-bottom:28px;



    font-weight:600;



    border:

    1px solid rgba(77,163,255,.25);



    letter-spacing:.5px;



}





.hero h1{


    font-size:3.6rem;


    line-height:1.15;


    letter-spacing:-1px;


    color:#fff;


    margin-bottom:28px;



}





.hero p{


    color:#c5d2e6;


    font-size:1.12rem;


    line-height:1.9;


    max-width:620px;


    margin-bottom:45px;



}





.hero-buttons{


    display:flex;


    gap:20px;


    flex-wrap:wrap;



}





/* BOTÃO PRINCIPAL */


.btn-primary{


    display:inline-flex;


    align-items:center;


    justify-content:center;



    padding:16px 38px;



    border-radius:12px;



    background:


    linear-gradient(
        135deg,
        #0461cb,
        #1a82ff
    );



    color:#fff;



    text-decoration:none;



    font-weight:700;



    box-shadow:


    0 15px 35px rgba(4,97,203,.35);



    transition:.35s;



}





.btn-primary:hover{


    transform:translateY(-4px);



    box-shadow:


    0 20px 45px rgba(4,97,203,.55);



}





/* BOTÃO SECUNDÁRIO */


.btn-secondary{


    display:inline-flex;


    align-items:center;


    justify-content:center;



    padding:16px 38px;



    border-radius:12px;



    border:


    1px solid rgba(255,255,255,.25);



    background:


    rgba(255,255,255,.04);



    color:#fff;



    text-decoration:none;



    font-weight:600;



    transition:.35s;



}





.btn-secondary:hover{


    background:#fff;


    color:#001338;


    border-color:#fff;



}





/* destaque azul no hover */

.btn-secondary:hover::after{


    content:"";


}
/* ==========================================================
   IMAGEM HERO
========================================================== */

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* brilho atrás da imagem */

.hero-image::before {

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    background:var(--blue-hover);

    opacity:.18;

    filter:blur(90px);

    border-radius:50%;

    right:10%;

    z-index:0;

}

/* texto ao lado da imagem */

.hero-text{
    margin-left: 2vw;
}


/* imagem */

.hero-image img{

    position:relative;

    z-index:1;

    width:100%;

    max-width:520px;

    display:block;

    border-radius:24px;

    object-fit:cover;


    border:1px solid rgba(255,255,255,.15);


    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 35px rgba(4,97,203,.25);


    transition:.4s ease;

    animation:floatHero 5s ease-in-out infinite;

}



/* hover */

.hero-image img:hover{

    transform:translateY(-8px) scale(1.02);


    box-shadow:
        0 35px 80px rgba(0,0,0,.5),
        0 0 50px rgba(255,106,0,.25);

}



/* animação flutuando */

@keyframes floatHero{

    0%,100%{
        transform:translateY(0);
    }


    50%{
        transform:translateY(-12px);
    }

}
/* ========================================================== */

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--orange);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    color:#fff;
    font-size:2.5rem;
    margin:18px 0;
}

.section-title p{
    color:#bcbcbc;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ==========================================================
   BENEFÍCIOS
========================================================== */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* ================= CARD ================= */

.card {
    position: relative;
    background: linear-gradient(
        145deg,
        var(--bg-card),
        #06152d
    );
    padding: 35px;
    border-radius: 18px;
    transition: .35s ease;
    border: 1px solid rgba(66, 165, 245, 0.12);
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,.25);
}


/* linha superior */

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--orange),
        var(--orange-light)
    );
    opacity: .9;
}


/* brilho */

.card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -70px;
    right: -70px;
    background: rgba(4,97,203,.25);
    filter: blur(45px);
    border-radius: 50%;
    transition: .35s ease;
}


/* hover */

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,106,0,.6);

    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        0 0 25px rgba(255,106,0,.15);
}


.card:hover::after {
    background: rgba(255,106,0,.35);
}


/* ================= ÍCONE ================= */

.card-icon {
    position: relative;
    z-index: 1;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
    );

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(255,106,0,.25);

    transition: .35s ease;
}


.card-icon svg {
    width: 34px;
    height: 34px;

    stroke: #0f172a;

    transition: .35s ease;
}


.card:hover .card-icon {
    transform: translateY(-5px);

    background: linear-gradient(
        135deg,
        var(--blue-hover),
        #1a82ff
    );

    box-shadow:
        0 8px 30px rgba(4,97,203,.35);
}


.card:hover .card-icon svg {
    stroke: #fff;
}


/* ================= CONTEÚDO ================= */

.card-content {
    position: relative;
    z-index: 1;
}


.card h3 {
    color: var(--text-primary);

    font-size: 1.15rem;
    font-weight: 700;

    margin-bottom: 15px;
}


.card p {
    color: var(--text-muted);

    line-height: 1.7;

    font-size: .95rem;

    margin: 0;
}
/* ==========================================================
   SERVIÇOS
========================================================== */

.services{
    background:#06152f;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-box{
    background:var(--bg-card);
    border-radius:18px;
    padding:35px;
    transition:.35s;
    border-left:5px solid transparent;
}

.service-box:hover{
    transform:translateY(-8px);
    border-left-color:var(--orange);
}

.service-box h3{
    color:#fff;
    margin-bottom:18px;
}

.service-box p{
    color:#bdbdbd;
    line-height:1.8;
}

/* ==========================================================
   PROCESSO
========================================================== */

.process{
     background:linear-gradient(135deg,#00163d,#001435);
}

.timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

.step{
    background:var(--bg-card);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
}

.step:hover{
    transform:translateY(-8px);
}

.step span{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    color:#fff;
    font-size:1.3rem;
    font-weight:bold;
}

.step h3{
    color:#fff;
    margin-bottom:15px;
}

.step p{
    color:#c5c5c5;
    line-height:1.7;
}

/* ==========================================================
   FAQ
========================================================== */

.faq{
    background:#06152f;
}

.faq-item{
    background:var(--bg-card);
    border-radius:15px;
    padding:30px;
    margin-bottom:25px;
    transition:.3s;
}

.faq-item:hover{
    border-left:5px solid var(--orange);
}

.faq-item h3{
    color:#fff;
    margin-bottom:15px;
}

.faq-item p{
    color:#c4c4c4;
    line-height:1.8;
}

/* ==========================================================
   CTA
========================================================== */

.cta{
    text-align:center;
    background:linear-gradient(135deg,#00163d,#002868);
}

.cta h2{
    color:#fff;
    font-size:2.8rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 40px;
    color:#d5d5d5;
    line-height:1.8;
}

/* ==========================================================
   ANIMAÇÕES
========================================================== */

.card,
.service-box,
.step,
.faq-item{
    animation:fadeUp .7s ease both;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-image{
        order:-1;
    }

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .timeline{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-buttons{
        display: flex;
        justify-content: center;
    }
    

}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero{
        padding:120px 0 70px;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .process h2{
        font-size:2rem;
    }
    .faq h2{
        font-size: 2rem;
    }
    #contato.cta h2{
        font-size: 1.8rem;
    }
    .services h2{
        font-size: 1.7rem;
    }

    .benefits h2{
        font-size: 2rem;
    }


    .cards,
    .service-grid,
    .timeline{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:2rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

}