body{
font-family: Arial;
margin:0;
background:#f4f4f4;
}



/* MENU */

header{
background:linear-gradient(to right,#1c6ea4,#2a86c1);
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
text-decoration:underline;
}



/* BANNER */

.banner{
height:500px;

background:
linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
url("imagem1.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

text-align:center;
color:white;
}

.banner-texto h1{
font-size:50px;
margin-bottom:10px;
}

.banner-texto p{
font-size:20px;
margin-bottom:20px;
}

.botao{
background:#ff7a00;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.botao:hover{
background:#e56700;
}



/* DESTINOS */

.destinos{
padding:60px 40px;
text-align:center;
}

.destinos h2{
margin-bottom:40px;
font-size:30px;
color:#333;
}

.cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.card{
background:white;
width:260px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
overflow:hidden;
}

.card img{
width:100%;
height:170px;
object-fit:cover;
}

.card h3{
margin:10px 0;
}

.card p{
font-size:14px;
color:#555;
padding:0 10px 15px;
}



/* VER MAIS DESTINOS */

.mais-destinos{
text-align:center;
margin:40px 0;
}

.botao-destinos{
background:#ff7a00;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.botao-destinos:hover{
background:#e56700;
}



/* SOBRE NOS */

.sobre{
background:#eeeeee;
text-align:center;
padding:60px 20px;
}

.titulo-linha{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
margin-bottom:20px;
}

.titulo-linha hr{
width:200px;
border:1px solid #cfcfcf;
}

.titulo-linha h2{
margin:0;
font-size:28px;
color:#2c3e50;
}

.sobre p{
max-width:600px;
margin:auto;
margin-bottom:25px;
font-size:16px;
color:#444;
}

.botao-leia{
background:#ff7a00;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.botao-leia:hover{
background:#e56700;
}



/* CONTATO */

.contato{
background:#cfe0ea;
padding:60px 40px;
}

.container-contato{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
}

.formulario{
display:flex;
flex-direction:column;
gap:15px;
width:350px;
}

.formulario input,
.formulario textarea{
padding:12px;
border-radius:6px;
border:none;
font-size:14px;
}

.formulario textarea{
height:120px;
resize:none;
}

.formulario button{
background:#1c6ea4;
color:white;
border:none;
padding:12px;
border-radius:6px;
font-weight:bold;
cursor:pointer;
}

.formulario button:hover{
background:#155d8d;
}

.localizacao{
width:350px;
}

.mapa{
width:100%;
border-radius:8px;
margin-bottom:15px;
}



/* RODAPE */

footer{
background:#1c6ea4;
color:white;
text-align:center;
padding:15px;
margin-top:40px;
}

.sobre-pagina{
padding:80px 40px;
text-align:center;
max-width:800px;
margin:auto;
}

.sobre-pagina h1{
margin-bottom:20px;
}

.sobre-pagina p{
margin-bottom:15px;
font-size:16px;
line-height:1.6;
}
