/*
 * MARCHETTI ACADEMY — landing page
 * Identidade própria: dark editorial premium
 * Fraunces (display) + Manrope (UI/corpo)
 */

:root {
	--ink: #16110d;
	--ink-soft: #201a14;
	--ink-card: #1c1610;
	--gold: #c9a35f;
	--champagne: #e6c98f;
	--champagne-soft: #f0ddb4;
	--paper: #f3ecdf;
	--cream: #faf6ec;
	--text-dark: #2a231c;
	--muted-dark: #6f6455;
	--muted-light: #a99a85;
	--line-dark: rgba(230, 200, 143, .16);
	--line-light: rgba(42, 35, 28, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-dark);
	background: var(--ink);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all .3s ease; }

.shell {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px;
}

em {
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-weight: 500;
	color: var(--gold);
}

/* ============ Componentes base ============ */

.eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
}

h1, h2 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -.01em;
}

h1 .reg, h2 .reg {
	font-size: .28em;
	vertical-align: .95em;
	color: var(--gold);
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h1, .section-head h2 { font-size: clamp(34px, 4.2vw, 52px); }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 18px 34px;
	border: 1px solid transparent;
	cursor: pointer;
}

.btn-gold {
	background: var(--gold);
	color: var(--ink);
}

.btn-gold:hover { background: var(--champagne); }

.btn-ghost {
	border-color: var(--line-dark);
	color: var(--champagne);
	background: transparent;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
	background: var(--ink);
	color: var(--champagne);
}

.btn-dark:hover { background: var(--ink-soft); color: var(--champagne-soft); }

.btn-sm { padding: 13px 24px; font-size: 12.5px; }

/* ============ Header ============ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(22, 17, 13, .88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line-dark);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 84px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--gold);
}

.brand-seal { width: 46px; height: 46px; flex-shrink: 0; }

.brand-words { display: flex; flex-direction: column; line-height: 1.15; }

.brand-name {
	font-family: 'Fraunces', serif;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--cream);
}

.brand-sub {
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .58em;
	text-transform: uppercase;
	color: var(--gold);
}

.main-nav { display: flex; gap: 34px; }

.main-nav a {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted-light);
}

.main-nav a:hover { color: var(--champagne); }

/* ============ Hero ============ */

.hero {
	position: relative;
	background:
		radial-gradient(ellipse 900px 600px at 78% 10%, rgba(201, 163, 95, .1), transparent 60%),
		var(--ink);
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	align-items: end;
	gap: 40px;
	min-height: 640px;
}

.hero-copy { padding: 90px 0; }

.lead {
	margin-top: 26px;
	max-width: 52ch;
	font-size: 17px;
	color: var(--muted-light);
}

.hero-points {
	list-style: none;
	column-count: 2;
	column-gap: 30px;
	margin-top: 30px;
	max-width: 58ch;
}

.hero-points li {
	position: relative;
	padding: 7px 0 7px 26px;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--paper);
	break-inside: avoid;
}

.hero-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 13px;
	width: 13px;
	height: 13px;
	background-color: var(--gold);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 44px;
	margin-top: 62px;
	padding-top: 34px;
	border-top: 1px solid var(--line-dark);
	max-width: 58ch;
}

.stat-num {
	font-family: 'Fraunces', serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--champagne);
	line-height: 1;
	min-height: 30px;
	display: flex;
	align-items: flex-end;
}

.stat-brand .stat-num {
	font-size: 21px;
	letter-spacing: .04em;
	white-space: nowrap;
}

.stat-num span { color: var(--gold); font-size: .62em; }

.stat-label {
	margin-top: 8px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--muted-light);
	max-width: 170px;
	line-height: 1.5;
}

.hero-visual {
	position: relative;
	align-self: end;
	display: flex;
	justify-content: center;
}

.hero-arch {
	position: absolute;
	bottom: 0;
	width: min(430px, 100%);
	height: 82%;
	border-radius: 999px 999px 0 0;
	background: linear-gradient(170deg, var(--champagne-soft), var(--gold) 85%);
}

.hero-portrait {
	position: relative;
	width: min(400px, 92%);
	filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45));
}

.hero-card {
	position: absolute;
	left: 0;
	bottom: 44px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(22, 17, 13, .92);
	border: 1px solid var(--line-dark);
	padding: 14px 20px;
	backdrop-filter: blur(8px);
}

.hero-card-seal { width: 38px; height: 38px; color: var(--gold); flex-shrink: 0; }

.hero-card strong {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--cream);
	letter-spacing: .02em;
}

.hero-card span { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ============ Marquee ============ */

.marquee {
	overflow: hidden;
	background: var(--gold);
	padding: 16px 0;
}

.marquee-track {
	display: flex;
	align-items: center;
	gap: 34px;
	width: max-content;
	animation: marquee 28s linear infinite;
}

.marquee-track span {
	font-family: 'Fraunces', serif;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink);
	white-space: nowrap;
}

.marquee-track i { font-style: normal; color: var(--ink); opacity: .55; font-size: 13px; }

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ============ A Mentora ============ */

.mentor { background: var(--cream); padding: 110px 0; }

.mentor-grid {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: 80px;
	align-items: center;
}

.mentor-visual { position: relative; }

.mentor-frame {
	position: relative;
	border: 1px solid var(--gold);
	padding: 20px;
}

.mentor-frame::before {
	content: '';
	position: absolute;
	inset: -18px 18px 18px -18px;
	border: 1px solid var(--line-light);
	pointer-events: none;
}

.mentor-frame img { width: 100%; }

.mentor-badge {
	position: absolute;
	right: -14px;
	bottom: 34px;
	max-width: 250px;
	background: var(--ink);
	color: var(--champagne);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.7;
	padding: 16px 22px;
}

.mentor-copy h2 { font-size: clamp(36px, 4vw, 54px); color: var(--text-dark); margin-bottom: 26px; }
.mentor-copy p { color: var(--muted-dark); margin-bottom: 18px; }
.mentor-copy strong { color: var(--text-dark); }

.mentor-creds { list-style: none; margin: 28px 0 8px; }

.mentor-creds li {
	position: relative;
	padding: 13px 0 13px 34px;
	border-bottom: 1px solid var(--line-light);
	font-weight: 600;
	font-size: 15px;
	color: var(--text-dark);
}

.mentor-creds li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 50%;
	width: 9px;
	height: 9px;
	transform: translateY(-50%) rotate(45deg);
	background: var(--gold);
}

.mentor-signature { margin-top: 30px; max-height: 64px; width: auto; }

/* ============ Faixa editorial ============ */

.editorial-band {
	position: relative;
	background-image: url('../images/background/editorial-band.webp');
	background-size: cover;
	background-position: 30% center;
	min-height: 440px;
	display: flex;
	align-items: center;
}

.editorial-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(22,17,13,.28), rgba(22,17,13,.05) 45%, rgba(22,17,13,.5));
}

.editorial-band .shell {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.editorial-band blockquote { max-width: 480px; text-align: right; }

.editorial-band blockquote p {
	font-family: 'Fraunces', serif;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
	text-shadow: 0 2px 26px rgba(0, 0, 0, .5);
}

.editorial-band blockquote em { color: var(--champagne-soft); }

.editorial-band blockquote footer {
	margin-top: 18px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--champagne);
	text-shadow: 0 1px 12px rgba(0, 0, 0, .6);
}

/* ============ As Mentorias (Level Up) ============ */

/* Primeira seção da página: respiro curto no topo, para não abrir com um vão. */
.levelup { background: var(--ink); padding: 56px 0 110px; }
.levelup h1 { color: var(--cream); }

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

.lu-card {
	display: flex;
	flex-direction: column;
	background: var(--ink-card);
	border: 1px solid var(--line-dark);
	padding: 44px 40px 40px;
}

.lu-card h3 {
	font-family: 'Fraunces', serif;
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--cream);
}

.lu-sub {
	margin-top: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
}

.lu-list {
	list-style: none;
	margin: 30px 0 36px;
	flex-grow: 1;
}

.lu-list li {
	position: relative;
	padding: 15px 0 15px 38px;
	border-bottom: 1px solid var(--line-dark);
	color: var(--paper);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.55;
}

.lu-list li::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 21px;
	width: 16px;
	height: 16px;
	background-color: var(--gold);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.lu-cta { align-self: flex-start; }

.lu-result {
	margin-top: 28px;
	padding: 48px 44px;
	border: 1px solid var(--line-dark);
	border-top: 2px solid var(--gold);
	background: linear-gradient(180deg, rgba(201, 163, 95, .07), transparent 70%);
	text-align: center;
}

.lu-result .eyebrow { margin-bottom: 14px; }

.lu-result h3 {
	font-family: 'Fraunces', serif;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 500;
	line-height: 1.25;
	color: var(--cream);
	max-width: 34ch;
	margin: 0 auto;
}

.lu-result p {
	margin: 22px auto 0;
	max-width: 62ch;
	font-size: 15.5px;
	color: var(--muted-light);
}

/* ============ Galeria ============ */

.gallery { background: var(--cream); padding: 110px 0; }
.gallery h2 { color: var(--text-dark); }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.gallery-grid figure {
	position: relative;
	overflow: hidden;
}

.gallery-grid img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform .5s ease;
}

.gallery-grid figure:hover img { transform: scale(1.05); }

.ph-box {
	aspect-ratio: 4 / 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	background:
		repeating-linear-gradient(-45deg, transparent 0 14px, rgba(201, 163, 95, .05) 14px 15px),
		var(--paper);
	border: 1px dashed var(--gold);
}

.ph-box .ph-seal {
	width: 64px;
	height: 64px;
	color: var(--gold);
	opacity: .5;
}

.ph-box span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--muted-dark);
	opacity: .7;
}

.gallery-grid figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 46px 22px 18px;
	background: linear-gradient(transparent, rgba(22, 17, 13, .82));
	color: var(--cream);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}

/* ============ Depoimentos ============ */

.testimonials { background: var(--ink); padding: 110px 0; }
.testimonials h2 { color: var(--cream); }

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.t-card {
	background: var(--ink-card);
	border: 1px solid var(--line-dark);
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
}

.t-mark {
	font-family: 'Fraunces', serif;
	font-size: 64px;
	line-height: .6;
	color: var(--gold);
	margin-bottom: 20px;
}

.t-card > p {
	font-size: 15px;
	color: var(--muted-light);
	font-style: italic;
	flex-grow: 1;
}

.t-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--line-dark);
}

.t-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px dashed var(--gold);
	background: rgba(201, 163, 95, .08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: 'Fraunces', serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .06em;
	color: var(--gold);
}

.t-author strong {
	display: block;
	font-size: 14.5px;
	color: var(--cream);
	font-weight: 700;
}

.t-author span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ============ CTA final ============ */

.final-cta {
	background: linear-gradient(160deg, var(--champagne-soft), var(--gold));
	padding: 110px 0;
	text-align: center;
}

.final-cta .shell { max-width: 760px; }

.cta-seal { width: 68px; height: 68px; color: var(--ink); margin: 0 auto 30px; }

.final-cta h2 { font-size: clamp(36px, 4.4vw, 56px); color: var(--ink); }
.final-cta h2 em { color: #7c5a23; }

.final-cta p {
	margin: 22px auto 38px;
	max-width: 48ch;
	color: rgba(22, 17, 13, .75);
	font-weight: 600;
}

/* ============ Footer ============ */

.site-footer {
	background: #120e0a;
	color: var(--muted-light);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 60px;
	padding-top: 90px;
	padding-bottom: 60px;
}

.footer-seal { width: 54px; height: 54px; color: var(--gold); margin-bottom: 18px; }

.footer-brand .brand-words { margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; max-width: 40ch; }

.footer-col h4 {
	font-family: 'Fraunces', serif;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--champagne);
	margin-bottom: 22px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; font-size: 14.5px; }
.footer-col a { color: var(--muted-light); }
.footer-col a:hover { color: var(--champagne); }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	padding-top: 26px;
	padding-bottom: 26px;
	border-top: 1px solid var(--line-dark);
	font-size: 13px;
}

.footer-bottom a { color: var(--champagne); }

/* ============ WhatsApp flutuante ============ */

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
	z-index: 99;
}

.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-float:hover { transform: scale(1.08); }

/* ============ Responsive ============ */

@media (max-width: 1100px) {
	.main-nav { display: none; }
	.hero-grid { grid-template-columns: 1fr .85fr; }
}

@media (max-width: 900px) {
	.shell { padding: 0 24px; }

	.hero-grid { grid-template-columns: 1fr; min-height: 0; }
	.hero-copy { padding: 70px 0 0; }
	.hero-visual { margin-top: -34px; }
	.hero-points { column-count: 1; max-width: none; }
	.hero-stats { gap: 24px; margin-top: 44px; padding-top: 28px; max-width: none; }
	.stat-label { max-width: none; }

	.mentor-grid { grid-template-columns: 1fr; gap: 60px; }
	.mentor-badge { right: 0; }

	.levelup-grid { grid-template-columns: 1fr; }
	.lu-card { padding: 36px 28px 32px; }
	.lu-result { padding: 40px 28px; }

	.gallery-grid { grid-template-columns: 1fr; }
	.gallery-grid img, .ph-box { aspect-ratio: 16 / 10; }

	.testimonials-grid { grid-template-columns: 1fr; }

	.footer-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; }
	.footer-bottom { flex-direction: column; text-align: center; }

	.mentor, .levelup, .gallery, .testimonials, .final-cta { padding: 72px 0; }
	.levelup { padding: 36px 0 72px; }
}

@media (max-width: 560px) {
	.header-inner { height: 72px; }
	.brand-seal { width: 38px; height: 38px; }
	.brand-name { font-size: 17px; }
	.brand-sub { font-size: 9px; letter-spacing: .48em; }
	.header-cta { padding: 11px 16px; font-size: 11px; }

	.hero-actions .btn { width: 100%; }

	.editorial-band { min-height: 360px; }
	.editorial-band .shell { justify-content: center; }
	.editorial-band blockquote { text-align: center; }

	.lu-cta { width: 100%; }

	.stat-num { font-size: 26px; min-height: 26px; }
	.stat-brand .stat-num { font-size: 18px; }
}

/* ============ Página de evento (masterclass) ============ */

/* Empurra o rodapé para baixo da dobra quando o conteúdo é curto (header + rodapé ≈ 152px). */
.evento { background: var(--ink); padding: 56px 0 90px; min-height: calc(100vh - 152px); }

.evento-grid {
	display: grid;
	grid-template-columns: 1fr .92fr;
	gap: 64px;
	align-items: start;
}

.evento-copy h1 {
	font-size: clamp(38px, 5vw, 62px);
	color: var(--cream);
	max-width: 11ch;
}

.evento-copy .lead {
	margin-top: 22px;
	max-width: 38ch;
	font-family: 'Fraunces', serif;
	font-size: clamp(19px, 2vw, 24px);
	line-height: 1.35;
	color: var(--champagne);
}

.evento-texto { margin-top: 30px; max-width: 52ch; }
.evento-texto p { color: var(--muted-light); font-size: 15.5px; margin-bottom: 16px; }

.evento-data {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
	padding: 14px 26px;
	border: 1px solid var(--gold);
	border-radius: 999px;
	color: var(--champagne);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.evento-dia {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: none;
	color: var(--gold);
}

/* ---- Formulário ---- */

.evento-form {
	background: var(--ink-card);
	border: 1px solid var(--line-dark);
	padding: 40px 36px;
	position: sticky;
	top: 104px;
}

.evento-form h2 { font-size: 30px; color: var(--cream); }
.form-sub { margin-top: 8px; font-size: 13px; color: var(--muted-light); }

.form-erro-topo {
	margin-top: 20px;
	padding: 12px 16px;
	border: 1px solid #a5514f;
	background: rgba(165, 81, 79, .14);
	color: #f0b9b7;
	font-size: 14px;
	font-weight: 600;
}

.campo { margin-top: 20px; }
.campo-duplo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }

.campo label {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--champagne);
}

.campo input,
.campo select,
.campo textarea {
	width: 100%;
	padding: 13px 14px;
	background: rgba(250, 246, 236, .04);
	border: 1px solid var(--line-dark);
	color: var(--cream);
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
}

.campo textarea { resize: vertical; line-height: 1.6; }
.campo select { appearance: none; cursor: pointer; }
.campo select option { background: var(--ink); color: var(--cream); }

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(250, 246, 236, .07);
}

.campo input::placeholder, .campo textarea::placeholder { color: rgba(169, 154, 133, .6); }

.campo-erro { display: block; margin-top: 6px; font-size: 12.5px; font-weight: 600; color: #f0b9b7; }

/* Isca de robô: fora da tela, mas preenchível por quem não enxerga o layout. */
.isca { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-enviar { width: 100%; margin-top: 28px; }
.form-nota { margin-top: 14px; font-size: 12px; color: var(--muted-light); text-align: center; }

/* ---- Confirmação ---- */

.evento-ok .shell, .evento-vazio .shell { max-width: 640px; text-align: center; }
.evento-ok .eyebrow, .evento-vazio .eyebrow { margin-top: 26px; }
.ok-seal { width: 74px; height: 74px; color: var(--gold); margin: 40px auto 0; }
.evento-ok h1, .evento-vazio h1 { font-size: clamp(34px, 4.4vw, 52px); color: var(--cream); }
.ok-texto, .evento-vazio p { margin: 22px auto 0; max-width: 44ch; color: var(--muted-light); }
.evento-vazio .btn { margin-top: 32px; }

.btn-zap {
	margin-top: 34px;
	background: #25D366;
	color: #08301a;
	gap: 12px;
}

.btn-zap:hover { background: #4ae081; }
.btn-zap svg { width: 22px; height: 22px; }

.ok-link { margin-top: 22px; font-size: 13px; color: var(--muted-light); word-break: break-all; }
.ok-link a { color: var(--champagne); }

@media (max-width: 980px) {
	.evento-grid { grid-template-columns: 1fr; gap: 44px; }
	/* No celular o formulário vem primeiro: quem chega já comprou e quer o grupo.
	   A descrição da masterclass fica logo abaixo dele. */
	.evento-form { position: static; order: -1; }
	.evento-copy h1 { max-width: none; }
}

@media (max-width: 560px) {
	.evento { padding: 36px 0 64px; }
	.evento-form { padding: 30px 22px; }
	.campo-duplo { grid-template-columns: 1fr; }
}

/* Tela de confirmação pendente: o formulário curto do código do pedido. */
.conferir-form { max-width: 420px; margin: 34px auto 0; text-align: left; }
.conferir-form .campo { margin-top: 0; }
.conferir-form .btn { width: 100%; margin-top: 14px; }
