:root {
    --color-principal: #579CF8;
    --color-wa: #25d366;
    --color-icon: #d1cece;
    --color-text: #626262;
    --color-first_bttn: #579CF8;
    --color-text_bttn: #5D3B09;
    --color-fondo: #E4FBFF;
    --blue: #5AA2FF;      /* fondo */
    --pink: #E878D6;      /* línea vertical */
    --purple: #B379E0;    /* primer círculo */
    --text: #0F172A;
  }
.ubicacion_form{
    display: flex;
    flex-direction: column;
    background-color: var(--color-icon);
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
  }
  .ubicacion_form h2{
    color: var(--color-first_bttn);
    font-weight: 350;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-first_bttn);
  }
  .redes{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
  }
  
  .icono_red {
    width: 35x;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    background-color: var(--color-first_bttn); /* Asegúrate de definir esta variable */
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    margin-top: 5px;
  }
  
  .icono_red img {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .form-container {
    background-color: #ffffff;
    min-width: 95%;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 10px;
  }
  .form-container h1 {
    color: var(--color-first_bttn);
    margin-bottom: 5px;
    text-align: center;
  }
  .form-container p {
    font-size: 13px;
    color: #333;
    margin-bottom: 15px;
  }
  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  .form-container button {
    background-color: var(--color-first_bttn);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  .form-container button:hover {
    background-color: var(--color-first_bttn);
  }

  .custom-select {
    position: relative;
    width: 100%;
    font-family: Arial;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  /* Campo cerrado */
  .select-selected {
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px 40px 10px 12px;
    border-radius: 4px;
    font-weight: bold;
    color: var(--color-first_bttn);
    cursor: pointer;
    position: relative;
    width: 100%;
  }
  
  /* Triangulito azul */
  .custom-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-first_bttn);
    pointer-events: none;
  }
  
  /* Opciones desplegables */
  .select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #0048AD;
    background-color: white;
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .select-items div {
    padding: 10px;
    cursor: pointer;
    color: #333;
  }
  
  .select-items div:hover {
    background-color: #f2f2f2;
  }
  
  .select-hide {
    display: none;
  }
  
  #successOverlay {

    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    }
  
  .thanks{
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 25px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
  }
  
  .thanks_content{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 100%;
      padding: 20px;
  }
  
  .thanks_content img{
      max-width: 200px;
  }
  .thanks_content button{
      background-color: #003087;
      color: white;
      border: none;
      padding: 10px;
      width: 80%;
      font-size: 15px;
      border-radius: 5px;
      cursor: pointer;
  
  }
  
  .thanks_content h1{ 
      color: var(--color-footer);
  }
  
  .thanks_content p{ 
    color: var(--color-principal);
  }
  
  #successOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }

.thanks{
    display: flex;
    background: var(--color-first_bttn);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin: 10%;
    margin-top: 100px;
    padding: 25px;
    background-color: white;
}

.thanks_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    padding: 20px;
}

.thanks_content img{
    max-width: 200px;
}
.thanks_content button{
    background-color: var(--color-first_bttn);
    color: white;
    border: none;
    padding: 10px;
    width: 80%;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;

}

.thanks_content h1{
    color: var(--color-first_bttn);

}
