
/* ===================== */
/* FUENTES PERSONALIZADAS */
/* ===================== */

@font-face {
  font-family: 'Alrono';
  src: url('../fonts/alrono.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Bebas';
  src: url('../fonts/BEBAS_.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'BebasNeue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Questrial';
  src: url('../fonts/Questrial-Regular.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Questrial';
  src: url('../fonts/Questrial-Regular.ttf') format('truetype');
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  overflow-x: hidden;
}

/* SOLO para páginas sin scroll (home) */
body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

/* BOTÓN WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
 left: 0;
right: 0;
margin: 0 auto;
width: fit-content;

  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(0,0,0,0.85);
  color: white;

  padding: 12px 18px;
  border-radius: 30px;

  font-size: 14px;
  text-decoration: none;

  z-index: 9999;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 5px 20px rgba(0,0,0,0.3);

  transition: all 0.3s ease;
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;
}

.whatsapp-btn:hover {
  transform: translateX(-50%) scale(1.05);
}


.whatsapp-btn {
  animation: fadeUp 0.6s ease;
  z-index: 2000;
  bottom: 15px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}



@media (max-width: 768px) {
  .whatsapp-btn {
    width: 90%;
    justify-content: center;
    font-size: 13px;
  }

 
}