/* Contenedor Principal */
.popup-container-custom {
  display: flex;
  width: 100%;
  max-width: 750px;
  min-height: 450px;
  background-color: #ffffff;
  margin: 0 auto;
  overflow: hidden;
  font-family: inherit;
}

/* Columna de la Imagen */
.popup-col-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 100%;
}

/* Columna del Contenido */
.popup-col-content {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fcfcfc;
}

/* Elementos de Texto */
.popup-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 20px;
}
.popup-subtitle {
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #2c5e43; /* Resaltado en verde para el cupón del 5% */
  margin: 0 0 8px 0;
}
.popup-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.popup-text {
  font-size: 14px;
  color: #444;
  margin: 0 0 25px 0;
}

/* Formulario e Inputs */
.popup-form {
  width: 100%;
  max-width: 280px;
}
.popup-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  box-sizing: border-box;
  text-align: left;
}
.popup-btn {
  width: 100%;
  padding: 14px;
  background-color: #2c5e43;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.popup-btn:hover {
  background-color: #1f4430;
}

/* Mensajes de respuesta AJAX */
#cs-popup-response {
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
}

/* Ajuste para celulares */
@media (max-width: 600px) {
  .popup-container-custom {
    flex-direction: column;
  }
  .popup-col-image {
    min-height: 180px;
  }
  .popup-col-content {
    padding: 25px 20px;
  }
}