/* CSS */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background: #f5f7fa;
  margin: 0;
}

.glassmorph {
  background-color: rgba(0, 0, 0, 0.5);  /* negro con 50% de opacidad */
  backdrop-filter: blur(8px);           /* desenfoque del fondo */
  -webkit-backdrop-filter: blur(8px);   /* soporte para Safari */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* sombra sutil */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* línea tenue */
}

#prueba {
    font-family: 'Poppins', sans-serif; /* Fuente moderna */
    color: white;                        /* Letra blanca */
    background-color: #1a1a1a;           /* Fondo oscuro para contraste (opcional) */
    padding: 2rem;
	
  }

#prueba h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
	 -webkit-text-stroke: 1px black;
  }

  #prueba p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

#confianza {
  font-family: 'Poppins', sans-serif;
  color: #000000;
}

section {
  padding: 80px 0;
}
.hero-section {
  height: 100vh;
  background: url('img/bg-study.jpg') no-repeat center center / cover;
  position: relative;
}
.glassmorph {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
input:focus, select:focus, textarea:focus {
  border-color: #0047ab !important;
  box-shadow: 0 0 5px rgba(0, 71, 171, 0.5) !important;
}
.btn {
  transition: all 0.3s ease-in-out;
	color: white;
	border-color: white;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	color:white;
} /* COLOR BOTON REGISTRO */


.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
  section {
    padding: 60px 15px;
  }
}
form .form-control:invalid {
  border-color: #dc3545;
}
form .form-control:valid {
  border-color: #28a745;
}
.tooltip {
  font-size: 0.875rem;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 71, 171, 0.6);
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
.animate-hidden { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.animate-visible { opacity: 1; transform: translateY(0); }

.seccion-fondo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 50px ;
}
.fondo-solo {
  background-image: url("img/solo.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-wins {
  background-image: url("img/wins.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-pagos {
  background-image: url("img/pagos.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-meritia {
  background-image: url("img/meritia.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-trans {
  background-image: url("img/trans.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-estudio {
  background-image: url("img/estudio.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-trainer {
  background-image: url("img/trainer.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-ia {
  background-image: url("img/ia.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fondo-ganar {
  background-image: url("img/ganar.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.glassmorph {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.brand-name {
      font-weight: 700;
      font-size: 1.8rem;
      color: #003b91;
      margin-bottom: 0.25rem;
      letter-spacing: 0.5px;
}
.brand-name .highlight {
      color: #DAA520;
}
.brand-slogan {
      font-style: italic;
      font-size: 1rem;
      color: #444;
}
img {
      max-width: 100%;
      height: auto;
      display: block;
}
input.form-check-input[type="checkbox"] {
      transform: scale(0.85);
      margin-right: 6px;
      vertical-align: middle;
}
#prueba .container, #prueba .btn {
  position: relative;
  z-index: 1; /* mantiene el texto por encima */
}
