/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary: #2957a4;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
    --turquesa:#2dc997;
    --gris:#666666; 
    --ocre: #b9a772;
    --pink: #F0BFB9;
    --coral: #FF7F50;
    --verde: #4CAF50;
    --cemento: #E3E5C9;
    --blanco: #FFFFFF;
} 

body {
  background: var(--blanco);
  color: var(--gris);
  font-family: "Montserrat", sans-serif;
}

a {
  color:var(--turquesa);
}

a:hover, a:active, a:focus {
  color:var(--turquesa);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Boton de Ascenso al tope */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: var(--blanco);
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(48, 1, 136, 0.2);
  color: var(--blanco);
  outline: none;
}

.back-to-top:hover {
  background: var(--turquesa);
  color: var(--blanco);
}

/*--------------------------------------------------------------
# Deshabilita retardo AOS para Celular
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Encabezado
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: var(--blanco);
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-transparent {
  background: transparent;
}

#header.header-fixed {
  top: -120px; /* Hide the navbar by moving it up */
  transition: all 0.5s;
}

/*--------------------------------------------------------------
# SECCION HERO
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: url(../img/hero-bg.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 3;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: var(--blanco);
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: var(--blanco);
}

#hero .btn-get-started:hover {
  background: var(--primary);
  border: 1px solid #fafafa;
  box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

/*--------------------------------------------------------------
# Menu NAVEGACION
--------------------------------------------------------------*/
/* Barra de Menu Esenciales */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Flechas de la Barra de Menu */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Espacio Contenedor de la Barra de Menu */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Estilos de la Barra de Menu */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: var(--blanco);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: var(--blanco);
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: var(--gris);
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: var(--blanco);
  color: var(--primary);
}

.nav-menu ul ul {
  margin: 0;
}

/* Barra de Menu en tamaño Mobil */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: var(--blanco);
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Estilos de la Barra de Menu en Mobiles */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: var(--blanco);
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: var(--blanco);
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: var(--blanco);
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--turquesa);
}

#mobile-nav ul .menu-item-active {
  color:var(--turquesa);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color:var(--blanco);
}

/*--------------------------------------------------------------
# Secciones
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Secciones Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  font-family:'Montserrat','Lucida Sans Unicode', sans-serif;
  padding: 20px 0;
  background-color: var(--blanco);
  min-height: 40px;
  margin-top: 92px;
}

.breadcrumbs h2 {  
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--gris);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Section SOMOS --------------------------------*/
#about {
  background: var(--blanco);  
  padding: 80px 0;
}

#about .about-container .background {
  min-height: 300px;
  background: url(../img/about-img.jpg) center top no-repeat;
  margin-bottom: 10px;
}

#about .about-container .content {  
  background: var(--blanco);
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: var(--blanco);
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: var(--blanco);
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #2dc997;
}

#about .about-container .icon-box .icon i {
  color: var(--primary);
  font-size: 24px;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}


/* Seccion Servicios--------------------------------*/
#services {
  background: var(--light);
  background-size: cover;
  padding: 80px 0 60px 0;
}

#services .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 2px solid #2957a4;
  height: 200px;
  position: relative;
  background: #fafafa;
}
#services .box:hover {
    color: var(--dark);
    background-image: url(../img/fondobox.jpg);
    opacity: 0.5;    
}

#services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: var(--primary);

}

#services .icon a {
  display: inline-block;
}

#services .icon i {
  color: var(--turquesa);
  font-size: 24px;
}

#services .box:hover .icon {
  background: var(--turquesa);
  border: 2px solid #2957a4;
}

#services .box:hover .icon i,
#services .box:hover .icon a {
  color: var(--primary);
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services .title a {
  color: #111;
}
#services .title a:hover {
  color: var(--primary)
}

#services .description {
  font-size: 14px;
  line-height: 24px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  #call-to-action {
    background-attachment: scroll;
  }
}

#call-to-action .cta-title {
  color: var(--blanco);
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: var(--blanco);
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: var(--blanco);
}

#call-to-action .cta-btn:hover {
  background: var(--primary);
  border: 2px solid #2957a4;
}

/* PRODUCTOS Section --------------------------------*/
#portfolio {
  background: linear-gradient(rgba(131, 130, 130, 0.6), rgba(182, 180, 180, 0.6)), url(../img/about-img3.jpg) fixed center center;
  padding: 80px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 18px 14px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--gris);
  margin: 0 5px 10px 5px;
  transition: all ease-in-out 0.3s;
  background: var(--light);
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover, 
#portfolio #portfolio-flters li.filter-active {
  color: var(--blanco);
  background: var(--primary);
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: var(--primary);
  padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: var(--blanco);
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: var(--blanco);
  font-size: 14px;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link, 
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: var(--blanco);
  transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover, 
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--dark );
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 0.7;
  bottom: 0;
}

/*--------------------------------------------------------------
# PRODUCTOS DETALLES 
--------------------------------------------------------------*/

.portfolio-details {
  font-family: 'Montserrat', sans-serif;
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, 
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  border: 2px solid #fff;
  background-color: #2dc997 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background:var(--blanco);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/* EQUIPO  --------------------------------*/

#team {
  background: var(--turquesa);
  padding: 80px 0 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: var(--blanco);
}

#team .member .social a:hover {
   color: var(--primary);
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* CONTACTO */
#contact {
  background: var(--primary);
  padding: 80px 0 40px 0;
  color: var(--blanco);
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: white;
}

#contact .info i {
  font-size: 32px;
  color: #2dc997;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: var(--blanco);
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background:var(--primary);
  border: 1px solid #fff;
  border-radius: 50%; /* Redondea el borde al 50% para crear un círculo */
  color: var(--turquesa)
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: var(--blanco);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color:var(--blanco);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: var(--blanco);
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid white;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, 
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus, 
#contact .php-email-form textarea::focus {
  background-color: var(--primary);
  border: 3px solid white;
}

#contact .php-email-form button[type="submit"] {
  background: #2dc997;
  border: 0;
  padding: 10px 24px;
  color: var(--blanco);
  transition: 0.4s;
}

#contact .php-email-form button[type="submit"]:hover {
  border: 1px solid #fff;
  background: var(--primary);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #343b40;
  padding: 30px 0;
  color: var(--blanco);
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* BOTON WHATS APP */

.whatsapp-button {
  position: fixed;
  bottom: 55px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--verde);
  color: var(--blanco);
  font-size: 35px;
  padding: 0px 10px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 10px rgba(241, 241, 241, 0.5);
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
  background-color: var(--primary);
  border-color: var(--blanco);
  color: var(--blanco);
  
}

/* VENTANA EMERGENTE CON TEXTO */
.whatsapp-button::after {
  content: "Chatea con nosotros";
  position: absolute;
  bottom: 5px;
  right: 60px; /* distancia desde el botón */
  background-color: var(--blanco);
  color: var(--primary);
  padding: 6px 6px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(40px); /* empieza desplazado a la derecha */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mostrar tooltip en hover (escritorio) */
.whatsapp-button:hover::after,
.whatsapp-button:hover::before {
  opacity: 0.8;
  transform: translateX(0); /* se desliza hacia la izquierda */

}

/* Mostrar tooltip en móviles al tocar */
@media (hover: none) and (pointer: coarse) {
  .whatsapp-button:active::after,
  .whatsapp-button:active::before {
    opacity: 1;
    transform: translateX(0); /* se desliza hacia la izquierda */

  }
}

/*--------------------------------------------------------------
# Sticky Hamburger & Sidebar Menu
--------------------------------------------------------------*/
.sticky-hamburger {
  position: fixed;
  top: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--blanco);
  font-size: 30px;
  border: none;
  border-radius: 50%;
  display: none; /* Controlled via JS */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sticky-hamburger:hover {
  background-color: var(--turquesa);
  transform: scale(1.1);
}

.sticky-sidebar {
  position: fixed;
  top: 0;
  right: -400px; /* Initially off-screen */
  width: 350px;
  height: 100%;
  background-color: var(--primary);
  z-index: 2000;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.sticky-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--blanco);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.sidebar-close:hover {
  color: var(--turquesa);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 25px;
}

.sidebar-nav li a {
  color: var(--blanco);
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
}

.sidebar-nav li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--turquesa);
  transition: width 0.3s ease;
}

.sidebar-nav li a:hover {
  color: var(--turquesa);
  padding-left: 10px;
}

.sidebar-nav li a:hover:after {
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-hamburger {
    top: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  
  .sticky-sidebar {
    width: 80%;
    right: -80%;
  }

  .sidebar-nav li a {
    font-size: 30px;
  }
}
