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

body{

    font-family:Poppins,sans-serif;
    background:#111;
    color:#fff;
}

header{

    width:100%;
    background:#000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    top:0;
    z-index:1000;
}

.logo img{

    height:70px;
}

nav a{

    color:white;
    text-decoration:none;
    margin-left:35px;
    transition:.3s;
    font-weight:500;
}

nav a:hover{

    color:#ff6a00;
}

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    padding:0 10%;

    background:linear-gradient(rgba(0,0,0,.85),
    rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80");

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

}

.hero h1{

    font-size:58px;
    color:#ff6a00;
}

.hero p{

    margin:30px 0;
    font-size:20px;
    max-width:700px;
}

.btn{

    display:inline-block;

    background:#ff6a00;

    color:white;

    text-decoration:none;

    padding:16px 35px;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;
}

.btn:hover{

    background:white;
    color:#ff6a00;
}

section{

    padding:90px 10%;
}

h2{

    text-align:center;

    font-size:38px;

    color:#ff6a00;

    margin-bottom:40px;
}

.empresa p{

    max-width:900px;

    margin:auto;

    text-align:center;

    line-height:1.8;
}

.cards{

    display:grid;

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

    gap:30px;
}

.card{

    background:#222;

    padding:35px;

    border-radius:15px;

    transition:.3s;
}

.card:hover{

    transform:translateY(-8px);

    background:#ff6a00;
}

.card h3{

    margin-bottom:20px;
}

.itens{

    display:grid;

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

    gap:25px;
}

.itens div{

    background:#222;

    padding:30px;

    border-left:5px solid #ff6a00;

    border-radius:10px;
}

.cta{

    text-align:center;

    background:#1a1a1a;
}

.cta p{

    margin:25px 0;
}

footer{

    background:#000;

    text-align:center;

    padding:30px;
}

@media(max-width:900px){

header{

flex-direction:column;

}

nav{

margin-top:15px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

.telefone {
    display: flex;
    align-items: center; /* Alinha a imagem e o texto verticalmente */
    gap: 10px; /* Espaço entre a imagem e o número */
    font-size: 20px;
    color: #fff;
}

.telefone img {
    width: 30px;
    height: 30px;
}

}