/* HERO*/

.hero {
  height: 100vh;
  background: url('../assest/img/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5); /* oscurece imagen */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.5s ease-out;
}

.cta-btn {
  background-color: #ffa500;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-size: 2rem;
}

.cta-btn:hover {
  background-color: #DF9000;
}

.rotacion-texto {
  font-size: 2.5rem;
  height: auto;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.rotacion-texto .text {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s ease;
}
/*.rotacion-texto .text.show {
  opacity: 1;
}
*/

.rotacion-texto .text.show{
  opacity:1;
  /*animation: fadeInUp .6s ease-out;*/
}

