
@import "tailwindcss";

/* ======================
   BREAKPOINTS
   mobile:  480px
   tablet:  768px
   desktop: 1024px
====================== */

* {
  box-sizing:border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  
}


.whatsapp {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  z-index: 9501;
  
  
}

.barraPromo {

  width: 100%;
  z-index: 1000;
  background-color: #000000;
  padding: 0.5rem;
  text-align: center;
  
}


.promoText {
  color: #fff;
  font-size: 1rem;
  transition: opacity 0.5s ease;
}

.navbar {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 3.9rem;
  background-color: rgba(119, 119, 119, 0.3);/*  */
  display: flex;
  justify-content:center;
  align-items: center;
  padding: 0rem;
  z-index: 2000;
  box-shadow: 0 2px 6px rgba(75, 75, 75, 0);
  transition: top 0.3s ease,
              box-shadow 0.5s ease,
              background-color 0.5s ease;
}

@media (min-width: 1024px) {

   .navbar{
justify-content:space-evenly;

   }
}


.navbar:hover {
  
  background-color: rgba(255,255,255,1);
  box-shadow: 0 2px 10px rgba(0,0,0,1);

}

.navbar:hover .icu {
  color: rgb(99, 25, 25); /* Cambia a cualquier color */
}

.navbar:hover .logo img{
   filter: invert(1)  brightness(1.8);
}
.navbar:hover .nav-links a {
   color: black;
}



.navbar.scrolled {
  top: 0;
  background-color: rgba(255,255,255,0.9);
  box-shadow: 0 2px 60px rgba(0,0,0,1); 
}

.navbar .icu.pintado{ /*cambia al scroll*/

  color: rgb(99, 25, 25);

}

.navbar .lo.scrolled{ /*cambia al scroll*/

  filter: invert(1)  brightness(1.8);

}


.navbar.scrolled .nav-links .links {
  color: black; 
}


.logo {
  height: 100%;
}



.logo img {
height: 100%;
padding-top: 0.2rem;
padding-bottom: 0.2rem;
}

@media (min-width: 480px) {
  .logo img{
    
  }
}

@media (min-width: 1024px) {
  .logo img{

  }
}

.nav-links{
  display: none;
}


@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 24px;
  }

}


.hamburguesa {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 9500;
  
}

@media (min-width: 1024px) {
  .hamburguesa {
    display: none;
  }
}




.nav-links a {

  font-weight: 500;
  margin: 0 0;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  position: relative;

}
.nav-links a:hover {
  color: #000000;
  
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #333;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}




.menu-movil {
  position: fixed;
  top: 0;
  left: -80vw;
  width: 80vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  gap: 1.5rem;
  z-index: 8000;
  opacity: 1;
  transition: left 0.4s ease;
  pointer-events: none;
  background: rgba(100, 100, 100, 0.7);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(28px);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}



.menu-movil img{
  width: 70%;
}

.menu-movil.abierto {
  
  pointer-events: all;
  left: 0;
}

.menu-movil a {
  
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease,;
  padding: 0 10px;
  width: 100%;
  text-align: center;

}


.menu-movil a:hover {
 
  color: #2b2a2a;
  background-color: whitesmoke;
  
}


.menu-movil a::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0;
  height: 2.9px;
  background: #333;
  transition: width 0.3s ease;
}

.menu-movil a:hover::after {
  width: 100%;
}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  
}



.hero-slideshow {
  position: absolute;
  inset: 0;
}


.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: kenBurns 12s infinite; /* 3 slides × 5s */
  animation-delay: calc(var(--i) * 4s);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}



@keyframes kenBurns {
  0%    { opacity: 0; transform: scale(1);    }
  6%    { opacity: 1; }                        /* fade in */
  33%   { opacity: 1; transform: scale(1.1);  }/* empieza fade out aquí... */
  42%   { opacity: 0; transform: scale(1.15); }/* ...mientras la siguiente ya entró */
  42.1% { transform: scale(1); }              /* reset invisible */
  100%  { opacity: 0; transform: scale(1);    }
}




.hero-video {
  
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;

}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 27, 0.5);
}

.hero-image{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content:center;
  align-items: end;
  overflow: hidden;

}


.hero-image img {
  width: 5rem;
  height: auto;
  opacity: 0.7;
  z-index: 5;
  margin-bottom: 2rem;

  
}



@keyframes fadeCTA {
  0% {
    opacity: 0;
    
  }

  100%{
     opacity: 1;

  }
}


.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items:center;
  animation: fadeCTA 1.8s ease-out forwards;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    transparent 100%
  ); 

  padding-bottom: 10rem;
  
  
}





.frase_bienvenbida{
    color: white;
    font-weight: 300;
    text-align:center;
    font-size: 1.5rem;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    
}

@media (min-width: 480px) and (max-width: 1023px) {
  .frase_bienvenbida{
   
    font-weight: 300;
    text-align:center;
    font-size: 2.5rem;
    
}
}

.btn-hero {

  padding: 9px 9px;
  border: 2px solid white;
  border-radius: 30px; 
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-hero:hover {
  transform: scale(1.09); 
  background: rgba(255, 255, 255, 0.4); 
}



.label1{

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
}




.label1 h3{
  margin: 3rem;
  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: center;

}






.carousel-container {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  margin-left: 0rem;
  
}
.product-carousel {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  gap: 1.5rem; /* Espacio entre tarjetas */
  overflow-x: auto; /* Permite scroll horizontal */
  scroll-behavior: smooth; /* Hace que el movimiento por botón sea suave */
  
  /* Propiedades de ajuste magnético (Scroll Snap) */
  scroll-snap-type: x mandatory; 
  
  /* Oculta la barra de scroll horrible en navegadores modernos */
  scrollbar-width: none; /* Firefox */
}

.product-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Edge */
}

.product-card {
  flex: 0 0 280px; /* Evita que se encojan. Cada tarjeta medirá exactamente 280px */
  background-color: #f1f4ff;
  border-radius: 16px;
  padding: 10px;
  text-align: center;
  /* Al deslizar, la tarjeta se alineará al centro/inicio */
  scroll-snap-align: start; 
  border: 1px solid #ffffff;
  box-shadow: 0 4px 10px rgba(139, 139, 139, 0.90);

  transition: transform 0.6s ease, box-shadow 0.3s ease;


  height: auto; 
  width: auto; 
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 4px 10px rgba(139, 139, 139, 1);
 
}

.product-card h3{
  color: #000000;
  font-family: "Elms Sans", sans-serif;
  font-weight: 600;
}

.product-card p{
  color: #000000;
  font-family: "Elms Sans", sans-serif;
  font-weight: 400;
}


.product-btn {
  display: inline-block;
  background-color: #1a1a1a;  /* Negro */
  color: #ffffff;            /* Letras blancas */
  border: none;              /* Quita el borde gris por defecto */
  padding: 10px 50px;        /* Espaciado interno para darle cuerpo */
  margin-top: 15px;          /* Separa el botón del texto de arriba */
  border-radius: 10px;       /* Lo hace redondo (puedes usar 8px si lo quieres menos redondo) */
  font-size: 1rem;
  font-family: "Elms Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.product-btn:hover {
  background-color: #fff; 
  color: #000;
  border: 1.5px solid #1a1a1a;
  font-weight: 700;
  
}







.product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 40%;                  /* Lo centra verticalmente respecto a las imágenes */
  transform: translateY(-50%);
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;               /* Asegura que queden por encima de las fotos */
  transition: background-color 0.2s;
}

.carousel-btn:hover {
  background-color: #fdfdfd;
}

/* Ubicación del botón Atrás */
.prev-btn {
  left: 15px;
}

/* Ubicación del botón Adelante */
.next-btn {
  right: 15px;
}



.scroll-progress-container {
  width: 100%;
  height: 3px;               /* Grosor de la línea */
  background-color: #e0e0e0; /* Gris claro de fondo */
  margin-top: 15px;
  border-radius: 2px;
  overflow: hidden;          /* Evita que la barra interna se desborde */
  position: relative;
}


.scroll-progress-bar {
  height: 100%;
  width: 20%;               /* Ahora ocupa todo el ancho por defecto */
  background-color: #1a1a1a;
  border-radius: 2px;
  
  /* Clave: Aseguramos que escale desde la izquierda */
  transform: translateX(0);  /* Empieza en el extremo izquierdo */
  transition: transform 0.1s ease-out; /* Controlaremos esto con JS */
}

















.container_sombreros{
  display: flex;
  flex-direction: row;
  justify-content:space-evenly;
  flex-wrap: wrap;
  width: 100%;  
  gap: 1rem;   
  
  padding-top: 5rem;
}


/* new design */
.card {
  width: 11rem; 
  height: 16rem;   
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(139, 139, 139, 0.53);
  background: #f2f4f5;
  transition: transform 0.6s ease, box-shadow 0.3s ease;

  opacity: 0;
  transform: translateY(40px);
  
}

.card.show {
  opacity: 1;
  transform: translateY(0);
  
}

@media(min-width: 480px) and (max-width: 1023px) {
  .card {
  width: 13rem; 
  height: 16rem;
}
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(139, 139, 139, 0.90);
}
.card:hover img{
 transform: scale(1.10);
}

.card-img-wrapper {
  position: relative; 
  width: 100%;
  height: 50%;
  overflow: hidden;  

}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease; 
  object-fit:contain;
  display: block;
}

.etiqueta {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e74c3c;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.card-body {
  height: 50%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-body h3 {
  font-size: 15px;
  color: #1a1a1a;
  margin: 0 auto;
  font-weight: 400;

}

.card-body p {
  text-align: center;
  font-size: 10px;
  color: #888;
  margin: 1px 0;
}

.btn-ver-mas {
  margin-top: 6px;
  padding: 10px 0;
  width: 100%;
  background: transparent;
  border: 1.5px solid #1a1a1a;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-ver-mas:hover {
  background: #1a1a1a;
  color: #fff;
}


















.envios{

  margin-top: 2.5rem;
  margin-bottom: 4.5rem;
}

@media (min-width: 480px) {

 .envios{

  margin-top: 3.5rem;
}

}


.divisor {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 1rem auto;
}

.envios h3{

font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: center;
}



.scroll-section {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  height: 7rem;
}


.scroll-content {
  display: flex;
  gap: 40px;
  animation: scroll-infinito 12s linear infinite;
  width: max-content;
  margin: 0;
}

.scroll-content img {
  width: 15rem;       
  height: 9.6rem;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  filter: grayscale(100%) brightness(1.0) contrast(1.2);
}

@media (min-width: 480px) and (max-width: 1023px)  {

.scroll-content img {
  width: 15rem;       
  height: 9rem;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%) brightness(1.0) contrast(1.2);
}

 }


@keyframes scroll-infinito {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}





.gal1 h3{

  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: center;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.5rem;
  padding: 0.2rem;
}


.img1 {
  grid-column: span 4;
  grid-row: span 1;
}

.img2 {
  grid-column: span 2;
  grid-row: span 2;
}

.img3 {
  grid-column: span 2;
  grid-row: span 3;
}

.galeria img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
}



@media (min-width: 480px) {
  .galeria {
    grid-template-columns: repeat(3, 1fr);
  }

  .img1,
  .img2,
  .img3 {
    grid-column: auto;
    grid-row: auto;
  }

  .galeria img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
}



.tradicion{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.tradicion h3 {

  font-size:x-large;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 5px;
  font-family: "Merienda", cursive;
  font-weight: 600;
}


@media (min-width: 1024px) {
  .tradicion h3 {

   font-size:3rem;
   letter-spacing: 1px;
  }
}



.tradicion p{

text-align:justify;
text-decoration: none;
letter-spacing: 0px ;
margin: 10px 30px;
font-family: "Quicksand", sans-serif;
font-weight: 500; 

}


@media (min-width: 1024px) {
  
  .tradicion p{

    font-size: 1.8rem;

    text-align:justify;
    text-decoration: none;
    letter-spacing: 0px ;
    margin: 10px 200px;
    font-family: "Quicksand", sans-serif;
    font-weight: 500; 

}
}



.video_elaboracion {
  margin: 2rem 0 2rem 0;
  position: relative;
  height: 18rem;
  overflow: hidden;
}

@media (min-width: 768px) {

  .video_elaboracion{

    height: 30rem;
  }


 }



 .elaboracion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.2);
}



.recurso-video-elaboracion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ajusta el video al contenedor */
  z-index: -1; /* detrás del contenido */
}





.elaboracion-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.frase_elaboracion{
    color: rgb(237, 235, 235);
    font-weight: 400;
    font-size: 20px;
    text-align:center;
}




/*--------------------------------*/


.section-publicidad {
  width: 100%;
  max-width: 100vw;
  padding: 1.5rem;
  position: relative;
  margin: 2rem 0 2rem 0;
  overflow: hidden;

  
}


.publicidad-image-container{

  position: relative;

  width: 100%;
  height: 30rem;
  border-radius: 16px;
  border: 1px solid #bebdbd;
  background-color: rgb(248 250 252);
  overflow: hidden;
}

.publicidad-image-container img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position:center;
  
}

.publicidad-container {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /*  Centra los elementos hijos horizontalmente */
  gap: 1.5rem;         /* Espaciado limpio entre la frase y el botón */
  
  width: 90%;          /* Evita que el texto toque los bordes en pantallas chicas */
  max-width: 500px;    /* Un ancho máximo sugerido para que no se estire de más */
  z-index: 2;
  
}

.publicidad-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1; 
}


.frase_publicidad{
  color: rgb(237, 235, 235);
  font-weight: 600;
  font-size: 2rem;    
  text-align: center;
  margin: 0;
}
.btn-publicidad {
  display: inline-block; /* 🌟 Cambiado de 'block' a 'inline-block' para que respete su propio tamaño y no el 100% */
  background-color: #ffffff;
  color: rgb(26, 6, 6);
  padding: 1rem 3rem;    /* Ajusté un poco el padding horizontal */
  text-decoration: none;
  border-radius: 25px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.btn-publicidad:hover {
  transform: scale(1.05); /* Efecto sutil al pasar el mouse */
}


/*--------------------------------*/

.section-tarjetas {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
}

@media (min-width: 480px) {
 .section-tarjetas {
    flex-direction: row;
    padding: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;

  }
  
}

@media (min-width: 1024px) {
  .section-tarjetas {


  }
}


.tarjeta {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #bebdbd;
  overflow: hidden; 
  background-color: rgb(248 250 252);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
}


@media (min-width: 480px) {

 .tarjeta {
    flex: 1 1 calc(50% - 1rem); /* 2 por fila */
   
  }

}

@media (min-width: 1024px) {

 .tarjeta {
    flex: 1 1 calc(33.33% - 1rem); /* 2 por fila */
   
  }

}



.tarjeta-icono {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarjeta-icono i {
  font-size: 60px;
  color: #083251;
  /* background-color: #85b9de; */
  border-radius: 16px;
  padding: 1px;
}

.tarjeta-texto {
  height: 170px;
  padding: 10px ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
}

.tarjeta-texto h3 {
  margin: 0 ;
  font-size: 1.2rem;
  color: #2c2c2c;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}
.tarjeta-texto p {
  margin:0;
  font-size: 0.7rem;
  color: #676464;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 1.5rem;
  font-family: Arial, sans-serif;
  display: block;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .footer-container {
    grid-template-columns: repeat(2,1fr);
  }    
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3,1fr);
  }
}




.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p {
  color: #bbb;
  line-height: 1.5;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem; 
  margin-top: 10px;
}


.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #24262b; 
  color: #ffffff;           
  border-radius: 50%;        
  font-size: 3rem;           
  text-decoration: none;
  transition: all 0.3s ease; 
}


.social-links a:hover {
  color: #24262b;            
  background-color: #ffffff; 
  transform: translateY(-3px); 
}



.footer-bottom {
  text-align: center;
  border-top: 1px solid #3a3a3a;
  background-color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.9em;
  color: #fff;
}


.footer-bottom img{
  width: 100%;       
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 1;
  filter: grayscale(0%) brightness(1.0) contrast(1.1);

}

@media (min-width: 480px) and (max-width: 1023px) {
  .footer-bottom img{
  width: 50%;       
  height: 50%;
  
  }
}

@media (min-width: 1024px) {
  .footer-bottom img{
  width: 25%;       
  height: 25%;
  
  }
}






 /* Botón flotante */
    .floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      background-color: green;
      font-size: 2.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      z-index: 99999;
    }

    
