/* Efecto hover y active para el botón Guardar y continuar */
.btn-info {
  background-color: var(--custom-orange);
  border: none;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s cubic-bezier(.4,1.5,.5,1), filter 0.18s;
}
.btn-info:hover, .btn-info:focus {
  background-color: var(--custom-orange-hover);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(243,156,18,0.35), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  transform: scale(1.06) translateY(-2px);
  filter: brightness(1.08) saturate(1.2);
}
.btn-info:active {
  background-color: #d35400;
  color: #fff;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.18);
  transform: scale(0.98) translateY(1px);
  filter: brightness(0.98);
}
:root {
  /* Paleta Web (Imagen 3) */
  --custom-blue-dark: #0d1b44;
  /* Azul marino de la barra superior */
  --custom-blue-royal: #0056b3;
  /* Azul rey de los laterales */

  /* Paleta Congreso (Imagen 1 y 2) */
  --custom-orange: #f39c12;
  /* Naranja de los botones y acentos */
  --custom-header-light: #5a54fd63;
  /* Celeste del banner principal */

  /* Neutrales */
  --custom-white: #ffffff;
  --custom-gray-bg: #f4f7f9;

  --custom-footer-color: #0d1b44;
  /* Amarillo del footer */

  --custom-link-color: #2c5494;
  /* Azul de los enlaces */
  --custom-link-hover: #1a4373;
  /* Azul más oscuro para hover */
  --custom-text-color: #333333;
  /* Color de texto general */

  --custom-orange-hover: #e67e22;
  /* Naranja más oscuro para hover */
  --custom-blue-dark: #0a1630;
  /* Azul marino más oscuro para hover */

  --custom-form-header-color: #3b68a6;
  /* encabezados de formulario */
  --custom-price-card-bg: #0a1630;
  /* Azul marino para tarjetas de precio */
}

.bg-custom-header {
  background-color: var(--custom-blue-dark);

}

/* --- HEADER STYLES --- */
.navbar-custom {
  padding: 1rem 2rem;
  background: var(--custom-blue-dark);
}

.nav-link-custom {
  color: var(--custom-white);
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1.1rem;
}

.title-banner {
  background-color: var(--custom-header-light);
  color: #1a4373;
  text-align: center;
  padding: 40px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tutorial-bar {
  background-color: #666;
  color: white;
  text-align: center;
  padding: 5px 0;
  border-radius: 20px;
  margin: -15px auto 20px auto;
  width: fit-content;
  padding: 5px 30px;
}

.bg-logo-header {
  background-color: var(--custom-blue-dark);
  color: white;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* --- FOOTER STYLES --- */
.custom-footer {
  background-color: var(--custom-footer-color);
  padding: 30px 0;
  text-align: center;
  color: white;
  margin-top: 50px;
  position: relative;
}

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.scroll-top {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #332b1a;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* MENU HAMBURGUESA RESPONSIVE MEJORADO */

/* SOPORTE FLOTANTE ICONO */
.support-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #d42389 60%, #f39c12 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(212, 35, 137, 0.18);
  z-index: 1200;
  border: 3px solid #fff;
  animation: pulse-support 1.5s infinite;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  outline: none;
}

.support-float:hover,
.support-float:focus {
  background: linear-gradient(135deg, #f39c12 60%, #d42389 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(212, 35, 137, 0.28);
  outline: none;
}

@keyframes pulse-support {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 35, 137, 0.25);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(212, 35, 137, 0.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 35, 137, 0.25);
  }
}

.support-float i {
  font-size: 2.2rem;
  margin: 0;
}

@media (max-width: 600px) {
  .support-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .support-float i {
    font-size: 1.5rem;
  }
}