#elementor-popup-modal-17236{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-17236 .dialog-message{height:auto;}#elementor-popup-modal-17236 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){#elementor-popup-modal-17236{justify-content:center;align-items:center;}}/* Start custom CSS for html, class: .elementor-element-452d9a6 *//* ===== POPUP BASE ===== */
.coh-popup {
  --ink: #0f172a;
  --muted: #475569;
  --bg: #fff;
  --overlay: rgba(15, 23, 42, 0.6);
  --accent: #0b4a6f;
  --accent2: #c2a35a;
  --border: #e2e8f0;
  --r: 18px;
  --shadow: 0 20px 50px rgba(2, 6, 23, 0.25);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}
.coh-popup *, .coh-popup *::before, .coh-popup *::after { box-sizing: border-box; }

/* ===== TOGGLE ===== */
.coh-toggle { position: absolute; left: -9999px; opacity: 0; }
.coh-toggle:checked ~ .coh-overlay { display: block; }
.coh-toggle:checked ~ .coh-dialog { display: block; }

/* ===== OVERLAY ===== */
.coh-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 1000;
}

/* ===== DIALOG ===== */
.coh-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 940px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  z-index: 1001;
  animation: fadeUp 0.35s ease both;
}

/* ===== GRID ===== */
.coh-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 0;
}

/* ===== LEFT IMAGE ===== */
.coh-media {
  margin: 0;
  background: #f8fafc;
  display: flex;
}
.coh-media img {
  width: 100%;
  height: auto; /* Mantiene proporción real de la imagen */
  object-fit: contain; /* No recorta ni estira */
}

/* ===== RIGHT CONTENT ===== */
.coh-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.75rem;
}
.coh-title {
  margin: 0 0 0.5rem;
  font-weight: 800;
  line-height: 1.2;
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.9rem);
}
.coh-text {
  color: var(--muted);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.0625rem);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.coh-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--accent), transparent 70%);
}
.coh-link:hover { text-decoration: underline; }

/* ===== BUTTON ===== */
.coh-btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent), black 10%));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 16px rgba(11, 74, 111, 0.25);
  transition: all 0.2s ease;
}
.coh-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 55%, white 55%), var(--accent));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 74, 111, 0.3);
}

/* ===== CLOSE BUTTON ===== */
.coh-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.08);
}
.coh-close:hover { background: #f8fafc; }

/* ===== MOBILE ===== */
@media (max-width: 820px) {
  .coh-grid {
    grid-template-columns: 1fr;
  }
  .coh-media img {
    height: auto;
    object-fit: contain;
  }
  .coh-body {
    padding: 1.5rem;
  }
  .coh-dialog {
    width: 92vw;
    border-radius: 20px;
  }
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 15px)); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}/* End custom CSS */