/* Primera fuente */
@font-face {
  font-family: 'Fuente1';
  src: url('../font/NeueMachina-Light.woff2') format('opentype'),
  url('../font//NeueMachina-Regular.otf') format('opentype'),
  url('../font/NeueMachina-Ultrabold.otf') format('opentype');
}

/* Segunda fuente */
@font-face {
  font-family: 'Fuente2';
  src: url('../font/PPTelegraf-Regular.otf') format('opentype'),
  url('../font/PPTelegraf-UltraBold.otf') format('opentype'),
  url('../font/PPTelegraf-UltraLight.otf') format('opentype');
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #dbdbdb;
  margin: 0;
  padding: 0;
}

.body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: transparent;
  display: flex;
  justify-content: flex-end; /* Cambiado de flex-end a space-between */
  align-items: center;
  height: 55px;
  padding: 3px 5%;
  margin: 0px;
  border-radius: 25px 25px 0 0;
  width: 100%;
}

.header .logo {
  cursor: pointer;
  margin-right: auto;
}

.header .logo a {
  text-decoration: none;
  font-size: 30px;
  color: #000;
  transition: all 0.3s;
  font-family: 'Fuente1', sans-serif;
  font-weight: 900;
}

.header .logo a:hover {
  cursor: pointer;
}

.header .navLinks {
  list-style: none;
}

.header .navLinks li {
  display: inline-block;
  padding: 0 28px;
}

.header .navLinks li:hover {
  /* transform: scale(1.3); */
  transition: 0.1s;
}

.header .navLinks a {
  font-size: 700;
  color: #000;
  text-decoration: none;
  font-family: 'Fuente2', sans-serif;
  letter-spacing: 1px;
  transition: 0.1s;
}

.header .navLinks li a:hover {
  letter-spacing: 2px;
  font-weight: bold;
}

.button {
  display: block;
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.button:before,
.button:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
}

.button:before {
  border: 4px solid #000;
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button:after {
  border: 4px solid #3b3b3b;
  transform: scale(1.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.button:hover:before,
.button:focus:before {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button:hover:after,
.button:focus:after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-box {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.button-elem {
  display: block;
  width: 20px;
  height: 20px;
  margin: 17px 18px 0 18px;
  transform: rotate(180deg);
  fill: #000;
}

.button:hover .button-box,
.button:focus .button-box {
  transition: 0.4s;
  transform: translateX(-56px);
}


/* MAIN*/
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 530px; /* Ajusta según sea necesario para ocupar el 100% de la altura de la ventana */
  text-align: center;
}

h2 {
  margin-top: 130px; /* Ajusta según sea necesario para separar el h2 de los elementos siguientes */
  margin-bottom: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Centra horizontalmente el h2 */
  font-family: 'Fuente1', sans-serif;
}


.contReg {
  display: inline-block;
  text-align: center;
  margin-top: 40px;
}

.opcionReg {
  display: inline-block; /* Hace que cada opción esté en una línea separada */
  margin: 0 10px; /* Ajusta según sea necesario */
  border-radius: 200px;
  padding: 20px;
  width: 200px;
  transition: 0.3s;
}

.txt {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.opcionReg:hover{
  background-color: rgba(0, 0, 0, 0.1);
}

.opcionReg label {
  display: flex;
  flex-direction: column; /* Organiza los elementos en una columna */
  align-items: center; /* Centra los elementos horizontalmente */
  font-family: 'Fuente2' ,sans-serif;
}

.opcionReg img {
  margin-bottom: 5px; /* Ajusta según sea necesario */
}

.btnSel{
  margin-top: 50px;
  position: relative;
}

.btnSeleccion {
  height: 40px;
  width: 140px;
  /* margin-top: 20px; */
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #000;
  overflow: hidden;
  border-radius: 30px;
  color: #000;
  font-size: 12px;
  font-weight: 300;  /* Puedes ajustar el peso de la fuente según tus preferencias */
  /* letter-spacing: 4px;  Puedes ajustar el espaciado entre caracteres según tus preferencias */
  text-transform: uppercase; /* Puedes ajustar la transformación de texto según tus preferencias */
  transition: all 0.1s ease-in-out;
}

.btnSeleccion:hover{
  background-color: #000;
  color: #dbdbdb;
  font-weight: bold;
}





