/* === Estilos Personalizados Optimización Visual === */

/* Tipografía y jerarquía */

h1, h2, h3 {

  font-weight: 700;

  color: #1a1a1a;

}

/* Fondo para secciones */

/* Botones */

.btn {

  transition: all 0.3s ease-in-out;

}

.btn:hover {

  transform: scale(1.03);

}

.btn-primary {

  background-color: #004085;

  border-color: #004085;

}

.btn-primary:hover {

  background-color: #003368;

  border-color: #002952;

}



/* Fondo blanco explícito para footer */

.footer-blanco {
  background-color: #ffffff !important;
}

.bg-white-section {
  background-color: #ffffff !important;
}


/* === Menú flotante accesible === */
#contactMenu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#contactToggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  border: none;
  font-size: 26px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}
#contactToggle:hover {
  transform: scale(1.1) rotate(10deg);
}
#contactOptions {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#contactOptions.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #444;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.contact-btn:hover {
  transform: translateX(-4px);
  opacity: 0.95;
}
.contact-whatsapp { background-color: #25D366; }
.contact-email { background-color: #0072c6; }
.contact-demo { background-color: #6c757d; }

/* Utilidad accesibilidad */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Ajustes para conservar máscaras sin recortar imagen */

.custom-mask-img-2,
.custom-mask-img-3 {
  position: relative;
  border-radius: 20px;
  overflow: visible !important; /* evita el recorte */
  clip-path: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* mejora visual */
  z-index: 1;
}

.custom-mask-img-3 {
  margin-top: 1.5rem;
  transform: translateX(20px);
}
