body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #dcb6ab;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  /* overflow-y: auto; */
  padding: 2rem 1rem 120px;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/textura.jpg') no-repeat center center/cover;
  opacity: 0.30;
  z-index: 0;
}

body * {
  position: relative;
  z-index: 1;
}


.logo {
  width: 400px;
  max-width: 85%;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buttons {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
  width: 150%;
  max-width: 400px;
}

.btn {
  background-color: #f7ebeb;
  color: #3c3c3c;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 3rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin: 0px 20px;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.btn strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #919191;
}

.btn span {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
  color: #4b433c;
}

.footer-text {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #fdfdfd;
}

.foto {
  position: relative;
  bottom: 0;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 1;
  object-fit: contain;
}