/* Stylesheets */
@import url('./css-tes.css');
@import url('./tablet.css') screen and (min-width: 768px);
@import url('./desktop.css') screen and (min-width: 1024px);



@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@300&family=Rubik:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jomolhari&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Moderustic:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Moderustic:wght@300..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
:root {
    --color-primary: #1D1D1B;
    --color-secundary: #212121;
    --color-terciary: #111111;
    --color-light: #f4f4f4;
    --color-grey: #4D4D4D;
    --font-family-roboto: "Roboto", sans-serif;
    --font-family-jomlhari: "Jomolhari", serif;
    --font-family-playfair: "Playfair Display", serif;
    --light: #ffffff;
    --dark: #000;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html, a, ul{
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
  /*   background-color: #1D1D1B; */
  scroll-behavior: smooth;

}
.whatsapp-fab{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background-color .2s ease;
}

.whatsapp-fab a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: #fff;            /* ícono blanco */
  font-size: 32px;        /* tamaño del ícono */
  text-decoration: none;
}

.whatsapp-fab:hover{ transform: scale(1.08); background:#20ba5a; }

/* opcional: un poco más grande en mobile */
@media (max-width: 480px){
  .whatsapp-fab{ width: 68px; height: 68px; bottom: 16px; right: 16px; }
  .whatsapp-fab a{ font-size: 34px; }
}
