/* elementos */

* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita el scroll lateral */
}


body {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
}

h1 {
  margin-top: 0px;
  align-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #d42233;
}

header nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3em;
}

a .flecha-submenu {
  margin-top: 4px;
  vertical-align: middle;
}

footer {
  background-color: #030f27;
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  padding: 20px 40px;
  color: #ffffff;
}

i {
    margin-right: 5px;
}




/*-----------------------------------------------------------------*/












/* id */

#div1 {
    align-content: center;
    height: 600px;
    background-color: #ab5563;
    color: #ffffff;
}

#div1 h1, #div1 h2, #div1 h3 {
    padding-left: 3%;
}

#div2 {
    height: 500px;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}

#div3 {
    height: 500px;
    background-color: #030f27;
    display: flex;
}

#div4 {
    height: 1100px;
    background-color: #ab5563;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}


#informacion span {
    display: flex;
    margin-bottom: 15px;
}

#informacion span i {
  margin-top: 2px;
  margin-right: 10px;
}

#informacion span a {
  color: #ffffff;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030f27;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 1s ease;
}



/*-----------------------------------------------------------------*/



.brushed-metal {
  background: 
    linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05)),
    repeating-linear-gradient(
      90deg,
      #b8b8b8,
      #b8b8b8 1px,
      #d4d4d4 1px,
      #d4d4d4 2px
    );
  border: 2px solid #2a2f36;
  border-radius: 8px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.5);
}


/* Tornillos */
.brushed-metal::before,
.brushed-metal::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #cfcfcf;
  border: 2px solid #333;
  border-radius: 50%;
  box-shadow: inset 0 0 3px #666;
}

/* Tornillo superior izquierdo */
.brushed-metal::before {
  top: 8px;
  left: 8px;
}

/* Tornillo superior derecho */
.brushed-metal::after {
  top: 8px;
  right: 8px;
}

/* Tornillos de abajo */
.brushed-metal span.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #cfcfcf;
  border: 2px solid #333;
  border-radius: 50%;
  box-shadow: inset 0 0 3px #666;
}

.brushed-metal .bottom-left {
  bottom: 8px;
  left: 8px;
}

.brushed-metal .bottom-right {
  bottom: 8px;
  right: 8px;
}

/* PANEL METÁLICO INDUSTRIAL PARA FORMULARIOS */
.panel-metal {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0)),
    repeating-linear-gradient(
      90deg,
      #b8b8b8,
      #b8b8b8 1px,
      #d4d4d4 1px,
      #d4d4d4 2px
    );
  border: 2px solid #1c2230;
  border-radius: 14px;
  padding: 2rem;
  box-shadow:
    inset 0 0 8px rgba(0,0,0,0.4),
    0 10px 25px rgba(0,0,0,0.4);
}

/* TORNILLOS DECORATIVOS (Discrete) */
.panel-metal::before,
.panel-metal::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #cfcfcf;
  border: 2px solid #333;
  border-radius: 50%;
  box-shadow: inset 0 0 3px #666;
}

/* Superior izquierdo */
.panel-metal::before {
  top: 10px;
  left: 10px;
}

/* Superior derecho */
.panel-metal::after {
  top: 10px;
  right: 10px;
}

/* Abajo */
.panel-metal span.corner-bottom-left,
.panel-metal span.corner-bottom-right {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #cfcfcf;
  border: 2px solid #333;
  border-radius: 50%;
  box-shadow: inset 0 0 3px #666;
}

.panel-metal span.corner-bottom-left {
  bottom: 10px;
  left: 10px;
}

.panel-metal span.corner-bottom-right {
  bottom: 10px;
  right: 10px;
}

/* INPUTS con estética industrial */
.panel-metal input,
.panel-metal textarea,
.panel-metal select {
  background-color: #f6f6f6;
  border: 2px solid #6c6c6c;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
}

.panel-metal input:focus,
.panel-metal textarea:focus,
.panel-metal select:focus {
  border-color: #ab556a;
  box-shadow: 0 0 6px rgba(171, 85, 106, 0.7);
}

/* BOTÓN */
.panel-metal button {
  background: #ab556a;
  padding: 12px;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}

.panel-metal button:hover {
  background: #8e4457;
}


/*-----------------------------------------------------------------*/



/* field area */

.preview-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.upload-btn {
  background: #ab556a;
  color: white;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.upload-btn:hover {
  background-color: #8e4457;
}

.upload-btn input {
  display: none;
}

.fields-area {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fields-area input,
.fields-area textarea,
.fields-area select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #888;
  border-radius: 6px;
  background: #fdfdfd;
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
}

.input-group textarea {
  min-height: 90px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #ab556a;
  box-shadow: 0 0 5px rgba(171,85,106,0.5);
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #666;
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 4px;
}

/* Cuando el input tiene texto o está en foco */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.8rem;
  color: #ab556a;
}


.submit-btn {
  align-self: center;
  width: 50%;
}


/*-----------------------------------------------------------------*/



/* Headers y Footer*/

#headerPrincipal {
  height: 80px;
  position: relative;
  border: 3px solid #030f27;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  top: 0;
  z-index: 1000;
}

#headerEspaciador {
  height: 0;
}

#headerPrincipal.fijo + #headerEspaciador {
  height: 80px;  /* ajustá este valor a la altura real del header */
}


#headerPrincipal a {
  color: #030f27;
}

/* Estado fijo (al hacer scroll) */
#headerPrincipal.fijo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px 10px 20px;
  display: none;
  color: #ffffff;
  background-color: #030f27;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
}

#headerPrincipal.fijo a{
  color: #ffffff;
}

/* Logo más chico cuando está fijo */
#headerPrincipal.fijo .logo img {
  width: 100%;
  height: 100%;
  background-color: #030f27;
}

#headerPrincipal.fijo nav ul.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

#headerPrincipal.fijo .logo img {
    height: 30px;
}

#headerPrincipal.fijo .submenu {
  border: #ab5563 2px solid;
  background-color: #030f27;
}


.fijo-logo img {
  display: flex;
  align-items: center;
  height: 40px;
}

.fijo-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.fijo-nav .menu li a {
  color: #ffffff;
  font-size: 17px;
}

.fijo-nav .menu li a:hover {
  color: #d42233;
  transition: color 0.3s ease;
}

.fijo-info {
  align-content: center;
  padding: 2px;
}

.flecha-submenu {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  margin-left: 5px;
  vertical-align: middle;
  font-size: 12px;
}

.has-submenu:hover .flecha-submenu {
  transform: rotate(-90deg);
}

.has-submenu.submenu-abierto > .submenu {
  display: block;
}

.headerElementos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.headerElementos nav {
  padding: 10px 20px;
  margin-right: 30px;
}

.headerElementos nav ul * {
  padding: 3px;
}

/* === Estilo del botón hamburguesa === */
.menu-toggle {
  display: none; /* oculto por defecto */
  font-size: 28px;
  background: none;
  border: none;
  color: #a91c29;
  cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    border-radius: 100px;
    height: 50px;
    margin-right: 20px;
    background-color: #ffffff;
}

.logo span {
    font-weight: bold;
    font-size: 20px;
    color: #d42233;
}


#foot {
    flex: 1;
    padding: 1%;
}

#footLogo {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footLogo img {
  background-color: #030f27;
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  height: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 10px;
}

.menu li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Submenús de primer nivel */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: #030f27 2px solid;
  min-width: 200px; /* opcional para uniformidad */
}

/* Mostrar submenú de primer nivel al pasar el mouse */
.menu li:hover > .submenu {
  display: block;
} 

/* Submenús de segundo nivel (categorías hijas) */
.submenu .submenu {
  top: 0;
  left: 100%;
  display: none; /* oculto por defecto */
} 

/* Mostrar submenú de segundo nivel al pasar el mouse sobre el padre */
.submenu li:hover > .submenu {
  display: block;
}

/* Botón ingresar general */
.ingresar {
  background-color: #d42233; /* Rojo principal */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ingresar:hover {
  background-color: #a91c29;
  transform: scale(1.05);
}

/* Asegurar que no se desborde */
.ingresar:focus {
  outline: none;
}


/*-----------------------------------------------------------------*/










/* class */








/* Botones */


.boton-rojo {
  background-color: #d42233;
  color: white;
  font-weight: bold;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  margin: 7px;
}

.boton-azul {
  background-color: #030f27;
  color: white;
  font-weight: bold;
  padding: 5px;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  line-height: normal;
}





/*-----------------------------------------------------------------*/




/* Loader */

.loader-content {
  text-align: center;
  color: white;
}

.loader-content img {
  width: 150px;
  margin-bottom: 15px;
}

.loader-content p {
  margin-top: 20px;
  font-size: 18px;
}


/*-----------------------------------------------------------------*/




/*noticias*/

.link-noticias {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #ab5563;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 29px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.link-noticias:hover {
  background-color: #922f3f;
  transform: scale(1.05);
}



/*-----------------------------------------------------------------*/





/* Modal de busqueda*/


.modal-buscador {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  min-width: 300px;
  text-align: center;
}

.modal-buscador input {
  padding: 10px;
  width: 70%;
  margin-bottom: 15px;
}

.modal-buscador button {
  padding: 10px 20px;
  background-color: #d42233;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 9999px;
  cursor: pointer;
}

.modal-buscador button:hover {
  background-color: #030f27;
}

.resultado-producto {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 15px;
  margin: 10px auto;
  width: 80%;
  max-width: 500px;
  text-align: center;
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.resultado-producto:hover {
  transform: scale(1.02);
}

.resultado-producto button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #424B5D;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.resultado-producto button:hover {
  background-color: #030f27;
}

.resultados-scroll {
  max-height: 300px;
  overflow-y: auto;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px) brightness(0.7);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oculto {
  display: none;
}




/*-----------------------------------------------------------------*/









/* Login y Registro*/


/* Login */
.overlay-login {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Caja del login */
.login-contenedor {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 320px;
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  animation: aparecer 0.3s ease;
}

.login-contenedor h2 {
  margin-bottom: 1rem;
}



/* Registrar */

.overlay-registro {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/*Caja del registro*/
.registro-contenedor {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 320px;
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  animation: aparecer 0.3s ease;
}

.registro-contenedor h2 {
  margin-bottom: 1rem;
}

.campo {
  margin-bottom: 1rem;
  text-align: left;
}

.campo label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.campo input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.acciones {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}


/*-----------------------------------------------------------------*/


/* notificaciones */






/*-----------------------------------------------------------------*/


/*parallax: imagenes de fondo*/


.parallax1 {
  padding: 20px 0;
  background-image: url('../imagenes/fondoShafel.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.parallax2 {
  padding: 20px 0;
  background-image: url('../imagenes/fondoShafel2.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.parallax3 {
  padding: 20px 0;
  background-image: url('../imagenes/fondoShafel3.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.parallax4 {
  padding: 20px 0;
  background-image: url('../imagenes/shafelFondo4.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.parallaxG {
  padding: 20px 0;
  color: #ffffff;
  background-image: url('../imagenes/fondoShafel.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 780px;
}


/*-----------------------------------------------------------------*/




/* subcripcion */

.subcripcion {
  background-color: #424B5D;
}

.subcripcion * {
  margin: 0px 0px 10px 0px;
}

.subcripcion input {
  width: 80%;
}

/*-----------------------------------------------------------------*/





/* efectos y iconos */

.spinner {
  border: 8px solid #ffffff;
  border-top: 8px solid #d42233;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 10px auto 0 auto;
  animation: girar 1s linear infinite;
}

.lupa {
  color: #ffffff;
  margin-top: 5px;
  font-size: 25px;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s, background-color 0.3s;
}

/* Estado visible */
.toast.show {
  visibility: visible;
  opacity: 1;
}

/* Variantes */
.toast.success {
  background-color: #28a745;
}

.toast.error {
  background-color: #dc3545;
}

.toast.info {
  background-color: #007bff;
}


/*-----------------------------------------------------------------*/



/* Volver arriba */

#btnVolverArriba {
  position: fixed;
  bottom: 75px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b40000, #ab5563);
  color: white;
  border: none;
  outline: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#btnVolverArriba:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

#btnVolverArriba.visible {
  opacity: 1;
  visibility: visible;
  animation: slideUp 0.4s ease;
}

/* Pequeña animación del ícono */
#btnVolverArriba i {
  transition: transform 0.3s ease;
}

#btnVolverArriba:hover i {
  transform: translateY(-3px);
}



/*-----------------------------------------------------------------*/








@keyframes girar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Para escritorio → mostrar hacia abajo */
@media (min-width: 1001px) {
  .has-submenu:hover > .submenu {
    display: block;
  }

  .submenu li {
    position: relative;
  }

  .submenu .submenu {
    left: 100%;
    top: 0;
  }
}

@media (max-width: 1000px) {
  /* HEADER */
  #headerPrincipal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }


  #headerFijo {
    display: none !important;
  }

  .headerElementos {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: block; /* mostrar hamburguesa */
    margin-top: 5px;
    margin-right: 30px;
  }

   nav {
    position: absolute;
    top: 70px; /* ajustá según la altura del header */
    left: 0;
    width: 100%;
    background-color: #424B5D;
    border-top: 2px solid #030f27;
    display: none;
    flex-direction: column;
    z-index: 999;
  }

  nav.show {
    display: flex;
  }

  nav ul.menu {
    flex-direction: column;
    padding: 10px 0;
  }

  .submenu {
    position: static;
    border: none;
    padding-left: 15px;
  }

  .submenu.visible {
    display: block;
  }

  .has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .has-submenu > a .flecha-submenu {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
  }

  .has-submenu.open > a .flecha-submenu {
    transform: rotate(0deg);
  }

  nav ul.menu.mostrar {
    display: flex; /* se muestra cuando se agrega la clase 'mostrar' */
  }

  .menu li {
    justify-content: flex-start;
  }

  .ingresar {
    align-self: flex-end; /* se queda a la derecha */
    margin-bottom: 10px;
    width: auto; /* evita que ocupe todo el ancho */
  }

  /* SLIDER */
  .slider {
    position: relative;
    height: 250px;
  }

  .texto-slide {
    bottom: 20px;
    left: 20px;
    padding: 10px;
    font-size: 14px;
  }

  .texto-slide h2 {
    font-size: 18px;
  }

  /* FOOTER */
  footer {
    flex-direction: row;
    align-items: left;
    text-align: left;
  }

  #footLogo {
    width: 20%;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
  }

  #footLogo img {
    max-width: 160px;
    margin-top: 10px;
  }

  #foot {
    width: 100%;
    margin: 20px 0;
  }

  .subcripcion input {
    width: 100%;
  }

  .subcripcion button {
    width: 100%;
  }
}

@keyframes vibrarYExpandir {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.2) rotate(5deg); }
  50%  { transform: scale(1.1) rotate(-5deg); }
  75%  { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.lupa.animada {
  animation: vibrarYExpandir 0.9s ease-in-out;
}

@keyframes pulseFuerte {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.boton-rojo.animado {
  animation: pulseFuerte 0.4s ease;
}


@keyframes zoomBounce {
  0% { transform: scale(1); }
  50% { transform: scale(0.97); }
  75% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.boton-azul.animado {
  animation: zoomBounce 0.4s ease;
}

/* Animación */
@keyframes aparecer {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Animación de aparición */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}