/* Estilos del Announcement Popup */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal__container {
  /* Los colores de fondo y borde serán aplicados desde las opciones del plugin */
  background-color: #f5f5f5;
  border: 8px solid #a1923d;
  padding: 45px 45px;
  max-width: 630px;
  width: 100%;
  border-radius: 0px;
  position: relative;
  text-align: center;
  box-shadow: 0px 0px 10px 0px #00000080;
}
@media only screen and (max-width: 767px) {
  .modal__container {
    width: 90%;
    padding: 70px 25px;
  }
}
main#announcement-popup-content { /* ID CORREGIDO */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  main#announcement-popup-content { /* ID CORREGIDO */
    gap: 24px;
  }
}
.modal__header {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 12px;
}
.modal__close {
  background: none;
  border: none;
  font-size: 32px;
  color: #a1923d;
  cursor: pointer;
  font-weight: 100;
  font-family: 'Open Sans', sans-serif;
}
.modal__close:hover {
  color: #8e812f;
  background: none;
}
#announcement-popup-content h2 { 
  margin-top: 0;
  color: #3D3D3D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 33px;
  line-height: 33px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 0.07em; 

}
@media only screen and (max-width: 767px) {
  #announcement-popup-content h2 { 
    font-size: 30px;
  }
}
#announcement-popup-description {
  color: #3D3D3D;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #announcement-popup-description { /* ID CORREGIDO */
    font-size: 14px;
  }
}
.modal__cta {
  background-color: #a1923d;
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 0px;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .modal__cta {
    font-size: 12px;
  }
}
.modal__cta:hover {
  background-color: #8e812f;
  color: white;
  opacity: 0.9;
}
a.modal__cta:focus-visible {
  outline: none;
}

/* Animaciones de MicroModal */
.micromodal-slide[aria-hidden="false"] .modal__overlay { animation: mm-fadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1); }
.micromodal-slide[aria-hidden="false"] .modal__container { animation: mm-slideIn .3s cubic-bezier(0.0, 0.0, 0.2, 1); }
.micromodal-slide[aria-hidden="true"] .modal__overlay { animation: mm-fadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1); }
.micromodal-slide[aria-hidden="true"] .modal__container { animation: mm-slideOut .3s cubic-bezier(0.0, 0.0, 0.2, 1); }
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay { will-change: transform; }
@keyframes mm-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mm-fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes mm-slideIn { from { transform: translateY(15%); } to { transform: translateY(0); } }
@keyframes mm-slideOut { from { transform: translateY(-15%); } to { transform: translateY(0); } }