*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    color:#333;
    line-height:1.6;
}

header{
    display:flex;
    justify-content:space-between;
    align-items: center;
    padding:20px 10%;
    background:#0f172a;
}

.logo img{
    height: 135px;
    width: auto;
    display: block;
}

nav a{
    color:black;
    text-decoration:none;
    border-radius: 20px;
    font-size: 20px;
    margin-left:25px;
    padding: 10px;
    background: white;
}

.hero{
    height:80vh;
    background:linear-gradient(
        rgba(15,23,42,.8),
        rgba(15,23,42,.8)
    ),
    url('images/banner.png');
    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.hero-content{
    width:650px;
    margin-left:10%;
}

.hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    background:#d4af37;
    color:white;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
}

section{
    padding:80px 10%;
}

h2{
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contato-section{
    display:flex;
    align-items:center;
    min-height:650px;
    background:#ffffff;
}

.mapa{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.contato-info{
    flex:1;
    padding:80px;
    border-radius:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#ffffff;
}

.subtitulo{
    letter-spacing:10px;
    color:#0f172a;
    font-size:16px;
    margin-bottom:20px;
}

.contato-info h2{
    font-size:52px;
    color:#0f172a;
    margin-bottom:25px;
}

.contato-info p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
    line-height:1;
}

.btn-contato{
    display:inline-block;
    width:fit-content;
    background:#0f172a;
    color:white;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-contato:hover{
    background:#d4af37;
}

.endereco{
    margin-top:40px;
}

.endereco h3{
    color:#0f172a;
    margin-bottom:10px;
}

.endereco p{
    margin:0;
}

@media(max-width:900px){

    .contato-section{
        flex-direction:column;
    }

    .contato-info{
        padding:40px 25px;
    }

    .contato-info h2{
        font-size:38px;
    }

}

footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:20px;
}

