
/*estilos para boton "Quiero Asociarme" del menu*/
.btn-asociate {
  background-color: #004a99;
  color: #fff !important;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border: 1px solid #0066cc;
}

.btn-asociate:hover {
  background-color: #0066cc;
  text-decoration: none;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* inicia asociate.html */
.container-fluid {
  padding: 0 !important;
  margin: 0 !important;
}

.row {
  display: flex;
  align-items: stretch; 
  margin: 0 !important;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.left-panel, .right-panel {
  display: flex;
  flex-direction: column;
}

.left-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.right-panel {
  background: linear-gradient(to bottom, #1a75bc, #004a99);
  color: #fff;
  min-height: 100vh; 
  display: flex;
  align-items: center; 
  justify-content: center;  
  padding: 40px;

}

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
}
.form-control:focus {
  background: transparent;
  color: #fff;
  border-bottom: 2px solid #66ccff;
  box-shadow: none;
}

.btn-submit {
  background-color: #fff;
  color: #004a99;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
}
.btn-submit:hover {
  background-color: #66ccff;
  color: #fff;
}

.form-oracion {
  width: 100%;
  max-width: 500px;
}

.form-oracion h1 {
  margin-bottom: 32px;
  font-size: 28px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  margin-bottom: 40px;
}

.form-oracion p {
  font-size: 18px;
  color: #fff;
}

.input-line {
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  padding: 3px 5px;
  font-size: 16px;
  margin: 0 5px;
  color: #fff;
  display: inline-block;
}

.input-line:focus {
  outline: none;
  border-bottom: 2px solid #fff;
}

.input-line option {
  color: #000;
}

.input-line.small {
  width: 50px;
}
.input-line.tiny {
  width: 40px;
  text-align: center;
}
.input-line.medium {
  width: 120px;
}

.btn-cotizar {
  margin-top: 20px;
  background: #fff;
  color: #004a99;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
.btn-cotizar:hover {
  background: #ddd;
  color: #004a99;
}

.captcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.error-msg {
  display: none;   
  color: #d9534f;
  font-size: 14px;
  margin-top: 5px;
  margin-left: 0px;
}

.icono-error {
  margin-right: 4px;
}

#dni {
  width: 100px;
}

#email {
  width: 300px; 
}

.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*evita fondo blanco en autocompletado */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #004a99 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.datos{
  margin-top: 20px;
  margin-left: 50px;
  margin-right: 50px;
}

.datos p{
  font-size: 10px;
}

#navigationWts {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; 
}

#navigationWts .titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

#navigationWts .titulo:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

#alerta-estado {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  min-height: 40px; 
}

.mi-alerta-custom {
  margin: 0 auto; 
}

.custom-alert {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
  font-size: 15px;
  padding: 10px 15px;
  border-radius: 8px;
}

.custom-alert.show {
  opacity: 1;
  transform: translateY(0);
}

/* celulares*/
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .left-panel, 
  .right-panel {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .left-panel img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .right-panel {
    min-height: auto;
    padding: 20px;
    justify-content: flex-start;
  }

  /* inputs mas chicos */
  .input-line {
    display: inline-block;
    width: auto !important; 
    min-width: 60px;
    margin: 0 4px;
    font-size: 14px;
    padding: 2px 4px;
  }

  /* ajustes */
  .input-line.small { width: 60px; }
  .input-line.tiny { width: 40px; text-align: center; }
  .input-line.medium { width: 120px; }
  #email { width: 180px; }

  .form-oracion h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .form-oracion p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* boton */
  .btn-cotizar {
    font-size: 14px;
    padding: 8px 12px;
    margin-top: 15px;
  }
}

/* ajustes para celulares */
@media (max-width: 576px) {
  .form-oracion {
    max-width: 100%;
    padding: 15px;
  }

  .form-oracion h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-oracion p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .input-line {
    font-size: 14px;
    padding: 2px 4px;
    margin: 3px 0;
    display: inline-block;
    width: auto !important;
  }

  .input-line.small { width: 50px; }    /* edad */
  .input-line.tiny { 
    text-align: center;
  }
  .input-line.medium { width: 110px; }  /* teléfono */
  #dni { width: 120px; }
  #email { width: 160px; }

  /* boton centrado */
  .btn-cotizar {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 15px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/*tamaño del codigo de area */
#tel1 {
  width: 35px !important;
  max-width: 35px !important;
  text-align: center;
  display: inline-block;
}
/* termina asociate.html */
