/**
 * Single Product Logotipos-Clientes (cat172) — CSS rest (below-the-fold)
 *
 * Carga: deferred (media=print onload swap). Form de cambio de diseño · reseñas · FAQ.
 * Scope: body.single-product-logo-cliente. Reusa homepage.css (.reviews .faq).
 *
 * @since 2026-06-23 (dev_task #86)
 */

/* ── 2. FORM DE CAMBIO DE DISEÑO (claro, it1: ancho completo del contenido) ─── */
body.single-product-logo-cliente .lc-cambio {
	background: var(--lc-bg-light);
}
body.single-product-logo-cliente .lc-cambio__intro {
	/* it3 QA Kevin: ancho completo del form (sin max-width) */
	text-align: center;
	font-size: 1.05rem;
	color: #444;
	line-height: 1.65;
	margin: 0 0 clamp(1.6rem, 3vw, 2.6rem);
}
body.single-product-logo-cliente .lc-cambio__intro strong { color: var(--lc-text); }

body.single-product-logo-cliente .lc-cd-form {
	background: var(--lc-bg-soft);
	border: 1px solid var(--lc-line);
	border-radius: 22px;
	padding: clamp(1.6rem, 3.5vw, 3rem);
	box-shadow: var(--lc-shadow);
}
body.single-product-logo-cliente .lc-cd-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
/* Grid: textarea grande a la izquierda · dropzone a la derecha */
body.single-product-logo-cliente .lc-cd-form__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: clamp(1.2rem, 2.5vw, 2rem);
	margin: 0 0 1.4rem;
}
body.single-product-logo-cliente .lc-cd-form__label {
	display: block;
	font-family: var(--lc-font-b);
	font-weight: 700;
	font-size: 1rem;
	color: var(--lc-text);
	margin: 0 0 .6rem;
}
body.single-product-logo-cliente .lc-cd-form__textarea {
	width: 100%;
	height: calc(100% - 2rem);
	border: 2px solid var(--lc-magenta);
	border-radius: 14px;
	padding: 1rem 1.2rem;
	font-family: var(--lc-font-b);
	font-size: 1.05rem;
	color: var(--lc-text);
	background: #fff;
	resize: vertical;
	min-height: 220px;
}
body.single-product-logo-cliente .lc-cd-form__textarea:focus {
	outline: none;
	border-color: var(--lc-pink);
	box-shadow: 0 0 0 3px rgba(255,0,140,0.12);
}
/* Dropzone — área grande clicable; el input file la cubre invisible para
   conservar click nativo + drag&drop del navegador */
body.single-product-logo-cliente .lc-cd-form__drop {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	text-align: center;
	min-height: 180px;
	background: #fff;
	border: 2px dashed rgba(230,0,126,0.45);
	border-radius: 14px;
	padding: 1.4rem 1.2rem;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease;
}
body.single-product-logo-cliente .lc-cd-form__drop:hover {
	border-color: var(--lc-magenta);
	background: rgba(230,0,126,0.03);
}
body.single-product-logo-cliente .lc-cd-form__drop-icon {
	width: 34px;
	height: 34px;
	color: var(--lc-magenta);
}
body.single-product-logo-cliente .lc-cd-form__drop-txt {
	font-size: 1rem;
	color: #444;
}
body.single-product-logo-cliente .lc-cd-form__drop-txt strong { color: var(--lc-magenta); }
body.single-product-logo-cliente .lc-cd-form__drop-file {
	font-size: .88rem;
	color: #999;
}
body.single-product-logo-cliente .lc-cd-form__drop-file.has-file {
	color: var(--lc-text);
	font-weight: 700;
}
body.single-product-logo-cliente .lc-cd-form__file {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
body.single-product-logo-cliente .lc-cd-form__hint {
	display: block;
	font-size: .85rem;
	color: #777;
	margin: .5rem 0 0;
	text-align: center;
}
body.single-product-logo-cliente .lc-cd-form__row--submit {
	margin: 0;
	text-align: center;
}
/* Botón grande — ancho completo del card */
body.single-product-logo-cliente .lc-cd-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	width: 100%;
	background: var(--lc-yellow);
	color: #161616;
	font-family: var(--lc-font-h);
	font-weight: 800;
	font-size: clamp(1.1rem, 1.6vw, 1.25rem);
	border: 0;
	border-radius: 999px;
	padding: 1.1rem 2.4rem;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease;
}
body.single-product-logo-cliente .lc-cd-form__submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(255,237,0,0.3);
}
body.single-product-logo-cliente .lc-cd-form__submit.is-loading {
	opacity: .7;
	pointer-events: none;
}
body.single-product-logo-cliente .lc-cd-form__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(22,22,22,0.3);
	border-top-color: #161616;
	border-radius: 50%;
	animation: lc-cd-spin .7s linear infinite;
}
body.single-product-logo-cliente .lc-cd-form__submit.is-loading .lc-cd-form__spinner {
	display: inline-block;
}
@keyframes lc-cd-spin { to { transform: rotate(360deg); } }
body.single-product-logo-cliente .lc-cd-form__feedback {
	margin: 1rem 0 0;
	text-align: center;
	font-size: .95rem;
	font-weight: 600;
	color: #444;
	min-height: 1.2em;
}
@media (max-width: 820px) {
	body.single-product-logo-cliente .lc-cd-form__grid {
		grid-template-columns: 1fr;
	}
	body.single-product-logo-cliente .lc-cd-form__textarea {
		height: auto;
		min-height: 160px;
	}
	body.single-product-logo-cliente .lc-cd-form__drop {
		min-height: 140px;
	}
}

/* ── 3. RESEÑAS (oscuro) — réplica homepage, patrón alquiler it2 ─────────────
   reviews__hd/widget/greviews van dentro de .c (homepage.css los estila vía
   body.en-preview). NO fix breakout: los márgenes negativos de .reviews__widget
   y .greviews son intencionados (breakout del padding del .c). */
body.single-product-logo-cliente .lc-reviews {
	background: var(--lc-bg-dark);
}
body.single-product-logo-cliente .lc-reviews .lc-h2 { color: #fff; }
body.single-product-logo-cliente .lc-reviews .reviews__hd { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
body.single-product-logo-cliente .lc-reviews .reviews__score { color: #E6007E; }
body.single-product-logo-cliente .lc-reviews .reviews__stars { color: #FFED00; }
body.single-product-logo-cliente .greviews__label { color: rgba(255,255,255,.6); }

/* ── 4. FAQ (claro suave) — estilo web (réplica FAQ 839 / alquiler it2):
   cards blancas con sombra, acento izquierdo AMARILLO al abrir, "+" magenta ── */
body.single-product-logo-cliente .lc-faq {
	background: #F5F5F5;
}
body.single-product-logo-cliente .lc-faq__list {
	max-width: 860px;
	margin: 0 auto;
	display: grid;
	gap: .8rem;
}
body.single-product-logo-cliente .lc-faq__item {
	background: #fff;
	border-radius: 8px;
	border-left: 3px solid transparent;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
	padding: 0 1.3rem;
	overflow: hidden;
	transition: border-color .2s ease;
}
body.single-product-logo-cliente .lc-faq__item[open] { border-left-color: #FFED00; }
body.single-product-logo-cliente .lc-faq__q {
	font-family: var(--lc-font-h);
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	list-style: none;
	padding: 1.1rem 0;
	position: relative;
	color: #161616;
	padding-right: 2rem;
}
body.single-product-logo-cliente .lc-faq__q::-webkit-details-marker { display: none; }
body.single-product-logo-cliente .lc-faq__q::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 700;
	color: var(--lc-magenta);
	transition: transform .2s ease;
}
body.single-product-logo-cliente .lc-faq__item[open] .lc-faq__q::after {
	content: '\2013';
}
body.single-product-logo-cliente .lc-faq__a {
	padding: 0 0 1.1rem;
	font-size: .98rem;
	color: #444;
	line-height: 1.65;
}
body.single-product-logo-cliente .lc-faq__a p { margin: 0 0 .6rem; }
body.single-product-logo-cliente .lc-faq__a p:last-child { margin: 0; }
body.single-product-logo-cliente .lc-faq__a ol,
body.single-product-logo-cliente .lc-faq__a ul { margin: 0 0 .6rem; padding-left: 1.3rem; }
body.single-product-logo-cliente .lc-faq__a li { margin: 0 0 .35rem; }
body.single-product-logo-cliente .lc-faq__a strong { color: var(--lc-text); }
