*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f4f4f4;
color:#333;
text-align:center;
}

.hero{
background:#000;
color:#fff;
padding:80px 20px;
}

.hero.small{
padding:40px 20px;
}

.logo{
width:180px;
margin-bottom:20px;
}

.btn{
display:inline-block;
margin:10px;
padding:12px 25px;
background:#25D366;
color:#fff;
text-decoration:none;
border-radius:5px;
}

.btn-sec{
background:#555;
}

.form-section{
padding:50px 20px;
background:#fff;
}

form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input, button{
padding:12px;
border-radius:5px;
border:1px solid #ccc;
}

button{
background:#25D366;
color:white;
border:none;
cursor:pointer;
}

.lgpd{
font-size:14px;
text-align:left;
}

.galeria{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:40px;
}

.galeria img{
width:100%;
border-radius:10px;
}

footer{
background:#000;
color:white;
padding:20px;
margin-top:40px;
}

.cookie{
position:fixed;
bottom:0;
width:100%;
background:#111;
color:#fff;
padding:15px;
display:none;
}
.carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carrossel img {
  width: 300px;
  border-radius: 10px;
}

.carrossel button {
  font-size: 24px;
  cursor: pointer;
}
.carrossel-container {
  position: relative;
  max-width: 350px;
  margin: auto;
}

.carrossel img {
  width: 100%;
  display: none;
  border-radius: 12px;
}

.carrossel img.ativo {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: -10px; }
.next { right: -10px; }

.indicadores {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}

.dot.ativo {
  background: #000;
}