/* ============================================================
   Escorts Col — Formulario de contacto
   ============================================================ */

.ecct {
	--c-brand: #c33c61; --c-dark: #8e2d55;
	--c-ink: #0f172a; --c-muted: #64748b; --c-borde: #e2e8f0;
	max-width: 680px;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: var(--c-ink);
}

.ecct-bloque { margin-bottom: 20px }

.ecct-lbl {
	display: block; margin-bottom: 7px;
	font-size: 14px; font-weight: 600; color: #334155;
}
.ecct-req { color: var(--c-brand) }

.ecct input[type="text"],
.ecct input[type="email"],
.ecct input[type="url"],
.ecct input[type="tel"],
.ecct textarea,
.ecct select {
	width: 100%;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-family: inherit; font-size: 15px; color: var(--c-ink);
	transition: border-color .16s, box-shadow .16s;
	box-sizing: border-box;
}
.ecct textarea { resize: vertical; line-height: 1.6 }
.ecct select { cursor: pointer }

.ecct input:focus, .ecct textarea:focus, .ecct select:focus {
	outline: none;
	border-color: var(--c-brand);
	box-shadow: 0 0 0 3px rgba(195,60,97,.12);
}

.ecct-hint {
	margin: 6px 0 0;
	font-size: 12.5px; line-height: 1.5; color: #94a3b8;
}

.ecct-ayuda {
	margin: 9px 0 0;
	padding: 10px 13px;
	background: #f0f9ff;
	border-left: 3px solid #0284c7;
	border-radius: 0 8px 8px 0;
	font-size: 13.5px; line-height: 1.6; color: #075985;
}

/* Aviso en denuncias graves: destaca sin gritar */
.ecct-urgente {
	margin-bottom: 20px;
	padding: 14px 16px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	font-size: 13.5px; line-height: 1.65; color: #7f1d1d;
}
.ecct-urgente strong { display: block; margin-bottom: 3px }

.ecct-grid2 { display: grid; grid-template-columns: 1fr; gap: 0 }
@media (min-width: 620px) {
	.ecct-grid2 { grid-template-columns: 1fr 1fr; gap: 0 18px }
}

/* Trampa para bots: fuera de la pantalla, no display:none
   (algunos bots ignoran los campos ocultos con display) */
.ecct-hp {
	position: absolute !important;
	left: -9999px; top: auto;
	width: 1px; height: 1px; overflow: hidden;
}

.ecct-legal {
	margin: 4px 0 18px;
	font-size: 12.5px; line-height: 1.6; color: #94a3b8;
}
.ecct-legal a { color: var(--c-dark) }

.ecct-msg {
	margin-bottom: 16px;
	padding: 12px 15px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	font-size: 14px; color: #b91c1c;
}

.ecct-enviar {
	width: 100%;
	min-height: 50px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #c33c61, #8e2d55);
	color: #fff;
	border: none; border-radius: 10px;
	font-family: inherit; font-size: 15.5px; font-weight: 600;
	cursor: pointer;
	transition: box-shadow .2s, transform .16s, opacity .2s;
}
@media (min-width: 620px) { .ecct-enviar { width: auto; min-width: 220px } }
.ecct-enviar:hover:not(:disabled) {
	box-shadow: 0 6px 20px rgba(195,60,97,.32);
	transform: translateY(-1px);
}
.ecct-enviar:disabled { opacity: .6; cursor: wait }

/* ---------- Confirmación ---------- */
.ecct-ok {
	padding: 34px 26px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 14px;
	text-align: center;
}
.ecct-ok-ico {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; margin-bottom: 14px;
	background: #16a34a; color: #fff;
	border-radius: 50%;
	font-size: 26px;
}
.ecct-ok h3 {
	margin: 0 0 10px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.4rem; color: #14532d;
}
.ecct-ok p { margin: 0 0 8px; font-size: 14.5px; line-height: 1.65; color: #166534 }
.ecct-ok strong {
	display: inline-block;
	padding: 3px 12px; margin: 0 2px;
	background: #fff; border: 1px solid #bbf7d0; border-radius: 6px;
	font-family: ui-monospace, monospace; font-size: 15px; letter-spacing: .5px;
}
.ecct-ok-hint { font-size: 13px !important; color: #4d7c5f !important }
