@charset "utf-8";



html {
  font-size: 95%;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #837E7C;
}
footer {
  font-family: "Montserrat", sans-serif;
}


a {
  color: #837E7C; /*<!--granite-->*/
  line-height: 250%;
  text-decoration: none;
}
a:hover {
  color: #E5E4E2; /*platinum*/
}


footer a {
  color: #837E7C; /* granite */
  line-height: 250%;
  text-decoration: none;
}

footer a:hover {
  color: #E5E4E2; /* platinum */
}



.botongolden {
  position: relative;
  display: inline-block;
  padding: 8px 22px; /* Más espacio interno para que no “corte” el borde */
  font-weight: bold;
  color: dimgray;
  background: white;
  border: 2px solid transparent; /* Espacio reservado para el borde */
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);

  background-image:
    linear-gradient(45deg, #f5f5f5, #e6e6e6), /* Capa interior */
    linear-gradient(to right, #5c4520, #a9741a, #5c4520); /* Borde degradado */
  background-origin: border-box;
  background-clip: padding-box, border-box;
	
		 
}

.botongolden:hover {
  background-image:
    linear-gradient(#faf5ec, #faf5ec), /* fondo cálido al pasar */
    linear-gradient(to left, #5c4520, #a9741a, #5c4520); /* cambia dirección del degradado */
  color: #5c4520;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px); /* efecto de elevación */
}



.accordion-button:not(.collapsed) {
          background-color: white;
          box-shadow: 0px 4px 8px gray; /* Example of a proper box-shadow */
          border-color: gray;
          color: black;
      }


  .accordion-button.collapsed {
          box-shadow: none; /* Example of a proper box-shadow */
      }

	
.blended-image {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
	}



.flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: white;
    opacity: 0;
    animation: flash 5s infinite;
  }

 @keyframes flash {
  0% { opacity: 0.1; }
  5% { opacity: 0.7; }
  7% { opacity: 0.1; }
  10% { opacity: 0.7; }
  12% { opacity: 0.1; }
  50% { opacity: 0.1; }
  55% { opacity: 0.7; }
  57% { opacity: 0.1; }
  60% { opacity: 0.7; }
  62% { opacity: 0.1; }
  100% { opacity: 0.1; }
}