body {
  margin: 0;
  font-family: Raleway;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6vw;
  width: 100%;
}

.hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(45deg, #305BC9, #073485);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/assets/wavy-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8rem;
  z-index: 1;
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.3;
}

.hero h2 span {
  font-weight: 700;
  display: block;
  /* margin-top: 0.5rem; */
}

.hero .logo {
  max-width: 150px;
  /* margin-bottom: 2rem; */
}

.hero .btn-pdf {
  background: white;
  color: #073485;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  /* margin-top: 2rem; */
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero .btn-pdf:hover {
  background: #073485;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}


.social-img {
  max-width: 550px;
  width: 100%;
  border-radius: 20px;
}

.marquesina {
  background: white;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 5%;
}

.marquesina img {
  object-fit: contain;
  filter: grayscale();
}

.logo-a {
  height: 65px;
}

.logo-b {
  height: 40px;
}

.logo-c {
  height: 45px;
}

.logo-d {
  height: 55px;
}

.logo-e {
  height: 35px;
}


.info-section {
  background: white;
  height: 95vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* gap: 55px; */
  padding: 3rem 12vw;
  flex-wrap: wrap;
}

.info-section video {
  max-height: 65vh;
  border-radius: 15px;
}

.info-content {
  max-width: 600px;
}

.info-content h2 {
  font-size: 2.8rem;;
  font-weight: 500;
  margin-bottom: -1rem;
}

.info-content p {
  margin: 2rem 0;
  line-height: 1.75rem;
  color: #333;
}

.store-buttons img {
  height: 65px;
  margin-right: 1rem;
  cursor: pointer;
}

.video-section {
  background: linear-gradient(45deg, #305BC9, #073485);
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-wrapper {
  width: 100%;
  max-width: 1440px;
  height: 75vh;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.newsletter-wrapper {
  background: white;
  padding: 9rem 2rem;
  display: flex;
  justify-content: center;
}

.newsletter-box {
  position: relative;
  background: linear-gradient(45deg, #305BC9, #073485);
  padding: 90px;
  border-radius: 20px;
  color: white;
  max-width: 1440px;
  width: 100%;
  overflow: hidden; /* Para que no sobresalga el fondo */
}


.newsletter-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.newsletter-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

#newsletterForm {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-box input {
  padding: 0.9rem 1.5rem;
  flex: 1;
  min-width: 200px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-box button {
  background: #2f6bff;
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.newsletter-box button:hover {
  background: #1e50d5;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/wavy-bg.jpg') center/cover no-repeat;
  opacity: 0.2; /* controla la opacidad de la imagen */
  mix-blend-mode: multiply;
  z-index: 0;
}

.newsletter-box * {
  position: relative;
  z-index: 1;
}


footer {
  background: black;
  color: white;
  height: 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero .container, .info-section, .video-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero .logo {
    margin-bottom: 1rem;
  }

  .btn-pdf, .store-buttons img {
    margin-top: 1rem;
  }

  .newsletter-box input {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    padding: 3rem 4vw;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .social-img {
    max-width: 100%;
    height: auto;
  }

  .info-section {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 6vw;
    height: auto;
    text-align: center;
  }

  .info-section video {
    width: 100%;
    max-height: 50vh;
  }

  .info-content h2 {
    font-size: 2rem;
  }

  .store-buttons img {
    height: 50px;
    margin-top: 1rem;
  }

  .newsletter-wrapper {
    padding: 5rem 1rem;
  }

  .newsletter-box {
    padding: 3rem 2rem;
  }

  .newsletter-box h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .newsletter-box p {
    text-align: center;
    font-size: 0.95rem;
  }

  #newsletterForm {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
    margin: 0;
  }

  .newsletter-box button {
    margin-top: 1rem;
  }

  .video-section {
    padding: 2rem 1rem;
    height: auto;
  }

  .video-wrapper {
    height: 50vh;
  }

  .marquesina {
    height: auto;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .marquesina img {
    max-height: 40px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.7rem;
  }

  .info-content h2 {
    font-size: 1.7rem;
  }

  .store-buttons img {
    height: 45px;
  }

  .newsletter-box {
    padding: 2rem 1rem;
  }

  .newsletter-box h2 {
    font-size: 1.3rem;
  }

  .newsletter-box p {
    font-size: 0.9rem;
  }

  .video-wrapper {
    height: 45vh;
  }
}


@media (max-width: 768px) {
  .newsletter-wrapper {
    padding: 3rem 1rem;
  }

  .newsletter-box {
    padding: 2rem 1rem;
    text-align: center;
    height: auto;
  }

  .newsletter-box h2,
  .newsletter-box p {
    text-align: center;
  }

  #newsletterForm {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-box input {
    margin-bottom: 1rem;
  }
}

.marquesina {
  background: white;
  overflow: hidden;
  height: 10vh;
  position: relative;
}

.marquesina .marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
  align-items: center;
  gap: 5rem;
}

.marquesina img {
  height: 50px;
  object-fit: contain;
  filter: grayscale();
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}