@font-face {
  font-family: 'AMX Regular';
  src: url('./fonts/AMX-Regular.ttf') format('truetype');
}


@font-face {
  font-family: 'AMX-Bold';
  src: url('./fonts/AMX-Bold.ttf') format('truetype');
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  background: url('./img/tu-imagen.png') no-repeat center center fixed;
  background-size: cover;
  min-height: 100dvh;
  height: 100%;
  font-family: 'AMX Regular';
  font-size: 18px;

}

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

.form-card {
  background-color: white;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 500px;        /* 👈 Más ancho */
  min-height: 620px;   /* 👈 Más alto */
  text-align: center;
  position: absolute;  /* 👈 Mover hacia la derecha */
  left: 10%;            /* 👈 Separación del borde derecho */
  top: 50%;
  transform: translateY(-50%);
}


.logo {
  
  width: 250px;
  height: auto;
  margin-bottom: 15px;
  display: inline-block;
}

.subtitle {
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.mi {
  color: #333;
}

.claro {
  color: #e30613;
  font-weight: bold;
}

.icon {
  color: #e30613;
  margin-left: 5px;
}

.subtitle {
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}




.btn {
	
  font-family: 'AMX Regular';
  width: 70%;
  padding: 12px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background 0.3s;
  border: none;
  text-align: center; 
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, background 0.3s;
}


.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.primary {
  background-color: #e30613;
  color: white;
}

.secondary {
  background-color: #e30613;
  color: white;
}

.outline {
  background-color: white;
  border: 2px solid #e30613;
  color: #e30613;
}

.forgot {
  display: block;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #999; /* 👈 Gris más visible */
  text-decoration: none;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.reclamos-text {
  font-size: 18px;
  color: #333; /* o el color que prefieras */
  margin-bottom: 10px;
}

.reclamos-lista {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  width: 100%;
  max-width: 400px;
  margin-left: 20%;
}


.reclamo-opcion {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  color: #222;
  line-height: 1.3;
  width: 70%;
  text-align: left;
  margin-bottom: 20px;
  text-decoration: none; 
  gap: 8px;
  
}


.reclamo-opcion a {
  color: #222; /* igual que el texto */
  text-decoration: none; /* sin subrayado */
  font-size: 18px;
  line-height: 1.3;
  flex: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.reclamo-opcion a:hover {
  transform: scale(1.05);
}

.reclamo-opcion span:last-child {
  display: inline-block;
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-wrap: break-word;


}

.reclamo-link {
  text-decoration: none;
  color: inherit;
}

.point {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 8px;
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
  .container {
    background-position: center top;
    background-attachment: scroll;
    background-size: cover;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .form-card {
    width: 90%;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding: 30px 20px;
  }

  .reclamos-lista {
    position: static;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .reclamos-lista {
    margin-left: 15%;
    margin-right: 5%;
  }
}

.iframe-container {
  width: 100%;
  height: 500px;
  margin-top: 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

#contenedor-botones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* espacio entre botones */
  margin-bottom: 20px;
}

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
	font-family: 'AMX-Bold';
  background: white;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  max-width: 400px;
  text-align: center;
  
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

.hidden {
  display: none;
}

/* Opcional: Evita scroll en body si el popup está activo */
body.popup-active {
  overflow: hidden;
}

.popup-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.popup-icon {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 10px;
}

/* Animación de entrada del pop-up */
@keyframes popupFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-content {
  animation: popupFadeIn 0.5s ease-out;
}


#main-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}


.blur {
  filter: blur(3px);
  transition: filter 0.3s ease;
}