/* Contenedor principal */
.radio-atom-container {
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  
  /* Input nativo: invisible, pero clickeable */
  .radio-atom-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 2;
  }
  
  /* Radio visual (reemplazo custom) */
  .radio-atom-container .radio-custom {
    width: 18px;
    height: 18px;
    border: 1px solid  var(--orange-infolaft);
    border-radius: 50%;
    background-color: var(--white); /* Fondo blanco */
    transition: border-color 0.3s ease;
    position: relative;
  }
  
  /* Estado “checked” */
  .radio-atom-container input[type="radio"]:checked + .radio-custom {
    border-color: var(--orange-infolaft); /* Naranja Infolaft */
  }
  
  /* Punto interno al estar seleccionado */
  .radio-atom-container input[type="radio"]:checked + .radio-custom::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--orange-infolaft); /* Naranja Infolaft */
  }
  
  /* Hover */
  .radio-atom-container:hover .radio-custom {
    border-color: var(--orange-infolaft); /* Naranja Infolaft */
  }
  
  /* Deshabilitado */
  .radio-atom-container input[type="radio"]:disabled + .radio-custom {
    border-color: var(--gray-4); 
    background-color: var(--white); 
    cursor: not-allowed;
  }  

