/* Modal de captura de email pre-descarga PDF — Caro Comunicando */
.cc-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 52, 50, 0.62);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.18s ease-out;
}
.cc-gate-backdrop.is-open {
  opacity: 1;
}

.cc-gate {
  background: #faf7f1;
  max-width: 520px;
  width: 100%;
  padding: 48px 44px 40px;
  border-top: 3px solid #c89a4a;
  box-shadow: 0 26px 64px rgba(20, 52, 50, 0.32);
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #2a2623;
  transform: translateY(12px);
  transition: transform 0.22s ease-out;
}
.cc-gate-backdrop.is-open .cc-gate {
  transform: translateY(0);
}

.cc-gate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #8a7f72;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}
.cc-gate-close:hover { color: #1f4f4d; }

.cc-gate-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c89a4a;
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}

.cc-gate-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: #1f4f4d;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 18px;
}

.cc-gate-lead {
  font-size: 14.5px;
  line-height: 1.65;
  color: #2a2623;
  margin: 0 0 28px;
}

.cc-gate-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cc-gate-input {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  padding: 13px 16px;
  border: 1px solid rgba(42, 38, 35, 0.22);
  background: #fff;
  color: #2a2623;
  width: 100%;
  outline: none;
  transition: border-color .15s;
}
.cc-gate-input:focus {
  border-color: #1f4f4d;
}

.cc-gate-input::placeholder {
  color: #6f6557;
  font-weight: 300;
}

.cc-gate-primary {
  background: #1f4f4d;
  color: #f5f1ea;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  transition: background .18s;
}
.cc-gate-primary:hover { background: #143432; }
.cc-gate-primary:disabled {
  opacity: 0.55;
  cursor: wait;
}

.cc-gate-skip {
  margin-top: 10px;
  background: transparent;
  border: none;
  color: #6f6557;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  padding: 8px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(111, 101, 87, 0.45);
  transition: color .15s;
}
.cc-gate-skip:hover { color: #1f4f4d; }

.cc-gate-fine {
  font-size: 11px;
  color: #6f6557;
  line-height: 1.55;
  margin-top: 20px;
  text-align: center;
}
.cc-gate-fine a {
  color: #1f4f4d;
  border-bottom: 1px solid rgba(31, 79, 77, 0.32);
}

.cc-gate-error {
  font-size: 12.5px;
  color: #a23b2c;
  margin-top: -6px;
  display: none;
}
.cc-gate-error.is-visible { display: block; }

@media (max-width: 520px) {
  .cc-gate {
    padding: 40px 28px 32px;
  }
  .cc-gate-title {
    font-size: 24px;
  }
}
