
/* Custom colors and gradients only */
.bg-page-gradient { background: linear-gradient(45deg, #4a90e2 0%, #357abd 100%); }

/* FUNDOS */
.bg-page-diag {
  background-repeat: repeat;
  background-image: url("/static/images/diagonal-bold-light.96365ff88b17.png");
  background-attachment: scroll;
  background-position: top center;
  background-color: #357abd;
}
/* HOME SLIDES */
.homeslides-wrapper {
  opacity: 0.5;
  background-color: #1a9adb;
}
.homeslides-text h2 {
    color: #18408f;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: left;
    line-height: 1.3em;
}
.homeslides-text {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.3em;
}
/* SLIDESHOW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Modal Image ===== */
.modal-image {
  max-width: 90%;
  max-height: 90%;
  user-select: none;
  pointer-events: none;
}

/* ===== Navigation Cursor Areas ===== */
.nav-area {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  cursor: pointer;
}
.nav-left {
  left: 0;
}
.nav-right {
  right: 0;
}
/* Hide default outline on focusable divs */
.nav-area:focus {
  outline: none;
}

/* ===== Close Button ===== */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
  z-index: 1001;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 1);
}
