@font-face {
	font-family: 'Wotfard Regular';
	src: url('fonts/Wotfard-Regular.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard Medium';
	src: url('fonts/Wotfard-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard SemiBold';
	src: url('fonts/Wotfard-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard Bold';
	src: url('fonts/Wotfard-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

:root {
	--red: #af2129;
	--red-dark: #55110f;
	--ink: #212121;
	--white: #ffffff;
	--grey-light: #f5f5f5;
	--grey-border: #e1e1e1;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Wotfard Regular", Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	font-family: "Wotfard SemiBold", Helvetica, Arial, sans-serif;
	line-height: 1.2;
	margin: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 24px 0;
	transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .logo-color { display: none; }
header .logo-white { display: block; }
header img { height: 32px; display: block; }
header a.discover {
	color: var(--white);
	font-family: "Wotfard Medium", Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-bottom: 2px solid var(--white);
	padding-bottom: 2px;
}
header.opaco {
	background: var(--white);
	padding: 14px 0;
	box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
header.opaco .logo-color { display: block; }
header.opaco .logo-white { display: none; }
header.opaco a.discover { color: var(--ink); border-color: var(--ink); }

/* hero */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #7c1a20 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 82% 18%, rgba(255,255,255,.08) 0%, transparent 45%),
		radial-gradient(circle at 15% 85%, rgba(0,0,0,.15) 0%, transparent 50%);
	pointer-events: none;
}
.hero .container { position: relative; padding-top: 100px; }
.hero .subtitulo {
	font-family: "Wotfard Medium", Helvetica, Arial, sans-serif;
	font-size: 2rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	margin-bottom: 18px;
}
.hero h1 {
	font-family: "Wotfard Bold", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 6rem;
	max-width: 820px;
}
.hero p.lead {
	max-width: 620px;
	margin-top: 24px;
	font-size: 1.9rem;
	color: rgba(255,255,255,.9);
}

/* apps grid */
.apps {
	padding: 100px 0 120px;
	background: var(--white);
}
.apps .subtitulo {
	font-family: "Wotfard Medium", Helvetica, Arial, sans-serif;
	font-size: 2rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 12px;
	text-align: center;
	display: block;
}
.apps h2 {
	text-align: center;
	font-size: 3.6rem;
	margin-bottom: 60px;
}
.app-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}
.app-card {
	border: 1px solid var(--grey-border);
	padding: 40px 32px;
	text-decoration: none;
	color: var(--ink);
	transition: all 0.25s ease;
	display: block;
	background: var(--grey-light);
}
.app-card:hover {
	border-color: var(--red);
	box-shadow: 0 12px 30px rgba(175,33,41,.12);
	transform: translateY(-4px);
}
.app-card .tag {
	font-family: "Wotfard Medium", Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--red);
	display: block;
	margin-bottom: 12px;
}
.app-card h3 {
	font-size: 2.4rem;
	margin-bottom: 12px;
}
.app-card p {
	color: #555;
	margin-bottom: 24px;
	font-size: 1.5rem;
}

/* boton (misma clase visual que gaindu.com) */
.boton {
	font-family: "Wotfard Regular", Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	line-height: 170%;
	color: var(--white) !important;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	min-width: 170px;
	padding: 16px 32px;
	border: none;
	border-radius: 0;
	background: var(--red);
	transition: all 0.25s ease;
	text-decoration: none;
}
.boton:hover {
	background: var(--ink);
	color: var(--white) !important;
}

/* footer */
footer {
	background: var(--red);
	color: var(--white);
	font-size: 1.5rem;
}
footer .top {
	padding: 60px 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}
footer .top img { height: 34px; }
footer .bottom {
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,.25);
	font-family: "Wotfard Regular", Helvetica, Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 0.15em;
	font-size: 1.2rem;
	text-transform: uppercase;
}
footer .bottom .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
footer a { color: var(--white); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,.7); }
footer .links { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }

@media (max-width: 700px) {
	.hero h1 { font-size: 3.6rem; }
	.hero .container { padding-top: 80px; }
	.apps h2 { font-size: 2.6rem; }
}
