.elementor-100 .elementor-element.elementor-element-008819d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-100 .elementor-element.elementor-element-4d5d2dc > .elementor-widget-container{margin:-10px -10px -10px -10px;border-radius:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-4d5d2dc *//* Evitar desplazamiento de la página */
html, body {
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Contenedor principal */
.responsive-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Alinea los elementos al inicio */
  height: 100vh;
  background: linear-gradient(to bottom right, #0f03fc, #04be1a);
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  padding-top: 30px; /* Espacio superior */
}

/* Título principal */
.main-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ícono del título */
.title-icon {
  width: 40px;
  height: auto;
  margin-right: 12px;
}

/* Secciones */
.section {
  background: white;
  padding: 12px;
  border-radius: 15px;
  width: 90%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover en secciones */
.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contenedor de ícono y título en secciones */
.icon-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Ícono en las secciones */
.icon {
  font-size: 30px;
  margin-right: 10px;
}

/* Título en las secciones */
.title {
  font-size: 18px;
  color: #333;
  margin: 0;
}

/* Botones */
.btn {
  background-color: #0866ff;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin: 10px 0;
}

/* Efecto hover en los botones */
.btn:hover {
  background-color: #0059d1;
  transform: scale(1.05);
}

/* Ajustes para pantallas más grandes */
@media (min-width: 768px) {
  .responsive-page {
    flex-direction: column;
    justify-content: flex-start; /* Mantener elementos en la parte superior */
    align-items: center;
  }

  .section {
    width: 60%;
    max-width: 400px;
    margin: 20px 0;
  }
}/* End custom CSS */