* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #f8f8f8, #ffffff);
  color: #111;
}

.fondo-blanco {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  text-align: center;
}

.vip-bienvenida {
  max-width: 600px;
  position: relative;
}

/* Título y texto */
.vip-bienvenida h1 {
  font-size: 2.5rem;
  margin: 20px 0;
  color: #070707;
}

.vip-bienvenida p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Burbujas */
.vip-pasos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  transition: all 0.8s ease;
}

.vip-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vip-step.active {
  background-color: #0bacec;
}

/* Botón iniciar */
#start-btn {
  background-color: #4dd84d;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(77, 216, 77, 0.3);
}

#start-btn:hover {
  background-color: #3cbc3c;
  transform: scale(1.05);
}

/* Flechas */
.arrow-controls {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.arrow-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

/* X partida */
.arrow-btn::before,
.arrow-btn::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 4px;
  background-color: #423c3c;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Izquierda */
#prev-btn::before {
  top: 12px;
  left: 4px;
  transform: rotate(135deg);
}
#prev-btn::after {
  bottom: 12px;
  left: 4px;
  transform: rotate(225deg);
}

/* Derecha */
#next-btn::before {
  top: 12px;
  right: 4px;
  transform: rotate(45deg);
}
#next-btn::after {
  bottom: 12px;
  right: 4px;
  transform: rotate(-45deg);
}

/* Características */
.vip-caracteristicas {
  text-align: center;
  margin-top: 40px;
}

.vip-caracteristicas h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #070707;
}

.caracteristicas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}




.caracteristica {
  width: 120px;
  height: 120px;
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.caracteristica:hover {
  background-color: #f0f0f0;
  border-color: #4dd84d;
}

.caracteristica i {
  width: 32px;
  height: 32px;
  stroke: #423c3c;
  margin-bottom: 10px;
}

.caracteristica.active {
  background-color: #4dd84d;
  color: white;
  border-color: #4dd84d;
}

.caracteristica.active i {
  stroke: white;
}
.vip-formulario {
  text-align: center;
  margin-top: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.vip-formulario h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #070707;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}

.form-group input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 1rem;
  padding: 10px 0;
  color: #111;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-bottom-color: #0bacec;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 0.9rem;
  color: #999;
  pointer-events: none;
  transition: 0.2s ease all;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -14px;
  font-size: 0.75rem;
  color: #0bacec;
}
.caracteristicas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}

.caracteristica {
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  background-color: white;
}

.caracteristica:hover {
  transform: scale(1.05);
  border-color: #423c3c;
}

.caracteristica.active {
  border-color: #4dd84d;
  box-shadow: 0 0 10px rgba(77, 216, 77, 0.4);
}

.caracteristica i {
  display: block;
  margin-bottom: 10px;
  stroke: #423c3c;
  width: 32px;
  height: 32px;
}

.vip-man {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 200px;        /* Aumenta el tamaño */
  max-width: 25vw;     /* Escala bien en pantallas grandes */
  z-index: 999;
  transition: transform 0.3s ease;
}

.vip-man:hover {
  transform: scale(1.08); /* Efecto de aumento al pasar el mouse */
}
.btn-finalizar {
  padding: 14px 28px;
  background: linear-gradient(to right, #003366, #007bff);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-finalizar:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.4);
}

.btn-finalizar:active {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}
