
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.1);
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 6, 15, 0.7);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 64px 24px;
  animation: fadeUp 1s ease;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow-strong);
  border: 2px solid rgba(36, 210, 254, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: transform var(--transition-slow);
}

.hero-image:hover {
  transform: scale(1.05);
}

.hero-text-wrapper {
  text-align: left;
}

.hero__title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(36, 210, 254, 0.6);
  animation: fadeInUp 1s ease 0.2s both;
  text-align: left;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s both;
  text-align: left;
}

.hero__bonus {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: rgba(225, 71, 140, 0.1);
  border: 1px solid rgba(225, 71, 140, 0.3);
  border-radius: var(--radius-small);
  display: inline-block;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 0 10px rgba(225, 71, 140, 0.4);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.hero__cta {
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-google-play {
  animation: fadeInUp 1s ease 0.7s both;
}


.section {
  padding: 80px 0;
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center !important;
  margin-bottom: 16px;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(36, 210, 254, 0.4);
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 48px;
}


.funciona__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.funciona__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(36, 210, 254, 0.2);
  box-shadow: var(--glow);
  transition: all var(--transition-slow);
}

.funciona__image:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-strong);
  border-color: var(--accent);
}

.funciona__image img {
  width: 100%;
  height: auto;
  display: block;
}


.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  margin-bottom: 16px;
  border: 1px solid rgba(36, 210, 254, 0.2);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--transition);
}

.accordion__item:hover {
  border-color: rgba(36, 210, 254, 0.4);
  box-shadow: var(--glow);
}

.accordion__header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
  font-family: inherit;
}

.accordion__header:hover {
  color: var(--accent);
}

.accordion__icon {
  font-size: 24px;
  transition: transform var(--transition);
  color: var(--accent);
}

.accordion__item.active .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 24px;
}

.accordion__item.active .accordion__content {
  max-height: 500px;
  padding: 0 24px 20px;
}

.accordion__content p {
  color: var(--text-muted);
  line-height: 1.8;
}


.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.beneficios__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(36, 210, 254, 0.2);
  transition: all var(--transition-slow);
}

.beneficios__image:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-strong);
  border-color: var(--accent);
}

.beneficios__image img {
  width: 100%;
  height: auto;
  display: block;
}

.beneficios__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.beneficios__card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(36, 210, 254, 0.2);
  border-radius: var(--radius);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
}

.beneficios__card.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.beneficios__card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.beneficios__card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--accent);
}

.beneficios__card p {
  color: var(--text-muted);
  line-height: 1.6;
}


.slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider__slide {
  min-width: 100%;
  padding: 0 12px;
}

.opinion-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(36, 210, 254, 0.2);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--glow);
}

.opinion-card__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
  font-style: italic;
}

.opinion-card__author {
  color: var(--accent);
  font-weight: 600;
}

.slider__controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(36, 210, 254, 0.4);
  background: var(--bg-card);
  color: var(--accent);
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__btn:hover {
  background: rgba(36, 210, 254, 0.1);
  border-color: var(--accent);
  box-shadow: var(--glow);
  transform: scale(1.1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.juego-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(36, 210, 254, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.juego-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(36, 210, 254, 0.1);
  border-radius: var(--radius-small);
}

.juego-score {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.juego-bonus {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-2);
  text-align: center;
  padding: 12px;
  background: rgba(225, 71, 140, 0.1);
  border: 1px solid rgba(225, 71, 140, 0.3);
  border-radius: var(--radius-small);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.juego-area {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, #4A90E2 0%, #357ABD 50%, #2E5C8A 100%);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(36, 210, 254, 0.3);
}

.juego-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(74, 144, 226, 0.3) 100%);
  pointer-events: none;
}

.fish {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  cursor: pointer;
  transition: transform 0.1s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: swim 2s ease-in-out infinite;
}

.fish:hover {
  transform: scale(1.2);
}

.fish::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

@keyframes swim {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(10px) rotate(5deg);
  }
  75% {
    transform: translateX(-10px) rotate(-5deg);
  }
}

.splash {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: splash 0.5s ease-out;
  pointer-events: none;
}

@keyframes splash {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.juego-controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

#claimBonus {
  background: var(--accent-2);
  border-color: var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}

#claimBonus:hover {
  background: rgba(225, 71, 140, 0.9);
  box-shadow: 0 0 20px rgba(225, 71, 140, 0.6);
}

.juego-instructions {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-text-wrapper {
    text-align: center;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta,
  .hero-google-play {
    width: 100%;
    justify-content: center;
  }

  .hero__title,
  .hero__subtitle {
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .funciona__grid,
  .beneficios__grid {
    grid-template-columns: 1fr;
  }

  .beneficios__cards {
    grid-template-columns: 1fr;
  }

  .slider__btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .juego-area {
    height: 300px;
  }

  .juego-info {
    flex-direction: column;
    gap: 12px;
  }

  .juego-controls {
    flex-direction: column;
  }

  .juego-controls .btn {
    width: 100%;
  }
}


