html {
  scroll-behavior: smooth;
}

.topo-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.topo-logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.topo-logo img {
  width: 200px;
}

.topo-texto {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.topo-texto h1 {
  color: #fff;
  font-family: 'Italiana', sans-serif;
  font-size: 100px;
  font-weight: 300;
}

.topo-texto .topo-subtitulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  margin-top: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.chevron {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 1.5s infinite;
}

.chevron svg {
  width: 48px;
  height: 26px;
}

.topo-section .waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: -2px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(10px) translateX(-50%); }
}