/* ============================================
   ESTILOS GLOBALES – style.css
   ============================================ */

/* Resets y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f9f9f9;
  color: #1a1c1c;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Clase utilitaria para iconos Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Efecto glass */
.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Animación de revelado al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover con borde dorado y sombra */
.hover-gold:hover {
  border-color: #735c00;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.04);
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
/* Ocultar botones flotantes cuando el menú móvil está abierto */
body.menu-open .fixed.bottom-8.right-4,
body.menu-open .fixed.bottom-8.left-8 {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/*Marca de agua */

#watermark{
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: -1;

    pointer-events: none;
    user-select: none;

    overflow: hidden;
}

#watermark img{

    width: 45vw;
    max-width: 700px;
    min-width: 350px;

    opacity: .03;

    filter: grayscale(100%) brightness(1.2);

    transform: rotate(-15deg);

    transition: .4s;
}