/* JAC Tours - Tema Global */

/* Cambiar color de títulos de crema a azul oscuro */
h1, h2, h3, h4, h5, h6 {
  color: #003366 !important;
}

/* Elementos con clases comunes de títulos */
[class*="title"],
[class*="heading"],
[data-framer-name*="Title"],
[data-framer-name*="Heading"],
.framer-heading,
.jac-title {
  color: #003366 !important;
}

/* Asegurar que los títulos en secciones principales cambien */
[style*="color"] {
  /* No sobrescribir todo, solo revisar manualmente */
}

/* Estilos para el header sticky */
header, [role="banner"], [class*="header"] {
  backdrop-filter: blur(10px) !important;
  background-color: #b9dff5 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mejorar legibilidad en el header */
header h1, header h2, header h3, header a, header p {
  color: #333 !important;
  text-shadow: none !important;
}

/* Botón de WhatsApp flotante */
.jac-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-size: 28px;
  font-weight: bold;
}

.jac-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20ba5e;
}

.jac-whatsapp-btn:active {
  transform: scale(0.95);
}

/* Tooltip para WhatsApp */
.jac-whatsapp-btn::after {
  content: "WhatsApp";
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.jac-whatsapp-btn:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Footer - Secciones de políticas y términos */
footer {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 60px;
}

footer h3 {
  color: #003366 !important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

footer p, footer a {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

footer a {
  color: #003366;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #25d366;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section-title {
  font-weight: 700;
  color: #003366 !important;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-section-content {
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

/* Links en políticas */
.terms-link, .policy-link {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
}

.terms-link:hover, .policy-link:hover {
  color: #25d366;
  text-decoration: underline;
}
