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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{

    --orange:#f97316;
    --orange-dark:#ea580c;

    --white:#ffffff;
    --black:#111111;

    --text:#444444;

    --gray:#f5f5f5;
    --gray2:#ececec;

    --footer:#08101f;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --radius:18px;

}

body{

    font-family:Poppins,sans-serif;

    color:var(--text);

    background:#fff;

    padding-top:68px;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:90px 8%;

}

.container{

    width:min(1200px,100%);

    margin:auto;

}

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

nav{

    position:fixed;

    top:0;
    left:0;
    right:0;

    height:68px;

    background:#fff;

    display:grid;

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

    align-items:center;

    padding:0 5vw;

    border-bottom:1px solid var(--orange);

    z-index:1000;

}

.nav-logo img{

    width:160px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:55px;

    justify-self:center;

}

.nav-links a{

    text-decoration:none;

    color:#222;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--orange);

}



.nav-social{

    justify-self:end;

    display:flex;

    gap:18px;

}

.nav-social a{

    color:#222;

    font-size:20px;

    transition:.3s;

}

.nav-social a:hover{

    color:var(--orange);

    transform:translateY(-3px);

}

.nav-links .nav-chamados {
    background: black;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 166, 0, 0.35);
    transition: .3s ease;
}

.nav-links .nav-chamados:hover {
    background: var(--accent2);
    color: #fff;
    transform: translateY(-2px);
}

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

.hero{

    height:520px;

    background:

    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.55)),

    url("img/assistencia.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.overlay{

    width:100%;

}

.hero-content{

    width:min(900px,90%);

    margin:auto;

    color:#fff;

}

.tag{

    display:inline-block;

    background:rgba(249,115,22,.15);

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

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:30px;

    font-size:14px;

    letter-spacing:1px;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-block;

    padding:16px 34px;

    background:var(--orange);

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.35s;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--orange-dark);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;

    padding:16px 34px;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.35s;

    font-weight:600;

}

.btn-outline:hover{

    background:#fff;

    color:var(--orange);

}

/*=========================================
 SOBRE
=========================================*/

.sobre{

    background:#fff;

}

.sobre .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.section-tag{

    color:var(--orange);

    font-weight:700;

    letter-spacing:2px;

    font-size:13px;

}

.sobre h2{

    font-size:42px;

    margin:20px 0;

    color:#111;

}

.sobre p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

}

.imagem img{

    border-radius:18px;

    box-shadow:var(--shadow);

}


/*=========================================
  TÍTULOS DAS SEÇÕES
=========================================*/

.titulo{

    text-align:center;

    max-width:850px;

    margin:0 auto 60px;

}

.titulo span{

    color:var(--orange);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.titulo h2{

    font-size:42px;

    color:#111;

    margin:15px 0;

}

.titulo p{

    font-size:18px;

    line-height:1.8;

}


/*=========================================
  EQUIPAMENTOS
=========================================*/

.equipamentos{

    background:var(--gray);

}


.cards{

    width:min(1200px,100%);

    margin:auto;

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(200px,1fr));

    gap:30px;

}


.equip-card{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:var(--radius);

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

    box-shadow:var(--shadow);

    transition:.35s;

}

.equip-card p{
    padding-top: 20px;

    font-size: 0.9rem;
}


.equip-card:hover{

    transform:translateY(-10px);

    border-color:var(--orange);

}


.equip-card i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    background:rgba(249,115,22,.12);

    color:var(--orange);

    border-radius:50%;

    font-size:32px;

}


.equip-card h3{

    color:#222;

    font-size:20px;

}



/*=========================================
  BENEFÍCIOS
=========================================*/


.beneficios{

    background:#fff;

}


.beneficios-grid{

    width:min(1200px,100%);

    margin:auto;

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}



.beneficio{

    background:#fff;

    padding:35px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

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

    transition:.35s;

}


.beneficio:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}



.beneficio i{

    width:65px;

    height:65px;

    background:var(--orange);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    font-size:26px;

    margin-bottom:25px;

}



.beneficio h3{

    font-size:21px;

    color:#111;

    margin-bottom:15px;

}



.beneficio p{

    line-height:1.7;

    font-size:16px;

}


/*=========================================
  PROCESSO / TIMELINE
=========================================*/


.processo{

    background:var(--gray);

}



.timeline{

    width:min(1200px,100%);

    margin:auto;

    display:flex;

    align-items:flex-start;

    justify-content:center;

}



.etapa{

    background:#fff;

    width:260px;

    min-height:260px;

    padding:35px 25px;

    text-align:center;

    border-radius:18px;

    box-shadow:var(--shadow);

}



.numero{

    width:55px;

    height:55px;

    background:var(--orange);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    margin:0 auto 20px;

}



.etapa h3{

    color:#111;

    margin-bottom:15px;

}



.etapa p{

    line-height:1.7;

    font-size:15px;

}



.linha{

    height:3px;

    width:70px;

    background:var(--orange);

    margin-top:75px;

}

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


.cta{

    background:

    linear-gradient(
        rgba(234,88,12,.95),
        rgba(234,88,12,.95)
    ),

    url("img/assistencia.jpg");

    background-size:cover;

    background-position:center;

    color:#fff;

    text-align:center;

}



.cta-container{

    max-width:900px;

    margin:auto;

}



.cta span{

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

}



.cta h2{

    font-size:44px;

    margin:20px 0;

}



.cta p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}



.cta .btn-primary{

    background:#fff;

    color:var(--orange-dark);

}



.cta .btn-primary:hover{

    background:#111;

    color:#fff;

}



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


footer{

    background:var(--footer);

    color:#ccc;

    padding:60px 8% 30px;

}



.footer-grid{

    display:grid;

    grid-template-columns:

    1fr 1fr 1fr;

    gap:50px;

    margin-bottom:40px;

}



.nav-logo-text{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}



.footer-brand p{

    font-size:14px;

    line-height:1.6;

    margin-bottom:3px;

    color:#aaa;

}



.footer-brand strong{

    color:#fff;

}



.footer-col h4{

    color:#fff;

    margin-bottom:20px;

    font-size:18px;

}



.footer-col ul{

    list-style:none;

}



.footer-col li{

    margin-bottom:12px;

}



.footer-col a{

    color:#aaa;

    text-decoration:none;

    transition:.3s;

}



.footer-col a:hover{

    color:var(--orange);

}



.footer-contact-list{

    display:flex;

    flex-direction:column;

    gap:12px;

}



.footer-divider{

    border:0;

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

    margin-bottom:25px;

}



.footer-bottom{

    display:flex;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;

    font-size:13px;

}



.footer-bottom a{

    color:#aaa;

    text-decoration:none;

    margin-left:15px;

}



.footer-bottom a:hover{

    color:var(--orange);

}



/*=========================================
 ANIMAÇÕES
=========================================*/


.hero-content,
.sobre .texto,
.sobre .imagem,
.equip-card,
.beneficio,
.etapa{

    animation:fadeUp .8s ease forwards;

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/*=========================================
 RESPONSIVIDADE
=========================================*/


@media(max-width:1000px){


    .nav-links{

        gap:25px;

    }


    .hero h1{

        font-size:44px;

    }


    .sobre .container{

        grid-template-columns:1fr;

    }


    .sobre .imagem{

        order:-1;

    }


    .timeline{

        flex-direction:column;

        align-items:center;

        gap:30px;

    }


    .linha{

        width:3px;

        height:50px;

        margin:0;

    }


}



@media(max-width:768px){


    body{

        padding-top:68px;

    }


    nav{

        grid-template-columns:1fr;

        justify-items:center;

    }


    .nav-links,
    .nav-social{

        display:none;

    }


    .hero{

        height:420px;

    }


    .hero h1{

        font-size:36px;

    }


    .hero p{

        font-size:16px;

    }


    section{

        padding:60px 5%;

    }


    .titulo h2,
    .sobre h2,
    .cta h2{

        font-size:32px;

    }


    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }


    .btn-primary,
    .btn-outline{

        width:100%;

        max-width:280px;

    }


    .footer-grid{

        grid-template-columns:1fr;

    }


    .footer-bottom{

        flex-direction:column;

    }


}