/* =========================================================================
   AdultExpertsWeb · Landing individual de Partner
   Todo cuelga de .aewl para no pisar los estilos del tema ni de Elementor.

   AJUSTA AQUÍ EL COLOR: --aewl-pink es el rosa del logo. Si tienes el hex
   exacto de marca, cámbialo solo en esa línea y el resto se recalcula.
   ========================================================================= */

.aewl {
	--aewl-bg: #0b0710;
	--aewl-bg-alt: #120b19;
	--aewl-surface: #180f21;
	--aewl-surface-2: #1f1429;
	--aewl-border: #2c1d38;
	--aewl-text: #f5eef8;
	--aewl-muted: #a394b0;
	--aewl-pink: #ff2e88;
	--aewl-violet: #7b2ff7;

	--aewl-display: "Syne", "Trebuchet MS", sans-serif;
	--aewl-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--aewl-mono: "Space Mono", ui-monospace, Menlo, monospace;

	--aewl-gap: clamp(64px, 9vw, 128px);
	--aewl-radius: 14px;

	background: var(--aewl-bg);
	color: var(--aewl-text);
	font-family: var(--aewl-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.aewl *,
.aewl *::before,
.aewl *::after {
	box-sizing: border-box;
}

.aewl img {
	max-width: 100%;
	height: auto;
	display: block;
}

.aewl p {
	margin: 0 0 1em;
}

.aewl-wrap {
	width: min(1180px, 92vw);
	margin-inline: auto;
}

.aewl-wrap--narrow {
	width: min(820px, 92vw);
}

.aewl-section {
	padding-block: var(--aewl-gap);
}

.aewl-section--alt {
	background: var(--aewl-bg-alt);
}

/* ---------- Tipografía --------------------------------------------------- */

.aewl-eyebrow {
	font-family: var(--aewl-mono);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--aewl-pink);
	margin: 0 0 14px;
}

.aewl-h1 {
	font-family: var(--aewl-display);
	font-weight: 800;
	font-size: clamp(38px, 5.6vw, 66px);
	line-height: 1.03;
	letter-spacing: -0.035em;
	margin: 0 0 24px;
	text-wrap: balance;
}

.aewl-h1 em {
	font-style: normal;
	display: block;
	background: linear-gradient(96deg, var(--aewl-pink), var(--aewl-violet));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.aewl-h2 {
	font-family: var(--aewl-display);
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
	text-wrap: balance;
}

.aewl-h2--center,
.aewl-sub--center {
	text-align: center;
	margin-inline: auto;
}

.aewl-lead {
	font-size: clamp(17px, 1.5vw, 19px);
	color: var(--aewl-muted);
	max-width: 56ch;
}

.aewl-sub {
	color: var(--aewl-muted);
	max-width: 62ch;
	margin-bottom: 0;
}

.aewl-head {
	margin-bottom: clamp(36px, 5vw, 60px);
}

.aewl-note {
	margin: 28px 0 0;
	font-family: var(--aewl-mono);
	font-size: 12px;
	color: var(--aewl-muted);
	border-left: 2px solid var(--aewl-border);
	padding-left: 14px;
}

/* ---------- Hero --------------------------------------------------------- */

.aewl-hero {
	position: relative;
	padding-block: clamp(64px, 10vw, 130px);
	overflow: hidden;
}

.aewl-hero::before {
	content: "";
	position: absolute;
	inset: -30% 40% auto -20%;
	height: 620px;
	background: radial-gradient(circle at 30% 40%, rgba(255, 46, 136, 0.22), transparent 62%);
	pointer-events: none;
}

.aewl-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}

.aewl-hero__points {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.aewl-hero__text {
	min-width: 0;
}

.aewl-hero__points li {
	position: relative;
	padding-left: 26px;
	color: var(--aewl-muted);
	font-size: 15px;
}

.aewl-hero__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 12px;
	height: 2px;
	background: var(--aewl-pink);
}

/* ---------- Credencial del partner (elemento firma) ---------------------- */

.aewl-cred {
	background: linear-gradient(168deg, var(--aewl-surface-2), var(--aewl-surface));
	border: 1px solid var(--aewl-border);
	border-radius: 20px;
	padding: 26px;
	position: relative;
	box-shadow: 0 30px 70px -40px rgba(255, 46, 136, 0.55);
}

.aewl-cred::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(150deg, rgba(255, 46, 136, 0.7), transparent 45%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.aewl-cred__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 22px;
}

.aewl-cred__tag {
	font-family: var(--aewl-mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--aewl-muted);
}

.aewl-cred__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--aewl-pink);
	box-shadow: 0 0 0 4px rgba(255, 46, 136, 0.16);
}

.aewl-cred__logo {
	width: 96px;
	height: 96px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--aewl-border);
	border-radius: 16px;
	margin-bottom: 18px;
	overflow: hidden;
}

.aewl-cred__logo img {
	max-width: 78%;
	max-height: 78%;
	object-fit: contain;
}

/* Marcador cuando el partner aun no tiene logo: muestra sus iniciales. */
.aewl-cred__ph {
	font-family: var(--aewl-display);
	font-weight: 800;
	font-size: 28px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--aewl-pink);
	opacity: 0.75;
}

.aewl-cred__name {
	font-family: var(--aewl-display);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.025em;
	margin: 0 0 4px;
}

.aewl-cred__role {
	font-size: 14px;
	color: var(--aewl-muted);
	margin: 0 0 22px;
}

.aewl-cred__meta {
	display: grid;
	gap: 1px;
	background: var(--aewl-border);
	border: 1px solid var(--aewl-border);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 18px;
}

.aewl-cred__meta > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	background: var(--aewl-surface);
}

.aewl-cred__meta dt {
	font-size: 13px;
	color: var(--aewl-muted);
}

.aewl-cred__meta dd {
	margin: 0;
	font-family: var(--aewl-mono);
	font-size: 13px;
}

.aewl-cred__foot {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--aewl-muted);
	border-top: 1px solid var(--aewl-border);
	padding-top: 14px;
}

/* ---------- Tarjetas de servicio ---------------------------------------- */

.aewl-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.aewl-card {
	background: var(--aewl-surface);
	border: 1px solid var(--aewl-border);
	border-radius: var(--aewl-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.aewl-card:hover {
	border-color: var(--aewl-pink);
	transform: translateY(-3px);
}

.aewl-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--aewl-surface-2);
}

.aewl-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aewl-card__body {
	padding: 24px;
}

.aewl-card__body h3 {
	font-family: var(--aewl-display);
	font-weight: 700;
	font-size: 21px;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.aewl-card__body p {
	color: var(--aewl-muted);
	font-size: 15.5px;
	margin-bottom: 0;
}

.aewl-list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 7px;
}

.aewl-list li {
	font-family: var(--aewl-mono);
	font-size: 12.5px;
	color: var(--aewl-muted);
	padding-left: 16px;
	position: relative;
}

.aewl-list li::before {
	content: "+";
	position: absolute;
	left: 0;
	color: var(--aewl-pink);
}

.aewl-card--img .aewl-card__body {
	padding-top: 22px;
}

/* ---------- Muestras ----------------------------------------------------- */

.aewl-showcase {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.aewl-shot {
	margin: 0;
	background: var(--aewl-surface);
	border: 1px solid var(--aewl-border);
	border-radius: var(--aewl-radius);
	overflow: hidden;
}

.aewl-shot--wide {
	grid-column: 1 / -1;
}

.aewl-shot img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.aewl-shot--wide img {
	aspect-ratio: 21 / 9;
}

.aewl-shot figcaption {
	padding: 20px 24px 24px;
}

.aewl-shot__tag {
	display: inline-block;
	font-family: var(--aewl-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--aewl-pink);
	border: 1px solid var(--aewl-border);
	border-radius: 999px;
	padding: 4px 12px;
	margin-bottom: 12px;
}

.aewl-shot figcaption p {
	margin: 0;
	color: var(--aewl-muted);
	font-size: 15px;
}

/* ---------- Pasos -------------------------------------------------------- */

.aewl-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1px;
	background: var(--aewl-border);
	border: 1px solid var(--aewl-border);
	border-radius: var(--aewl-radius);
	overflow: hidden;
}

.aewl-step {
	background: var(--aewl-bg);
	padding: 28px 24px 32px;
}

.aewl-step__num {
	display: block;
	font-family: var(--aewl-mono);
	font-size: 13px;
	color: var(--aewl-pink);
	margin-bottom: 18px;
}

.aewl-step h3 {
	font-family: var(--aewl-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.02em;
	margin: 0 0 8px;
}

.aewl-step p {
	margin: 0;
	color: var(--aewl-muted);
	font-size: 15px;
}

/* ---------- Garantías ---------------------------------------------------- */

.aewl-split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}

.aewl-split__text {
	max-width: 46ch;
}

.aewl-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.aewl-fact {
	border-top: 2px solid var(--aewl-pink);
	padding-top: 16px;
}

.aewl-fact h3 {
	font-family: var(--aewl-display);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.015em;
	margin: 0 0 6px;
}

.aewl-fact p {
	margin: 0;
	color: var(--aewl-muted);
	font-size: 14.5px;
}

/* ---------- Testimonios -------------------------------------------------- */

.aewl-quotes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.aewl-quote {
	margin: 0;
	background: var(--aewl-surface);
	border: 1px solid var(--aewl-border);
	border-radius: var(--aewl-radius);
	padding: 28px 26px 24px;
	position: relative;
}

.aewl-quote::before {
	content: "”";
	position: absolute;
	top: 6px;
	right: 20px;
	font-family: var(--aewl-display);
	font-size: 64px;
	line-height: 1;
	color: var(--aewl-pink);
	opacity: 0.28;
}

.aewl-quote p {
	font-size: 16px;
	margin-bottom: 18px;
}

.aewl-quote footer {
	display: flex;
	flex-direction: column;
	gap: 2px;
	border-top: 1px solid var(--aewl-border);
	padding-top: 14px;
}

.aewl-quote footer strong {
	font-size: 15px;
}

.aewl-quote footer span {
	font-family: var(--aewl-mono);
	font-size: 12px;
	color: var(--aewl-muted);
}

/* ---------- Cierre y hueco del formulario -------------------------------- */

.aewl-cta {
	position: relative;
	overflow: hidden;
}

.aewl-cta::before {
	content: "";
	position: absolute;
	inset: auto -10% -60% 20%;
	height: 520px;
	background: radial-gradient(circle at 50% 50%, rgba(123, 47, 247, 0.24), transparent 65%);
	pointer-events: none;
}

.aewl-cta__inner {
	position: relative;
	text-align: center;
	max-width: 720px;
}

.aewl-formslot {
	margin: 36px auto 0;
	max-width: 640px;
	text-align: left;
}

.aewl-formslot__hint {
	margin: 0;
	padding: 40px 24px;
	text-align: center;
	border: 1px dashed var(--aewl-border);
	border-radius: var(--aewl-radius);
	font-family: var(--aewl-mono);
	font-size: 12.5px;
	color: var(--aewl-muted);
}

.aewl-cta__legal {
	margin: 22px 0 0;
	font-size: 13px;
	color: var(--aewl-muted);
}

/* ---------- FAQ ---------------------------------------------------------- */

.aewl-faq {
	display: grid;
	gap: 1px;
	background: var(--aewl-border);
	border: 1px solid var(--aewl-border);
	border-radius: var(--aewl-radius);
	overflow: hidden;
}

.aewl-faq__item {
	background: var(--aewl-bg);
}

.aewl-faq__item summary {
	cursor: pointer;
	list-style: none;
	padding: 20px 56px 20px 24px;
	font-weight: 600;
	font-size: 16.5px;
	position: relative;
}

.aewl-faq__item summary::-webkit-details-marker {
	display: none;
}

.aewl-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--aewl-mono);
	font-size: 20px;
	color: var(--aewl-pink);
	transition: transform 0.2s ease;
}

.aewl-faq__item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.aewl-faq__item p {
	margin: 0;
	padding: 0 24px 22px;
	color: var(--aewl-muted);
	font-size: 15.5px;
}

/* ---------- Foco visible ------------------------------------------------- */

.aewl a:focus-visible,
.aewl summary:focus-visible {
	outline: 2px solid var(--aewl-pink);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ---------- Responsive --------------------------------------------------- */

@media (max-width: 980px) {
	.aewl-hero__grid,
	.aewl-split {
		grid-template-columns: minmax(0, 1fr);
	}

	.aewl-cred {
		max-width: 420px;
	}

	.aewl-showcase {
		grid-template-columns: minmax(0, 1fr);
	}

	.aewl-shot--wide img,
	.aewl-shot img {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 560px) {
	.aewl {
		font-size: 16px;
	}

	.aewl-card__body,
	.aewl-shot figcaption {
		padding: 20px;
	}

	.aewl-faq__item summary {
		padding: 18px 48px 18px 18px;
		font-size: 15.5px;
	}

	.aewl-faq__item p {
		padding: 0 18px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aewl * {
		transition: none !important;
	}
}
