@import url('https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&family=Cinzel:wght@400..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Almendra', serif;
    background-color: #e8e8f8;
    color: #333;
}


header{
    color: #F8F8FF;
    text-align: center;
}

main{
min-height: 80vh;   
}

footer{
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: center;
    gap:30rem;
}
.buttonlogin{
    background-color: #74412B;
    color: white;
    padding: 0.5rem;
    border-radius: 8rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.buttonlogin:hover {
  background-color: #e8e8f8;
  color: #74412B;
}

.buttonmenu{
    background-color: #4F2C1D;
    color: white;
    padding: 0.5rem;
    border-radius: 8rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.buttonmenu:hover {
  background-color: #e8e8f8;
  color: #74412B;
}

.bg-marrom{
    background-color: #74412B;
}

.bg-marromm{
    background-color: #4F2C1D;
}

.bg-brancoo{
    background-color: #FFFFFF;
}
.menuu{
    display: flex;
    gap: 5rem;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 350px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.ativo {
  display: block;
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 32px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.esquerda {
  left: 15px;
}

.direita {
  right: 15px;
}

.seta:hover {
  background: rgba(0, 0, 0, 0.7);
}

.bolinhas {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.bolinha {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.bolinha.ativa {
  background: #ff6500;
}