/* Start custom CSS for html, class: .elementor-element-6db9c58 */.encuentro-full {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 15px 50px;
  font-family: Arial, Helvetica, sans-serif;
}

/* IMAGEN */
.encuentro-full__hero {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  margin-bottom: 26px;
}

.encuentro-full__hero img {
  width: 100%;
  height: auto; /* 🔥 clave: no se corta nunca */
  display: block;
}

/* TEXTO */
.encuentro-full__info {
  text-align: center;
  margin-bottom: 28px;
}

.encuentro-full__info h2 {
  font-size: 32px;
  margin-bottom: 14px;
  font-weight: 800;
}

.encuentro-full__sub {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
}

.encuentro-full__fecha {
  font-size: 16px;
  font-weight: 700;
  color: #8c1d2c;
}

/* FORM PC */
.form-desktop {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  height: 1700px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.form-desktop iframe {
  width: 100%;
  height: 1900px;
  border: 0;
  margin-top: -220px;
}

/* BOTON MOBILE */
.form-mobile {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.btn-mobile {
  display: inline-block;
  padding: 16px 28px;
  background: #8c1d2c;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 767px) {

  /* TEXTO */
  .encuentro-full__info h2 {
    font-size: 22px;
  }

  .encuentro-full__sub {
    font-size: 15px;
  }

  .encuentro-full__fecha {
    font-size: 14px;
  }

  /* FORM */
  .form-desktop {
    display: none; /* 🔥 oculta iframe (evita error Google) */
  }

  .form-mobile {
    display: block; /* 🔥 muestra botón */
  }
}/* End custom CSS */