/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2026 | 18:16:35 */
/*==================================*/
/*BOTON AGENDAR CONSULTA*/
/*==================================*/
.mi-boton {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;   /* centra el contenido */
  gap: 10px;

  width: 228px;
  height: 40px;
  padding: 16px 75px !important;

  border-radius: 60px;
  background-color: #A89067;

  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
	
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;

  transition: background-color 0.3s ease;
}

.mi-boton:hover {
  background-color: #8f7a55;
}

.mi-boton svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  flex-shrink: 0;            /* evita que el ícono se comprima */
}

/* Responsive: en móvil ocupa el ancho completo */
@media (max-width: 768px) {
  .mi-boton {
    width: 100%;
    max-width: 228px;
  }
}


/*==================================*/
/*BOTON WHATSAPP*/
/*==================================*/
.btnWhats {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;   /* centra el contenido */
  gap: 10px;

  width: 191px;
  height: 40px;
  padding: 16px 75px !important;

  border-radius: 60px;
  background-color: #171514;

  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
	
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;

  transition: background-color 0.3s ease;
}

.btnWhats:hover {
  background-color: #252120;
}

.btnWhats svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  flex-shrink: 0;            /* evita que el ícono se comprima */
}

/* Responsive: en móvil ocupa el ancho completo */
@media (max-width: 768px) {
  .btnWhats {
    width: 100%;
    max-width: 228px;
  }
}

/*==================================*/
/*BOTON EVENTOS*/
/*==================================*/
/* Hover */
.btnMenu .wp-block-button__link:hover {
    background-color: #A89067 !important;
	font-weight: 700 !important;
    color: #F2EEE6 !important;
    transition: background 0.2s, color 0.2s;
}

/* Página activa */
.btnMenu.active-page .wp-block-button__link {
    background-color: #A89067 !important;
	font-weight: 700 !important;
    color: #F2EEE6 !important;
}