/* Estilos personalizados para el main de la plataforma */
.main-img-fade {
  position: absolute;
  top: 0;
  right: 0;
  height: 80%;
  max-width: 80vw;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.main-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 60vw;
  object-fit: cover;
  z-index: 1;
  width: 100%;
  display: block;

  /* Máscara que desvanece de izquierda a derecha y de abajo hacia arriba, mucho más amplia */
  mask-image: radial-gradient(farthest-corner at 100% 0%, #fff 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(farthest-corner at 100% 0%, #fff 1%, transparent 70%);
}


.main-img-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  /* Gradiente blanco a la izquierda e inferior */
  background: 
    linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 90%),
    linear-gradient(to bottom, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);
  width: 100%;
  height: 100%;
}

.registro-btn-responsive {
  display: block;
  margin: 0 auto 1.2rem auto;
  padding: 0.75rem 1.5rem;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}
.registro-btn-responsive:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.6);
  background-color: #000; /* o un color secundario si querés destacar más */
}

.copy {
  position: absolute;
  bottom: -0px;
  font-size:0.82rem;
}

@media (max-width: 767.98px) {
  .copy {
    position: absolute;
    bottom: -0px;
    font-size:0.62rem;
  }
  .main-img-fade {
    position: absolute;
    top: 0;
    right: 0;
    height: 38vw;
    max-width: 100vw;
    min-height: 120px;
    width: 100vw;
    z-index: 0;
    opacity: 0.95;
    background: rgba(255,255,255,0.7); /* Fallback para legibilidad */
  }
  .main-bg-img {
    height: 100%;
    max-width: 100vw;
    min-height: 120px;
    width: 100vw;
    object-fit: cover;
    opacity: 0.95;
    /* Refuerzo de máscara para mobile */
    mask-image: radial-gradient(farthest-corner at 100% 0%, #fff 10%, transparent 100%);
    -webkit-mask-image: radial-gradient(farthest-corner at 100% 0%, #fff 1%, transparent 70%);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background: rgba(255,255,255,0.7); /* Fallback para legibilidad */
  }
  .main-img-gradient {
    width: 100vw;
    height: 100%;
  }
  .main-section-title {
    font-size: 1.3rem !important;
  }
  .fw-bold {
    font-size: 1.3rem !important;
  }
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .registro-btn-responsive {
    font-size: 0.98rem !important;
    padding: 0.5rem 1.2rem !important;
    max-width: 160px !important;
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .d-flex.d-md-none.flex-row img {
    margin-right: 0.5rem;
  }
  .d-flex.d-md-none.flex-row img:last-child {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

.logo-svg-pc, .logo-svg-mobile {
  padding-bottom: 6px;
}

.logo-svg-pc {
  height: 110px !important;
  max-width: 100%;
}
.logo-svg-mobile {
  height: 64px !important;
  max-width: 100%;
} 