/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f172a;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ===========================
   NAVBAR
=========================== */

/* NAVBAR */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:90px;

    padding:0 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(15,23,42,.75);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

}

.logo{

    height:150px;

}

.menu{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

}

.menu a{

    color:white;

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:#3b82f6;

}

.btn-nav{

    background:#2563eb;

    padding:15px 28px;

    border-radius:50px;

}

.btn-nav:hover{

    background:#1d4ed8;

}

.menu-toggle{

    display:none;

    font-size:30px;

    color:white;

    cursor:pointer;

}


.nav-link{
    position: relative;
    text-decoration: none;
}

.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #04A4DC;
    border-radius: 20px;
    transition: .3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width: 100%;
}

.nav-link.active{
    color: #04A4DC;
}


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

.inicio{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
}

.inicio img{
    width: 20%;
}

.hero{

    min-height:100vh;

    padding-top:140px;

    background:
    linear-gradient(rgba(2,6,23,.78),rgba(2,6,23,.78)),
    url("./img/banner.jpg");

    background-size:cover;
    background-position:center;

}

.hero-content{
    padding: 0;
    margin: 0;
    width:50%;


    min-height:75vh;

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

}

.hero h1{

    font-size:64px;

    max-width:720px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    max-width:650px;

    font-size:22px;

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:45px;

}

/* ===========================
   BOTÕES
=========================== */

.botoes{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    background:#2563eb;

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    font-weight:bold;

    transition:.35s;

}

.btn:hover{

    background:#1d4ed8;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(37,99,235,.35);

}

.btn-secundario{

    border:2px solid #fff;

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    transition:.35s;

}

.btn-secundario:hover{

    background:#fff;

    color:#111827;

}


/*==========================
      ESTADOS
===========================*/

.estados{

    padding:100px 20px;

    background:#111827;

}

.estados .container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.estados h2{

    font-size:42px;

    margin-bottom:15px;

}

.estados .subtitulo{

    max-width:700px;

    margin:0 auto 60px;

    color:#cbd5e1;

    line-height:1.8;

    font-size:18px;

}

.estados-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-bottom:50px;

}

.estado{

    background:#1e293b;

    padding:35px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.estado:hover{

    transform:translateY(-8px);

    background:#2563eb;

}

.estado i{

    font-size:42px;

    margin-bottom:20px;

    color:#60a5fa;

}

.estado:hover i{

    color:#fff;

}

.estado h3{

    font-size:22px;

    font-weight:600;

}



/*=========================================
            SERVIÇOS
==========================================*/

.servicos{

    width:90%;
    max-width:1200px;

    margin:100px auto;

}

.servicos h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:#1e293b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    cursor:pointer;

}

.card:hover{

    transform:translateY(-10px);

    background:#233552;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.card i{

    font-size:50px;

    color:#3b82f6;

    margin-bottom:25px;

}

.card h3{

    font-size:24px;

    margin-bottom:15px;

}

.card p{

    color:#cbd5e1;

    line-height:1.7;

}


/*=========================================
            VANTAGENS
==========================================*/

.vantagens{

    padding:100px 8%;

    background:#111827;

}

.vantagens h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.vantagens-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;


}

.vantagens-grid div{

    background:#1e293b;

    padding:30px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

    font-size:18px;

}

.vantagens-grid div:hover{

    transform:translateY(-8px);

    background:#233552;

}


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

.cta{

    padding:120px 20px;

    text-align:center;

    background:linear-gradient(135deg,#1e3a8a,#2563eb);

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    font-size:20px;

    color:#e2e8f0;

    line-height:1.8;

}

.cta .btn{

    display:inline-block;

}


/*=========================================
                FAQ
==========================================*/

.faq{

    padding:100px 20px;

    background:#0f172a;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq h2{

    text-align:center;

    font-size:42px;

    margin-bottom:15px;

}

.faq-subtitulo{

    text-align:center;

    color:#cbd5e1;

    margin-bottom:50px;

    font-size:18px;

}

.faq details{

    background:#1e293b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.3s;

}

.faq details:hover{

    border-color:#2563eb;

}

.faq summary{

    list-style:none;

    cursor:pointer;

    padding:22px 25px;

    font-size:18px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq summary::after{

    content:"+";

    font-size:26px;

    color:#3b82f6;

    transition:.3s;

}

.faq details[open] summary::after{

    content:"−";

}

.faq details p{

    padding:0 25px 25px;

    color:#cbd5e1;

    line-height:1.8;

}


/*=========================================
                FOOTER
==========================================*/

footer{

    background:#020617;

    padding:35px;

    text-align:center;

    color:#94a3b8;

    font-size:15px;

}


/*=========================================
            SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0f172a;

}

::-webkit-scrollbar-thumb{

    background:#2563eb;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#3b82f6;

}


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

@media(max-width:992px){

    .inicio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;

    margin: auto;
}

.hero-content{
    align-items: center;
    margin: 0;
    width:100%;


    min-height:75vh;

    display:flex;
    justify-content:center;

}


.inicio img{
    display: none;
}



.hero h1{

    font-size:48px;
    text-align: center;

}

.hero p{

    font-size:19px;

}

}


@media(max-width:1000px){

@media(max-width:1000px){

.menu{

    position:fixed;

    top:90px;

    right:-100%;

    width:280px;

    height:calc(100vh - 90px);

    background:#111827;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    gap:35px;

    padding-top:50px;

    transition:.4s;

}

.menu.active{

    right:0;

}

.menu-toggle{

    display:block;

}

}

.hero{

    padding-top:220px;

}

.hero-content{

    text-align:center;

    align-items:center;

}

.hero h1{

    font-size:38px;

}

.hero p{

    font-size:18px;

}

.botoes{

    flex-direction:column;

    width:100%;

}

.btn,
.btn-secundario{

    width:100%;

    text-align:center;

}

.servicos h2,
.vantagens h2,
.cta h2{

    font-size:32px;

}

.cta{

    padding:80px 20px;

}

}


@media(max-width:480px){

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

.servicos h2,
.vantagens h2{

    font-size:28px;

}

.card{

    padding:35px 20px;

}

.btn-nav{

    width:100%;

    justify-content:center;

}

}


/*  */

.visionario{
    padding: 6em 0 0 0;
}



.texto-degrade {
  background: linear-gradient(to right, black, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.texto-degrade {
  background: linear-gradient(
    90deg,
    black,
    gray,
    white,
    gray,
    black
  );
  background-size: 300%;
  animation: animar 4s infinite linear;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes animar {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}
