/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.1.1.1727880135
Updated: 2024-10-02 14:42:15

*/

/*
* * * Mail flotante 
*/
.mail-fab{
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.mail-fab:hover{ transform: translateY(-2px); background:#000; }
@media (max-width: 767px){ .mail-fab{ left: 12px; bottom: 12px; } } 
@media print{ .mail-fab{ display:none !important; } }


/*
======== GTranslate
*/
/*.gt_float_switcher img {
	width: 20px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
	display: none !important;
}*/


/*
======== Header sticky
*/
/* Header compacto fijo y oculto por defecto */
.header-compact{
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 9999;
  transform: translateY(-120%);
  opacity: 0; pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  background: rgba(17,17,17,.92);      /* pon tu color */
  backdrop-filter: saturate(160%) blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Cuando hay scroll, mostramos el compacto */
.scrolled .header-compact{
  transform: translateY(0);
  opacity: 1; pointer-events: auto;
}

/* Desvanecemos el grande al hacer scroll */
.header-large{ transition: opacity .18s ease; }
.scrolled .header-large{ opacity: 0; pointer-events: none; }

/* No tapes la barra de admin */
.admin-bar .header-compact{ top: 32px; }
@media (max-width: 782px){ .admin-bar .header-compact{ top: 46px; } }
/* ========================   */
