/* ═══════════════════════════════════════════════════════
   PROJECT BARBER — PREMIUM STYLES
   Apple/Nike-inspired dark luxury aesthetic
   ═══════════════════════════════════════════════════════ */

:root {
	--bg-main: #050505;
	--bg-soft: #0c0c0c;
	--panel: #111111;
	--accent: #ffffff;
	--accent-warm: #c8a87c;
	--text: #ffffff;
	--text-muted: #999999;
	--stroke: rgba(255, 255, 255, 0.08);
	--glow: rgba(200, 168, 124, 0.15);
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 32px;
	--radius-pill: 100px;
	--ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--transition-fast: 0.3s var(--ease-smooth);
	--transition-smooth: 0.6s var(--ease-smooth);
	--transition-slow: 1s var(--ease-smooth);
}

/* ── Reset & Base ─────────────────────────────────── */

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

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 10px;
}

body {
	font-family: 'Manrope', sans-serif;
	color: var(--text);
	background: var(--bg-main);
	overflow-x: hidden;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: var(--accent-warm);
	color: var(--bg-main);
}

/* ── Custom Cursor ────────────────────────────────── */

.cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	mix-blend-mode: difference;
	transition: transform 0.15s var(--ease-smooth);
}

.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	mix-blend-mode: difference;
	transition: width 0.4s var(--ease-spring),
	height 0.4s var(--ease-spring),
	transform 0.08s linear,
	border-color 0.3s var(--ease-smooth);
}

.cursor-hover .cursor-ring {
	width: 64px;
	height: 64px;
	border-color: var(--accent-warm);
}

/* ── Reveal on Scroll Animations ──────────────────── */

.reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-80px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-scale {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal-scale.is-visible {
	opacity: 1;
	transform: scale(1);
}

.reveal-blur {
	opacity: 0;
	filter: blur(12px);
	transform: translateY(30px);
	transition: opacity 0.8s var(--ease-smooth), filter 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-blur.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Keyframes ────────────────────────────────────── */

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 20px rgba(200, 168, 124, 0), 0 8px 32px rgba(0, 0, 0, 0.3); }
	50% { box-shadow: 0 0 40px rgba(200, 168, 124, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3); }
}

@keyframes gradient-shift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

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

@keyframes line-expand {
	from { width: 0; }
	to { width: 60px; }
}

@keyframes hero-zoom {
	0% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Navbar ───────────────────────────────────────── */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 0 clamp(24px, 5vw, 80px);
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background var(--transition-fast),
	            backdrop-filter var(--transition-fast),
	            border-color var(--transition-fast),
	            height var(--transition-fast);
	border-bottom: 1px solid transparent;
}

.navbar.scrolled {
	background: rgba(5, 5, 5, 0.75);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid var(--stroke);
	height: 64px;
}

.nav-logo {
	height: 38px;
	width: auto;
	opacity: 0.9;
	transition: opacity var(--transition-fast);
}

.nav-logo:hover {
	opacity: 1;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 40px;
	align-items: center;
}

.nav-links li a {
	font-family: 'Oswald', sans-serif;
	text-decoration: none;
	color: var(--text);
	font-size: 0.8rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	opacity: 0.7;
	position: relative;
	padding: 4px 0;
	transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav-links li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent-warm);
	transition: width 0.4s var(--ease-smooth);
}

.nav-links li a:hover {
	opacity: 1;
}

.nav-links li a:hover::after {
	width: 100%;
}

/* Mobile menu button */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.nav-toggle span {
	width: 24px;
	height: 1.5px;
	background: var(--text);
	transition: var(--transition-fast);
	transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		url('media/img/hero_banner.jpg');
	background-size: cover;
	background-position: center;
	animation: hero-zoom 18s var(--ease-smooth) forwards;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg,
			rgba(5, 5, 5, 0.3) 0%,
			rgba(5, 5, 5, 0.55) 40%,
			rgba(5, 5, 5, 0.85) 75%,
			rgba(5, 5, 5, 1) 100%
		);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 120px 24px 80px;
}

.hero-logo {
	width: clamp(160px, 28vw, 340px);
	height: auto;
	display: block;
	margin: 0 auto 40px;
	animation: fade-in-up 1s var(--ease-smooth) 0.2s both;
	filter: drop-shadow(0 0 60px rgba(200, 168, 124, 0.12));
}

.hero-title {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: clamp(1.6rem, 4.5vw, 3.2rem);
	letter-spacing: 3px;
	line-height: 1.1;
	font-weight: 700;
	animation: fade-in-up 1s var(--ease-smooth) 0.5s both;
}

.hero-tagline {
	margin-top: 24px;
	font-size: clamp(0.9rem, 1.8vw, 1.15rem);
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 400;
	animation: fade-in-up 1s var(--ease-smooth) 0.8s both;
	background: linear-gradient(90deg, var(--text-muted), var(--accent-warm), var(--text-muted));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fade-in-up 1s var(--ease-smooth) 0.8s both, gradient-shift 6s ease infinite;
}

.hero-buttons {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	animation: fade-in-up 1s var(--ease-smooth) 1.1s both;
}

/* ── Decorative line ──────────────────────────────── */

.section-line {
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent-warm), transparent);
	margin: 0 auto 40px;
}

/* ── Buttons ──────────────────────────────────────── */

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	background: #fff;
	color: #000;
	border: 1px solid #fff;
	transition: transform var(--transition-fast),
	            box-shadow var(--transition-fast),
	            background var(--transition-fast),
	            color var(--transition-fast);
	position: relative;
	overflow: hidden;
}

.btn-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, var(--accent-warm), #e8d5b7);
	opacity: 0;
	transition: opacity var(--transition-fast);
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(200, 168, 124, 0.25), 0 0 0 1px rgba(200, 168, 124, 0.3);
}

.btn-cta:hover::before {
	opacity: 1;
}

.btn-cta span {
	position: relative;
	z-index: 1;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.03);
	transition: transform var(--transition-fast),
	            border-color var(--transition-fast),
	            background var(--transition-fast),
	            box-shadow var(--transition-fast);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ── Marquee ──────────────────────────────────────── */

.marquee-wrapper {
	overflow: hidden;
	padding: 40px 0;
	border-top: 1px solid var(--stroke);
	border-bottom: 1px solid var(--stroke);
	background: var(--bg-main);
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 30s linear infinite;
}

.marquee-track span {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(1rem, 2.5vw, 1.4rem);
	text-transform: uppercase;
	letter-spacing: 6px;
	color: rgba(255, 255, 255, 0.08);
	white-space: nowrap;
	padding: 0 50px;
}

/* ── Section: Tu estilo ───────────────────────────── */

.section-firma {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 80vh;
	gap: 0;
}

.firma-text {
	padding: clamp(60px, 10vw, 140px) clamp(30px, 8vw, 120px);
}

.firma-label {
	font-family: 'Oswald', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--accent-warm);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.firma-label::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--accent-warm);
}

.firma-text h2 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1;
	letter-spacing: 1px;
	margin-bottom: 28px;
}

.firma-text .train-text {
	color: var(--text-muted);
	max-width: 480px;
	font-size: 1rem;
	line-height: 1.8;
}

.firma-text .seo-copy {
	color: var(--text-muted);
	max-width: 480px;
	margin-top: 16px;
	font-size: 0.95rem;
	line-height: 1.8;
}

.firma-cta {
	margin-top: 40px;
}

.firma-image {
	position: relative;
	height: 100%;
	min-height: 600px;
	overflow: hidden;
}

.firma-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease-smooth);
}

.firma-image:hover img {
	transform: scale(1.04);
}

.firma-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--bg-main) 0%, transparent 30%);
	pointer-events: none;
}

/* ── Section: Barberos ────────────────────────────── */

.section-barberos {
	padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
	text-align: center;
}

.section-barberos h2 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: clamp(2.2rem, 5vw, 4rem);
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 64px;
}

.barbers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

/* ── Barber Card (Nike-style hover reveal) ────────── */

.barber-card {
	position: relative;
	height: 520px;
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
}

.barber-card-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	transition: transform 0.8s var(--ease-smooth);
}

.barber-card:hover .barber-card-image {
	transform: scale(1.08);
}

.barber-luis .barber-card-image { background-image: url('media/img/luis.jpeg'); }
.barber-nacho .barber-card-image { background-image: url('media/img/nacho.jpeg'); }
.barber-ramon .barber-card-image { background-image: url('media/img/ramon.jpeg'); }

.barber-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.4) 40%,
		rgba(0, 0, 0, 0.1) 70%,
		transparent 100%
	);
	z-index: 1;
	transition: background var(--transition-smooth);
}

.barber-card:hover .barber-card-overlay {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.98) 0%,
		rgba(0, 0, 0, 0.6) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
}

.barber-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 30px;
	z-index: 2;
	transform: translateY(30px);
	transition: transform 0.6s var(--ease-smooth);
}

.barber-card:hover .barber-card-info {
	transform: translateY(0);
}

.barber-card-info h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 4px;
}

.barber-card-role {
	font-family: 'Oswald', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--accent-warm);
	margin-bottom: 16px;
}

.barber-card-desc {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.7;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s var(--ease-smooth) 0.1s, transform 0.5s var(--ease-smooth) 0.1s;
}

.barber-card:hover .barber-card-desc {
	opacity: 1;
	transform: translateY(0);
}

.barber-card-icon {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.barber-card:hover .barber-card-icon {
	opacity: 1;
	transform: translateY(0);
}

.barber-card-icon i {
	font-size: 0.9rem;
	color: var(--accent-warm);
}

/* ── Footer ───────────────────────────────────────── */

footer {
	background: var(--bg-soft);
	border-top: 1px solid var(--stroke);
	padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 80px) 40px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 60px;
}

.footer-col h3 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 1.1rem;
	margin-bottom: 28px;
	color: var(--text);
}

.footer-col p {
	color: var(--text-muted);
	margin-bottom: 14px;
	font-size: 0.9rem;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-col i {
	color: var(--accent-warm);
	width: 18px;
	text-align: center;
	flex-shrink: 0;
	margin-top: 4px;
	transition: transform var(--transition-fast);
}

.footer-col p:hover i {
	transform: scale(1.2);
}

.footer-col .btn-cta {
	margin-top: 10px;
}

/* Schedule Grid */
.schedule-grid {
	display: grid;
	gap: 0;
}

.schedule-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: background var(--transition-fast), padding var(--transition-fast);
}

.schedule-row:hover {
	background: rgba(255, 255, 255, 0.02);
	padding-left: 8px;
	padding-right: 8px;
}

.day {
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.hours {
	color: var(--text-muted);
	font-size: 0.85rem;
}

.closed {
	color: #e07474;
	font-weight: 700;
}

/* Footer bottom */
.footer-bottom {
	max-width: 1200px;
	margin: 60px auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--stroke);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	letter-spacing: 1px;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: border-color var(--transition-fast),
	            color var(--transition-fast),
	            transform var(--transition-fast),
	            background var(--transition-fast);
}

.footer-social a:hover {
	border-color: var(--accent-warm);
	color: var(--accent-warm);
	transform: translateY(-3px);
	background: rgba(200, 168, 124, 0.08);
}

/* ── Grain / Texture Overlay ──────────────────────── */

.grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	mix-blend-mode: overlay;
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 1024px) {
	.section-firma {
		grid-template-columns: 1fr;
	}

	.firma-image {
		min-height: 400px;
		order: -1;
	}

	.firma-image::after {
		background: linear-gradient(to top, var(--bg-main) 0%, transparent 40%);
	}

	.barbers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 20px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 32px;
		background: rgba(5, 5, 5, 0.97);
		backdrop-filter: blur(24px);
		transition: right 0.5s var(--ease-smooth);
	}

	.nav-links.open {
		right: 0;
	}

	.nav-links li a {
		font-size: 1.2rem;
		letter-spacing: 6px;
	}

	/* Hide custom cursor on mobile */
	.cursor-dot,
	.cursor-ring {
		display: none;
	}

	.barbers-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.barber-card {
		height: 440px;
	}

	.barber-card-desc {
		opacity: 1;
		transform: translateY(0);
	}

	.barber-card-icon {
		opacity: 1;
		transform: translateY(0);
	}

	.barber-card-info {
		transform: translateY(0);
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-cta,
	.btn-ghost {
		width: min(300px, 100%);
		justify-content: center;
	}

	.footer-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.footer-col p {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.firma-text {
		text-align: center;
	}

	.firma-text .train-text,
	.firma-text .seo-copy {
		margin-left: auto;
		margin-right: auto;
	}

	.firma-label {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		letter-spacing: 1px;
	}
	
	.barber-card {
		height: 400px;
	}
}
