/* ============================================================
   ACQUATHERM — Swim & Fitness Experience
   Paleta do manual: navy #0B1633 / #131F45, azul #1565C0→#2196F3,
   dourado #E8C97E→#B9893F, off-white #F4F4F6
   Fontes: Prata (títulos), Montserrat (texto), Great Vibes (script)
   ============================================================ */

:root {
	--navy-900: #080F24;
	--navy-800: #0B1633;
	--navy-700: #131F45;
	--navy-600: #1B2A5C;
	--blue-500: #1565C0;
	--blue-400: #1E88E5;
	--blue-300: #42A5F5;
	--gold-300: #F0D9A0;
	--gold-400: #E8C97E;
	--gold-500: #CBA35C;
	--gold-600: #B9893F;
	--bg-light: #F4F4F6;
	--text: #26304A;
	--text-soft: #5A6580;
	--white: #FFFFFF;
	--grad-gold: linear-gradient(115deg, #F0D9A0 0%, #E0BC72 45%, #B9893F 100%);
	--grad-blue: linear-gradient(135deg, #0D47A1 0%, #1E88E5 60%, #42A5F5 100%);
	--shadow-card: 0 12px 40px rgba(11, 22, 51, 0.10);
	--radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg-light);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: 'Prata', serif; font-weight: 400; line-height: 1.18; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--navy-800); }
h3 { font-size: 1.18rem; }

.script {
	font-family: 'Great Vibes', cursive;
	font-style: normal;
	font-size: 1.25em;
	background: var(--grad-blue);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.script.gold, .light .script { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; }

.eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--blue-500);
	margin-bottom: 0.7rem;
}
.eyebrow.gold { color: var(--gold-500); }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 0.9rem; color: #5a6580; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Botões ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.95rem 1.9rem;
	border: 0;
	border-radius: 999px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: var(--navy-800); box-shadow: 0 10px 28px rgba(185, 137, 63, 0.35); }
.btn-gold:hover { box-shadow: 0 14px 34px rgba(185, 137, 63, 0.5); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-300); }
.btn-navy { background: var(--navy-800); color: var(--white); box-shadow: 0 10px 28px rgba(11, 22, 51, 0.28); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 60;
	background: linear-gradient(180deg, rgba(8, 15, 36, 0.92), rgba(8, 15, 36, 0.78));
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(232, 201, 126, 0.14);
	transition: background 0.3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1rem; }
.brand img { width: 168px; height: auto; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav > a:not(.btn) {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	position: relative;
	padding: 0.4rem 0;
}
.main-nav > a:not(.btn)::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--grad-gold);
	transition: width 0.25s ease;
}
.main-nav > a:not(.btn):hover { color: var(--gold-300); }
.main-nav > a:not(.btn):hover::after { width: 100%; }
.btn-nav { padding: 0.65rem 1.3rem; font-size: 0.82rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--gold-400); margin: 5.5px 0; border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(1100px 520px at 82% -10%, rgba(30, 136, 229, 0.28), transparent 60%),
		radial-gradient(900px 480px at -10% 110%, rgba(21, 101, 192, 0.22), transparent 55%),
		linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
	color: var(--white);
	overflow: hidden;
	padding: 150px 0 140px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 1.8s ease;
	will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
	from { transform: scale(1.02); }
	to { transform: scale(1.1); }
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(8, 15, 36, 0.55) 0%, transparent 30%),
		linear-gradient(100deg, rgba(8, 15, 36, 0.97) 0%, rgba(11, 22, 51, 0.9) 42%, rgba(11, 22, 51, 0.62) 72%, rgba(11, 22, 51, 0.45) 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero-glow-1 { width: 420px; height: 420px; background: rgba(66, 165, 245, 0.35); top: -120px; right: 8%; }
.hero-glow-2 { width: 340px; height: 340px; background: rgba(232, 201, 126, 0.16); bottom: 0; left: 4%; }
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 640px; }
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	border: 1px solid rgba(232, 201, 126, 0.4);
	background: rgba(232, 201, 126, 0.08);
	color: var(--gold-300);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 1.6rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.3rem; }
.hero h1 .script { font-size: 1.3em; }
.hero-sub { font-size: 1.08rem; color: rgba(255, 255, 255, 0.78); max-width: 540px; margin-bottom: 2.2rem; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-carousel-nav { display: flex; align-items: center; gap: 1.1rem; margin-top: 2.8rem; }
.hero-dots { display: flex; gap: 0.5rem; }
.hero-dot {
	width: 26px; height: 3px;
	border: 0;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
	padding: 0;
	transition: background 0.3s ease, width 0.3s ease;
}
.hero-dot.active { background: var(--grad-gold); width: 44px; }
.hero-dot:hover:not(.active) { background: rgba(255, 255, 255, 0.55); }
.hero-caption {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: rgba(240, 217, 160, 0.85);
	text-transform: uppercase;
	transition: opacity 0.4s ease;
}
.hero-caption.fading { opacity: 0; }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave-divider svg { width: 100%; height: 90px; display: block; }
.wave-divider.wave-top { top: -1px; bottom: auto; }

/* ---------- Stats ---------- */
.stats { padding: 30px 0 10px; }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 2.2rem 2rem;
	margin-top: -70px;
	position: relative;
	z-index: 5;
}
.stat { text-align: center; }
.stat-num {
	display: block;
	font-family: 'Prata', serif;
	font-size: 2.3rem;
	background: var(--grad-gold);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.stat-label { font-size: 0.82rem; font-weight: 600; color: #5a6580; letter-spacing: 0.03em; }

/* ---------- Sobre ---------- */
.sobre-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }
.sobre-copy h2 { margin-bottom: 1.2rem; }
.sobre-copy p { margin-bottom: 1rem; color: #46506b; }
.check-list { list-style: none; margin-top: 1.4rem; }
.check-list li { padding-left: 2rem; position: relative; margin-bottom: 0.65rem; font-weight: 500; }
.check-list li::before {
	content: '';
	position: absolute;
	left: 0; top: 0.28em;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--grad-gold);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.2 14.5-4-4 1.7-1.7 2.3 2.3 5-5 1.7 1.7-6.7 6.7Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.sobre-card {
	background:
		radial-gradient(420px 260px at 80% 0%, rgba(66, 165, 245, 0.25), transparent 60%),
		linear-gradient(155deg, var(--navy-800), var(--navy-600));
	border-radius: var(--radius);
	padding: 3.4rem 2.6rem;
	box-shadow: 0 24px 60px rgba(11, 22, 51, 0.35);
	border: 1px solid rgba(232, 201, 126, 0.18);
}
.sobre-card-inner { text-align: center; }
.sobre-card-inner img { margin: 0 auto 1.8rem; width: 240px; }
.sobre-card-quote { font-family: 'Prata', serif; font-size: 1.35rem; color: rgba(255, 255, 255, 0.9); }
.sobre-card-quote .script { font-size: 1.5em; }

/* ---------- Modalidades ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2rem 1.7rem;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(11, 22, 51, 0.04);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11, 22, 51, 0.16); }
.card-icon {
	width: 58px; height: 58px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: var(--grad-blue);
	color: var(--white);
	margin-bottom: 1.2rem;
}
.card h3 { color: var(--navy-800); margin-bottom: 0.55rem; }
.card p { font-size: 0.9rem; color: #5a6580; flex: 1; }
.card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.1rem;
	font-size: 0.83rem;
	font-weight: 700;
	color: var(--gold-600);
	transition: gap 0.2s ease, color 0.2s ease;
}
.card-link:hover { gap: 0.7rem; color: var(--blue-500); }

/* ---------- Estrutura ---------- */
.estrutura {
	position: relative;
	background:
		radial-gradient(900px 460px at 88% 10%, rgba(30, 136, 229, 0.22), transparent 60%),
		linear-gradient(165deg, var(--navy-900), var(--navy-700));
	color: var(--white);
	padding: 170px 0;
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.feature {
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(232, 201, 126, 0.16);
	border-radius: var(--radius);
	padding: 2rem 1.6rem;
	backdrop-filter: blur(6px);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(232, 201, 126, 0.5); }
.feature-icon {
	width: 54px; height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--grad-gold);
	color: var(--navy-800);
	margin-bottom: 1.1rem;
}
.feature h3 { color: var(--gold-300); margin-bottom: 0.5rem; font-size: 1.08rem; }
.feature p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.72); font-weight: 300; }

/* ---------- Horários ---------- */
.horarios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.horarios-copy h2 { margin-bottom: 1rem; }
.horarios-copy p { color: #46506b; margin-bottom: 1.8rem; max-width: 440px; }
.horarios-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	border-top: 4px solid;
	border-image: var(--grad-gold) 1;
}
.horario-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.4rem 2rem;
	border-bottom: 1px solid #edeef2;
}
.horario-row:last-child { border-bottom: 0; }
.horario-dia { font-weight: 600; color: var(--navy-800); }
.horario-hora { font-family: 'Prata', serif; font-size: 1.15rem; color: var(--blue-500); }
.horario-row.muted .horario-dia, .horario-row.muted .horario-hora { color: #9aa2b5; }
.horario-aviso {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-top: 1.4rem;
	padding: 0.9rem 1.1rem;
	border-radius: 12px;
	background: rgba(224, 188, 114, 0.12);
	border: 1px solid rgba(185, 137, 63, 0.35);
	color: var(--gold-600);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.5;
}
.horario-aviso svg { flex-shrink: 0; margin-top: 0.15em; }

/* ---------- Contato ---------- */
.contato {
	background:
		radial-gradient(800px 400px at 10% 0%, rgba(30, 136, 229, 0.18), transparent 55%),
		linear-gradient(150deg, var(--navy-800), var(--navy-900));
	color: var(--white);
}
.contato-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; }
.contato-form {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2.4rem;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--navy-700);
	margin-bottom: 0.4rem;
}
.form-row input, .form-row select, .form-row textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1.5px solid #dfe2ea;
	border-radius: 12px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	color: var(--text);
	background: #fafbfc;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
	outline: none;
	border-color: var(--gold-500);
	box-shadow: 0 0 0 3px rgba(203, 163, 92, 0.18);
}
.form-error { color: #c0392b; font-size: 0.85rem; margin-bottom: 1rem; font-weight: 600; }
.contato-info { display: flex; flex-direction: column; gap: 1.4rem; }
.info-item h4 {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-400);
	margin-bottom: 0.3rem;
}
.info-item p { color: rgba(255, 255, 255, 0.82); }
.info-item a { color: var(--gold-300); font-weight: 600; }
.info-item a:hover { text-decoration: underline; }
.social-links { display: flex; flex-direction: column; gap: 0.7rem; }
.social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(232, 201, 126, 0.22);
	color: var(--white) !important;
	font-weight: 600;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-link:hover { border-color: rgba(232, 201, 126, 0.6); background: rgba(255, 255, 255, 0.1); transform: translateX(4px); text-decoration: none !important; }
.social-icon {
	width: 40px; height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--grad-gold);
	color: var(--navy-800);
	flex-shrink: 0;
}
.social-link > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.social-link small { color: var(--gold-300); font-weight: 500; font-size: 0.78rem; }
.mapa { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(232, 201, 126, 0.25); }
.mapa iframe { display: block; filter: saturate(0.85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.75); }
.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr;
	gap: 3rem;
	padding: 64px 0 44px;
}
.footer-brand img { width: 190px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9rem; font-weight: 300; max-width: 300px; }
.footer-col h4 {
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-400);
	margin-bottom: 1rem;
}
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-col p { font-size: 0.9rem; margin-bottom: 0.55rem; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 0.8rem; }
.footer-social a { color: rgba(255, 255, 255, 0.7); }
.footer-social a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 1.3rem 0; font-size: 0.8rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 70;
	width: 60px; height: 60px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #25D366;
	color: var(--white);
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
	transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Galeria da estrutura ---------- */
.galeria-head { text-align: center; margin: 4.5rem 0 2rem; }
.galeria-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--white); }
.galeria-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.1rem;
}
.galeria-item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(232, 201, 126, 0.22);
	aspect-ratio: 4 / 3;
	margin: 0;
}
.galeria-item.wide { grid-column: span 2; aspect-ratio: auto; }
.galeria-item.wide img { position: absolute; inset: 0; }
.galeria-item img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-item figcaption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 2.2rem 1.2rem 0.95rem;
	background: linear-gradient(0deg, rgba(8, 15, 36, 0.85), transparent);
	color: var(--white);
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.04em;
}
.galeria-item figcaption::before {
	content: '';
	display: inline-block;
	width: 22px; height: 3px;
	border-radius: 2px;
	background: var(--grad-gold);
	margin-right: 0.6rem;
	vertical-align: middle;
}

/* ---------- Novidades ---------- */
.novidades { background: var(--white); }
.novidades-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; align-items: center; }
.novidades-foto {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(11, 22, 51, 0.25);
	border: 1px solid rgba(232, 201, 126, 0.3);
	height: 100%;
	max-height: 560px;
}
.novidades-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.novidade-card {
	position: relative;
	display: flex;
	gap: 1.4rem;
	align-items: flex-start;
	background: var(--bg-light);
	border: 1px solid rgba(11, 22, 51, 0.06);
	border-radius: var(--radius);
	padding: 1.8rem 1.8rem 1.6rem;
	margin-bottom: 1.2rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.novidade-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(11, 22, 51, 0.12); }
.novidade-card .feature-icon { flex-shrink: 0; }
.novidade-card h3 { color: var(--navy-800); margin-bottom: 0.45rem; }
.novidade-card p { font-size: 0.95rem; color: #5a6580; }
.novidade-badge {
	position: absolute;
	top: -11px; right: 18px;
	background: var(--grad-gold);
	color: var(--navy-900);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.28rem 0.8rem;
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(185, 137, 63, 0.4);
}

/* ---------- Sobre: foto ---------- */
.sobre-foto {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(11, 22, 51, 0.3);
	border: 1px solid rgba(232, 201, 126, 0.3);
	position: relative;
}
.sobre-foto img { width: 100%; display: block; }
.sobre-foto::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 45%;
	background: linear-gradient(0deg, rgba(8, 15, 36, 0.72), transparent);
	pointer-events: none;
}
.sobre-foto-btn {
	position: absolute;
	left: 50%; bottom: 1.6rem;
	transform: translateX(-50%);
	z-index: 2;
	white-space: nowrap;
}
.sobre-copy .btn { margin-top: 1.8rem; }

/* ---------- Cards com foto ---------- */
.cards-photo { grid-template-columns: repeat(3, 1fr); }
.card-foto { padding: 0; overflow: hidden; }
.card-img { height: 200px; overflow: hidden; }
.card-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}
.card-foto:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.mais-modalidades {
	margin-top: 2.4rem;
	text-align: center;
	color: #5a6580;
	font-size: 0.95rem;
}
.mais-modalidades strong { color: var(--navy-800); font-weight: 600; }

/* ---------- Showcase (destaque academia) ---------- */
.showcase { position: relative; padding: 150px 0; overflow: hidden; }
.showcase-bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
}
.showcase-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(8, 15, 36, 0.93) 0%, rgba(11, 22, 51, 0.78) 50%, rgba(11, 22, 51, 0.45) 100%);
}
.showcase-inner { position: relative; max-width: 640px; color: var(--white); }
.showcase-inner h2 { color: var(--white); margin: 0.9rem 0 1rem; }
.showcase-inner p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.8rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
	.cards-grid, .cards-photo { grid-template-columns: repeat(2, 1fr); }
	.novidades-grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.novidades-foto { max-height: 420px; }
	.galeria-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
	.sobre-grid, .horarios-grid, .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.sobre-card { max-width: 480px; }
}
@media (max-width: 860px) {
	.nav-toggle { display: block; }
	.main-nav {
		position: fixed;
		top: 84px; left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--navy-900);
		border-bottom: 1px solid rgba(232, 201, 126, 0.2);
		padding: 0.6rem 4%;
		display: none;
	}
	.main-nav.open { display: flex; }
	.main-nav > a:not(.btn) { padding: 0.9rem 0.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
	.btn-nav { margin: 0.9rem 0.4rem 1rem; justify-content: center; }
	.section { padding: 72px 0; }
	.estrutura { padding: 130px 0; }
	.hero { min-height: auto; padding: 130px 0 120px; }
	.footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 560px) {
	.cards-grid, .cards-photo, .feature-grid, .stats-grid { grid-template-columns: 1fr; }
	.novidade-card { flex-direction: column; }
	.showcase { padding: 100px 0; }
	.galeria-grid { grid-template-columns: 1fr; }
	.galeria-item.wide { grid-column: auto; aspect-ratio: 4 / 3; }
	.stats-grid { padding: 1.8rem 1.4rem; }
	.hero-actions .btn { width: 100%; justify-content: center; }
	.contato-form { padding: 1.6rem; }
	.brand img { width: 138px; }
}
