@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: italic;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/inter-latin-italic.woff2") format("woff2");
}

:root {
	/* Fallbacks mirror Lovable src/index.css (HSL design tokens → hex). */
	--ttch-background: #faf9f7;
	--ttch-background-rgb: 250 249 247;
	--ttch-foreground: #211e1c;
	--ttch-foreground-rgb: 33 30 28;
	--ttch-card: #f5f4f1;
	--ttch-card-rgb: 245 244 241;
	--ttch-primary: #c2410c;
	--ttch-primary-rgb: 194 65 12;
	--ttch-primary_foreground: #ffffff;
	--ttch-primary_foreground-rgb: 255 255 255;
	--ttch-muted_foreground: #6f6a67;
	--ttch-muted_foreground-rgb: 111 106 103;
	--ttch-border: #e4e1de;
	--ttch-border-rgb: 228 225 222;
	--ttch-footer_background: #faf6ef;
	--ttch-footer_background-rgb: 250 246 239;
	--ttch-white-rgb: 255 255 255;
	--ttch-black-rgb: 0 0 0;
	--ttch-shadow-soft: 0 2px 16px -4px hsl(20 10% 10% / 0.05);
	--ttch-shadow-elevated: 0 8px 32px -8px hsl(20 10% 10% / 0.08);
	/* Mismo valor que tailwind.config.ts boxShadow.card / card-hover (hover:shadow-card-hover) */
	--ttch-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
	--ttch-shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
	--ttch-radius: 0.75rem;
	--ttch-radius-card: 1rem;
	--ttch-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	/* Lovable @layer base * { @apply border-border } */
	border-color: var(--ttch-border);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ttch-background);
	color: var(--ttch-foreground);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	letter-spacing: -0.02em;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container-wide,
.ttch-container {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding-inline: 1.5rem;
}

/* Lovable Header: fixed z-50 transition-all duration-500; scrolled → bg-background/80 backdrop-blur-xl border-border/50 */
.ttch-site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: var(--ttch-background);
	transition:
		background-color 0.5s var(--ttch-transition),
		-webkit-backdrop-filter 0.5s var(--ttch-transition),
		backdrop-filter 0.5s var(--ttch-transition),
		border-color 0.5s var(--ttch-transition);
}

.ttch-site-header.is-scrolled {
	background: rgb(var(--ttch-background-rgb) / 0.8);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	border-bottom: 1px solid rgb(var(--ttch-border-rgb) / 0.5);
}

.ttch-main-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
	transition: height 0.5s var(--ttch-transition);
}

.ttch-site-header.is-scrolled .ttch-main-nav {
	height: 4rem;
}

.ttch-site-logo,
.ttch-footer-logo-link {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.ttch-site-logo img,
.ttch-footer-logo {
	height: 2.5rem;
	width: auto;
}

.ttch-desktop-nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

.ttch-nav-link {
	position: relative;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgb(var(--ttch-foreground-rgb) / 0.7);
	transition: color 0.3s var(--ttch-transition);
}

.ttch-nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.125rem;
	height: 1px;
	background: var(--ttch-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ttch-transition);
}

.ttch-nav-link:hover,
.ttch-nav-link:focus-visible {
	color: var(--ttch-foreground);
}

.ttch-nav-link:hover::after,
.ttch-nav-link:focus-visible::after {
	transform: scaleX(1);
}

.ttch-search-form {
	position: relative;
	margin-left: 0.5rem;
}

.ttch-search-icon {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	width: 1rem;
	height: 1rem;
	transform: translateY(-50%);
	color: var(--ttch-muted_foreground);
}

.ttch-search-icon svg,
.ttch-inline-icon svg,
.ttch-mobile-menu-icon-open svg,
.ttch-mobile-menu-icon-close svg,
.ttch-resource-card-arrow svg,
.ttch-modal-icon svg,
.ttch-platform-toggle-icons svg,
.ttch-platform-link-leading svg,
.ttch-platform-link-trailing svg,
.ttch-faq-chevron svg,
.ttch-contact-submit-icon svg,
.ttch-contact-feedback-icon svg {
	width: 100%;
	height: 100%;
}

/*
 * Lovable Header Input (shadcn + Tailwind): flex h-9 w-44 pl-9 pr-3 rounded-full
 * border-border/60 bg-background/80 focus:w-56 transition-all
 * focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 ring-offset-background
 */
.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"] {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 2.25rem;
	width: 11rem;
	min-width: 0;
	margin: 0;
	padding: 0.125rem 0.75rem 0.125rem 2.25rem;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 9999px;
	border-width: 1px;
	border-style: solid;
	/* border-border/60: visible on warm backgrounds (plain rgba was easy to miss). */
	border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent);
	background-color: color-mix(in srgb, var(--ttch-background) 80%, transparent);
	background-clip: padding-box;
	color: var(--ttch-foreground);
	font-size: 0.875rem;
	line-height: 1.25rem;
	cursor: text;
	transition: width 0.3s var(--ttch-transition), border-color 0.2s var(--ttch-transition), box-shadow 0.2s var(--ttch-transition);
}

.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"]::placeholder {
	color: var(--ttch-muted_foreground);
}

.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"]:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"]:focus,
.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"]:focus-visible {
	outline: none;
	width: 14rem;
	border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent);
	box-shadow: 0 0 0 2px rgb(var(--ttch-background-rgb)), 0 0 0 4px rgba(var(--ttch-primary-rgb), 0.5);
}

@supports not (border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent)) {
	.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"] {
		border-color: rgba(var(--ttch-border-rgb), 0.72);
		background-color: rgba(var(--ttch-background-rgb), 0.8);
	}

	.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"]:focus,
	.ttch-site-header .ttch-desktop-nav form.ttch-search-form input.ttch-search-input[type="text"]:focus-visible {
		border-color: rgba(var(--ttch-border-rgb), 0.72);
	}
}

.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"] {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 2.5rem;
	margin: 0;
	padding: 0.125rem 0.75rem 0.125rem 2.25rem;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 9999px;
	border-width: 1px;
	border-style: solid;
	border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent);
	background-color: color-mix(in srgb, var(--ttch-background) 80%, transparent);
	background-clip: padding-box;
	color: var(--ttch-foreground);
	font-size: 0.875rem;
	line-height: 1.25rem;
	cursor: text;
	transition: border-color 0.2s var(--ttch-transition), box-shadow 0.2s var(--ttch-transition);
}

.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"]::placeholder {
	color: var(--ttch-muted_foreground);
}

.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"]:focus,
.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"]:focus-visible {
	outline: none;
	border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent);
	box-shadow: 0 0 0 2px rgb(var(--ttch-background-rgb)), 0 0 0 4px rgba(var(--ttch-primary-rgb), 0.5);
}

@supports not (border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent)) {
	.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"] {
		border-color: rgba(var(--ttch-border-rgb), 0.72);
		background-color: rgba(var(--ttch-background-rgb), 0.8);
	}

	.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"]:focus,
	.ttch-site-header .ttch-mobile-menu form.ttch-search-form input.ttch-search-input[type="text"]:focus-visible {
		border-color: rgba(var(--ttch-border-rgb), 0.72);
	}
}

.ttch-mobile-nav-toggle-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ttch-mobile-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(var(--ttch-foreground-rgb), 0.7);
}

.ttch-mobile-menu-icon-open,
.ttch-mobile-menu-icon-close {
	width: 1.25rem;
	height: 1.25rem;
}

.ttch-mobile-menu-icon-close {
	display: none;
}

.ttch-mobile-nav-toggle[aria-expanded="true"] .ttch-mobile-menu-icon-open {
	display: none;
}

.ttch-mobile-nav-toggle[aria-expanded="true"] .ttch-mobile-menu-icon-close {
	display: block;
}

.ttch-mobile-menu {
	border-top: 1px solid rgb(var(--ttch-border-rgb) / 0.5);
	background: rgb(var(--ttch-background-rgb) / 0.95);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
}

.ttch-mobile-menu-inner {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-block: 1rem;
}

.ttch-mobile-search-form {
	margin: 0 0 0.75rem;
}

.ttch-mobile-nav-link {
	padding-block: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgb(var(--ttch-foreground-rgb) / 0.7);
	transition: color 0.3s var(--ttch-transition);
}

.ttch-site-main {
	display: block;
}

.ttch-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 85vh;
	margin-top: 5rem;
	overflow: hidden;
	border-bottom-right-radius: 2rem;
	border-bottom-left-radius: 2rem;
}

.ttch-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ttch-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}

.ttch-hero-video.is-active {
	opacity: 1;
}

/* Lovable HeroSection: absolute inset-0 bg-black/40 */
.ttch-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgb(0 0 0 / 0.4);
	pointer-events: none;
}

.ttch-hero-content-wrap {
	position: relative;
	z-index: 10;
	padding-top: 8rem;
	padding-bottom: 5rem;
}

.ttch-hero-content {
	max-width: 42rem;
}

/* Lovable HeroSection badge: text-xs font-semibold tracking-widest uppercase px-4 py-1.5 rounded-full bg-white/10 backdrop-blur-md text-white/90 mb-6 */
.ttch-hero-badge {
	display: inline-block;
	margin: 0 0 1.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	background-color: rgb(255 255 255 / 0.1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	color: rgb(255 255 255 / 0.9);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ttch-hero-title {
	margin: 0 0 1.5rem;
	color: var(--ttch-primary_foreground);
	font-size: clamp(3rem, 8vw, 8rem);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.02em;
}

/* Lovable: text-white/80 text-lg md:text-xl max-w-xl leading-relaxed mb-10 */
.ttch-hero-description {
	max-width: 36rem;
	margin: 0 0 2.5rem;
	color: rgb(255 255 255 / 0.8);
	font-size: 1.125rem;
	line-height: 1.625;
}

@media (min-width: 768px) {
	.ttch-hero-description {
		font-size: 1.25rem;
	}
}

.ttch-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Lovable HeroSection — Button size="lg" (rounded-full, h-11). */
.ttch-hero .ttch-button {
	min-height: 2.75rem;
	padding: 0.625rem 2rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
}

.ttch-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.875rem;
	border: 1px solid transparent;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	transition: all 0.3s var(--ttch-transition);
}

.ttch-button-primary {
	background: var(--ttch-primary);
	color: var(--ttch-primary_foreground);
}

/* Hover opaco: mezcla con negro en lugar de alpha sobre el hero */
.ttch-button-primary:hover {
	background: color-mix(in srgb, var(--ttch-primary) 90%, black);
	color: var(--ttch-primary_foreground);
}

@supports not (background: color-mix(in srgb, red 90%, black)) {
	.ttch-button-primary:hover {
		background: var(--ttch-primary);
		box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1);
	}
}

.ttch-button-secondary {
	background: transparent;
	border-color: rgba(var(--ttch-white-rgb), 1);
	color: var(--ttch-primary_foreground);
}

.ttch-button-secondary:hover {
	background: rgba(var(--ttch-white-rgb), 0.2);
}

.ttch-section {
	padding-block: 6rem;
}

.ttch-section-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.ttch-section-kicker {
	margin: 0 0 0.75rem;
	color: var(--ttch-primary);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Default section title (hub / guides / faq); About overrides via .ttch-about-section .ttch-section-title */
.ttch-section-title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

/* Lovable ResourceHub & al.: text-3xl md:text-5xl tracking-tight font-bold mb-6 */
.ttch-section-heading > .ttch-section-title {
	margin: 0 0 1.5rem;
	font-size: 1.875rem;
	line-height: 1.1;
	letter-spacing: -0.025em;
}

@media (min-width: 768px) {
	.ttch-section-heading > .ttch-section-title {
		font-size: 3rem;
		line-height: 1.08;
	}
}

.ttch-section-description {
	max-width: 36rem;
	margin: 1rem auto 0;
	color: var(--ttch-muted_foreground);
	line-height: 1.625;
}

/* Lovable ResourceHub — centered search (max-w-md). */
.ttch-resource-hub .ttch-section-heading .ttch-search-form {
	max-width: 28rem;
	margin-inline: auto;
}

.ttch-resource-hub .ttch-section-heading .ttch-search-form .ttch-search-icon {
	left: 1rem;
}

/* Lovable ResourceHub: w-full pl-10 pr-4 py-3 rounded-full border-border/60 + focus ring */
.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"] {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	min-height: 2.875rem;
	margin: 0;
	padding: 0.75rem 1rem 0.75rem 2.5rem;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 9999px;
	border-width: 1px;
	border-style: solid;
	border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent);
	background-color: color-mix(in srgb, var(--ttch-background) 80%, transparent);
	background-clip: padding-box;
	color: var(--ttch-foreground);
	font-size: 0.875rem;
	line-height: 1.25rem;
	cursor: text;
	transition: border-color 0.2s var(--ttch-transition), box-shadow 0.2s var(--ttch-transition);
}

.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"]::placeholder {
	color: var(--ttch-muted_foreground);
}

.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"]:focus,
.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"]:focus-visible {
	outline: none;
	border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent);
	box-shadow: 0 0 0 2px rgb(var(--ttch-background-rgb)), 0 0 0 4px rgba(var(--ttch-primary-rgb), 0.5);
}

@supports not (border-color: color-mix(in srgb, var(--ttch-border) 60%, transparent)) {
	.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"] {
		border-color: rgba(var(--ttch-border-rgb), 0.72);
		background-color: rgba(var(--ttch-background-rgb), 0.8);
	}

	.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"]:focus,
	.ttch-resource-hub .ttch-section-heading form.ttch-search-form input[type="text"]:focus-visible {
		border-color: rgba(var(--ttch-border-rgb), 0.72);
	}
}

.ttch-break {
	display: none;
}

.ttch-resource-grid,
.ttch-platform-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 64rem;
	margin: 0 auto;
}

.ttch-resource-card {
	transform-style: preserve-3d;
}

.ttch-resource-card-inner,
.ttch-platform-shell {
	border: 1px solid rgba(var(--ttch-border-rgb), 0.5);
	border-radius: var(--ttch-radius-card);
	background: var(--ttch-card);
}

.ttch-faq-item {
	border: 1px solid rgba(var(--ttch-border-rgb), 0.5);
	border-radius: var(--ttch-radius);
	background: var(--ttch-card);
}

.ttch-resource-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem;
	cursor: pointer;
	transition: transform 0.5s var(--ttch-transition), box-shadow 0.5s var(--ttch-transition), border-color 0.5s var(--ttch-transition);
}

.ttch-resource-card:hover .ttch-resource-card-inner {
	border-color: rgba(var(--ttch-primary-rgb), 0.2);
	box-shadow: var(--ttch-shadow-card-hover);
	transform: translateY(-0.25rem);
}

/*
 * Lovable ResourceHub icon shell: w-14 h-14 rounded-2xl bg-primary/10 flex items-center justify-center
 * mb-6 group-hover:bg-primary/20 transition-colors duration-300
 */
.ttch-resource-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 0 1.5rem;
	border-radius: 1rem;
	background-color: color-mix(in srgb, var(--ttch-primary) 10%, transparent);
	color: var(--ttch-primary);
	transition: background-color 0.3s var(--ttch-transition);
}

.ttch-resource-card:hover .ttch-resource-card-icon {
	background-color: color-mix(in srgb, var(--ttch-primary) 20%, transparent);
}

@supports not (background-color: color-mix(in srgb, var(--ttch-primary) 10%, transparent)) {
	.ttch-resource-card-icon {
		background-color: rgba(var(--ttch-primary-rgb), 0.1);
	}

	.ttch-resource-card:hover .ttch-resource-card-icon {
		background-color: rgba(var(--ttch-primary-rgb), 0.2);
	}
}

/* Lovable: Icon w-7 h-7 inside w-14 h-14 wrapper (not full-bleed SVG). */
.ttch-resource-card-icon svg {
	width: 1.75rem;
	height: 1.75rem;
	flex-shrink: 0;
}

.ttch-resource-card-title {
	margin: 0 0 0.75rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.ttch-platform-title {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.ttch-resource-card-description,
.ttch-platform-description,
.ttch-faq-answer {
	color: var(--ttch-muted_foreground);
	font-size: 0.875rem;
	line-height: 1.7;
}

.ttch-resource-card-description {
	flex: 1 1 auto;
	margin: 0 0 1.5rem;
}

.ttch-resource-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ttch-resource-card-count {
	color: var(--ttch-primary);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ttch-resource-card-arrow {
	width: 1rem;
	height: 1rem;
	color: var(--ttch-muted_foreground);
	transition: color 0.3s var(--ttch-transition), transform 0.3s var(--ttch-transition);
}

.ttch-resource-card:hover .ttch-resource-card-arrow {
	color: var(--ttch-primary);
	transform: translateX(0.25rem);
}

.ttch-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(var(--ttch-black-rgb), 0.5);
	backdrop-filter: blur(4px);
}

/* Author `display` overrides the default hiding for [hidden]; keep overlay off-screen until opened. */
.ttch-modal-overlay[hidden] {
	display: none !important;
}

.ttch-modal {
	width: 100%;
	max-width: 24rem;
	padding: 2rem;
	border: 1px solid var(--ttch-border);
	border-radius: var(--ttch-radius-card);
	background: var(--ttch-card);
	box-shadow: 0 20px 50px hsl(20 10% 10% / 0.16);
	text-align: center;
}

.ttch-modal .ttch-button-primary {
	min-height: 0;
	padding: 0.625rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
}

.ttch-modal-icon,
.ttch-contact-feedback-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: rgba(var(--ttch-primary-rgb), 0.1);
	color: var(--ttch-primary);
}

.ttch-modal h3 {
	margin: 0 0 0.5rem;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.ttch-modal p {
	margin: 0 0 1.5rem;
	color: var(--ttch-muted_foreground);
	font-size: 0.875rem;
	line-height: 1.7;
}

.ttch-platform-shell {
	overflow: hidden;
	transition: border-color 0.3s var(--ttch-transition), box-shadow 0.3s var(--ttch-transition);
}

.ttch-platform-card.is-open .ttch-platform-shell {
	border-color: rgba(var(--ttch-primary-rgb), 0.3);
	box-shadow: var(--ttch-shadow-card-hover);
}

.ttch-platform-shell:hover {
	border-color: rgba(var(--ttch-primary-rgb), 0.2);
	box-shadow: var(--ttch-shadow-card-hover);
}

.ttch-platform-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.5rem;
	border: 0;
	background: transparent;
	text-align: left;
}

.ttch-platform-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.ttch-platform-description {
	margin: 0;
}

.ttch-platform-toggle-icons {
	position: relative;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 1rem;
	color: var(--ttch-muted_foreground);
	flex-shrink: 0;
}

.ttch-platform-icon-open {
	display: none;
}

.ttch-platform-card.is-open .ttch-platform-icon-open {
	display: block;
}

.ttch-platform-card.is-open .ttch-platform-icon-closed {
	display: none;
}

.ttch-platform-panel {
	overflow: hidden;
}

.ttch-platform-links {
	padding: 0 1.5rem 1.5rem;
}

.ttch-platform-links::before {
	content: "";
	display: block;
	height: 1px;
	margin-bottom: 1rem;
	background: rgba(var(--ttch-border-rgb), 0.5);
}

.ttch-platform-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.75rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	color: rgba(var(--ttch-foreground-rgb), 0.8);
	transition: color 0.3s var(--ttch-transition), background-color 0.3s var(--ttch-transition);
}

.ttch-platform-link:hover {
	background: rgba(var(--ttch-primary-rgb), 0.05);
	color: var(--ttch-primary);
}

.ttch-platform-link-leading,
.ttch-platform-link-trailing {
	width: 1rem;
	height: 1rem;
	color: var(--ttch-muted_foreground);
	flex-shrink: 0;
}

.ttch-platform-link-label {
	flex: 1 1 auto;
}

.ttch-platform-link-type {
	color: var(--ttch-muted_foreground);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Lovable AboutSection: section container-wide py-24; inner max-w-3xl mx-auto */
.ttch-about-section {
	padding-block: 6rem;
}

.ttch-about-inner {
	max-width: 48rem;
	margin: 0 auto;
}

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

.ttch-about-section .ttch-section-kicker {
	letter-spacing: 0.1em;
}

.ttch-about-section .ttch-section-title {
	margin: 0 0 1.5rem;
	font-size: 1.875rem;
	line-height: 1.15;
}

@media (min-width: 768px) {
	.ttch-about-section .ttch-section-title {
		font-size: 3rem;
		line-height: 1.1;
	}
}

.ttch-about-paragraphs {
	display: grid;
	gap: 1rem;
	margin: 0;
	color: var(--ttch-muted_foreground);
	font-size: 1rem;
	line-height: 1.625;
}

.ttch-about-paragraphs p {
	margin: 0;
}

.ttch-quote-card {
	max-width: 32rem;
	margin: 2.5rem auto 0;
	padding: 1.5rem;
	border-radius: 1rem;
	border-width: 1px;
	border-style: solid;
	border-color: color-mix(in srgb, var(--ttch-primary) 10%, transparent);
	background-color: color-mix(in srgb, var(--ttch-primary) 5%, transparent);
}

.ttch-quote-copy {
	margin: 0 0 1.25rem;
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.625;
	color: color-mix(in srgb, var(--ttch-foreground) 80%, transparent);
}

@supports not (border-color: color-mix(in srgb, var(--ttch-primary) 10%, transparent)) {
	.ttch-quote-card {
		border-color: rgba(var(--ttch-primary-rgb), 0.1);
		background-color: rgba(var(--ttch-primary-rgb), 0.05);
	}

	.ttch-quote-copy {
		color: rgba(var(--ttch-foreground-rgb), 0.8);
	}
}

.ttch-quote-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.ttch-quote-avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	object-fit: cover;
}

.ttch-quote-author-copy {
	text-align: left;
}

.ttch-quote-author-name {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
}

.ttch-quote-author-role {
	margin: 0;
	color: var(--ttch-muted_foreground);
	font-size: 0.75rem;
}

.ttch-parallax-divider {
	position: relative;
	height: 40vh;
	overflow: hidden;
}

.ttch-parallax-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 130%;
	object-fit: cover;
	transform: translate3d(0, -15%, 0);
	will-change: transform;
}

.ttch-parallax-overlay {
	position: absolute;
	inset: 0;
	background: rgba(var(--ttch-black-rgb), 0.3);
}

.ttch-faq-list {
	max-width: 48rem;
	margin: 0 auto;
}

.ttch-faq-item + .ttch-faq-item {
	margin-top: 0.75rem;
}

.ttch-faq-item.is-open {
	box-shadow: var(--ttch-shadow-soft);
}

.ttch-faq-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 1.5rem;
	border: 0;
	background: transparent;
	text-align: left;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ttch-foreground);
}

.ttch-faq-trigger:hover {
	color: var(--ttch-primary);
}

.ttch-faq-question {
	padding-right: 1rem;
}

.ttch-faq-chevron {
	width: 1rem;
	height: 1rem;
	color: var(--ttch-muted_foreground);
	flex-shrink: 0;
	transition: transform 0.2s var(--ttch-transition);
}

.ttch-faq-item.is-open .ttch-faq-chevron {
	transform: rotate(180deg);
}

.ttch-faq-panel {
	overflow: hidden;
}

.ttch-faq-answer {
	margin: 0;
	padding: 0 1.5rem 1.25rem;
}

/* Lovable ContactSection: container-wide py-24 > max-w-4xl mx-auto > bg-primary rounded-3xl p-10 md:p-16 */
.ttch-contact-section {
	padding-block: 6rem;
}

.ttch-contact-wrap {
	max-width: 56rem;
	margin-inline: auto;
}

/*
 * Lovable: bg-primary = hsl(var(--primary)) con --primary: 14 80% 40%
 * Fallback explícito + var() por si :root del Customizer no carga.
 */
.ttch-contact-shell {
	position: relative;
	isolation: isolate;
	padding: 2.5rem;
	border-radius: 1.5rem;
	overflow: hidden;
	background-color: hsl(14 80% 40%);
	background-color: var(--ttch-primary, hsl(14 80% 40%));
}

@media (min-width: 768px) {
	.ttch-contact-shell {
		padding: 4rem;
	}
}

/* Lovable: absolute blobs bg-primary-foreground/10 y /5, debajo del contenido */
.ttch-contact-orb {
	position: absolute;
	z-index: 0;
	border-radius: 999px;
	pointer-events: none;
}

.ttch-contact-orb-top {
	top: -5rem;
	right: -5rem;
	width: 16rem;
	height: 16rem;
	background: hsl(0 0% 100% / 0.1);
}

.ttch-contact-orb-bottom {
	left: -3rem;
	bottom: -3rem;
	width: 10rem;
	height: 10rem;
	background: hsl(0 0% 100% / 0.05);
}

.ttch-contact-inner {
	position: relative;
	z-index: 10;
}

.ttch-contact-heading {
	margin: 0 auto 2.5rem;
	text-align: center;
}

.ttch-contact-title,
.ttch-contact-feedback-text {
	color: var(--ttch-primary_foreground);
}

/* Lovable: text-3xl md:text-4xl tracking-tight mb-3 */
.ttch-contact-title {
	margin: 0 0 0.75rem;
	font-size: 1.875rem;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.ttch-contact-title {
		font-size: 2.25rem;
		line-height: 1.1;
	}
}

/* Lovable: text-primary-foreground/70 max-w-md mx-auto (text-base / leading-normal ≈ 1.5) */
.ttch-contact-description {
	max-width: 28rem;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.5;
	color: color-mix(in srgb, var(--ttch-primary_foreground) 70%, transparent);
}

@supports not (color: color-mix(in srgb, white 70%, transparent)) {
	.ttch-contact-description {
		color: rgba(var(--ttch-primary_foreground-rgb), 0.7);
	}
}

.ttch-contact-feedback {
	padding-block: 2rem;
	text-align: center;
}

.ttch-contact-feedback-icon {
	margin-inline: auto;
	background: var(--ttch-primary_foreground);
	color: var(--ttch-primary);
}

.ttch-contact-feedback-text {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 500;
}

/* Lovable: form space-y-4 max-w-lg mx-auto */
.ttch-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 32rem;
	margin: 0 auto;
}

.ttch-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

/*
 * Lovable Input: h-12 rounded-xl bg-primary-foreground/10 border-primary-foreground/20
 * text-primary-foreground placeholder/50 focus:border/40 — base Input: text-base md:text-sm px-3 py-2
 */
.ttch-contact-form input[type="text"],
.ttch-contact-form input[type="email"] {
	width: 100%;
	height: 3rem;
	box-sizing: border-box;
	padding: 0.5rem 0.75rem;
	border: 1px solid hsl(0 0% 100% / 0.2);
	border-radius: 0.75rem;
	background: hsl(0 0% 100% / 0.1);
	color: var(--ttch-primary_foreground);
	font-size: 1rem;
	line-height: 1.5rem;
	transition: border-color 0.2s var(--ttch-transition), background-color 0.2s var(--ttch-transition);
}

@media (min-width: 768px) {
	.ttch-contact-form input[type="text"],
	.ttch-contact-form input[type="email"] {
		font-size: 0.875rem;
		line-height: 1.25rem;
	}
}

.ttch-contact-form input[type="text"],
.ttch-contact-form input[type="email"] {
	border-color: color-mix(in srgb, var(--ttch-primary_foreground) 20%, transparent);
	background: color-mix(in srgb, var(--ttch-primary_foreground) 10%, transparent);
}

@supports not (border-color: color-mix(in srgb, white 20%, transparent)) {
	.ttch-contact-form input[type="text"],
	.ttch-contact-form input[type="email"] {
		border-color: rgba(var(--ttch-primary_foreground-rgb), 0.2);
		background: rgba(var(--ttch-primary_foreground-rgb), 0.1);
	}
}

/* Lovable textarea: w-full px-4 py-3 rounded-xl text-sm border … */
.ttch-contact-form textarea {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.75rem 1rem;
	min-height: calc(4 * 1.25rem + 1.5rem + 2px);
	border: 1px solid hsl(0 0% 100% / 0.2);
	border-radius: 0.75rem;
	background: hsl(0 0% 100% / 0.1);
	color: var(--ttch-primary_foreground);
	font-size: 0.875rem;
	line-height: 1.25rem;
	resize: none;
	transition: border-color 0.2s var(--ttch-transition), background-color 0.2s var(--ttch-transition);
}

.ttch-contact-form textarea {
	border-color: color-mix(in srgb, var(--ttch-primary_foreground) 20%, transparent);
	background: color-mix(in srgb, var(--ttch-primary_foreground) 10%, transparent);
}

@supports not (border-color: color-mix(in srgb, white 20%, transparent)) {
	.ttch-contact-form textarea {
		border-color: rgba(var(--ttch-primary_foreground-rgb), 0.2);
		background: rgba(var(--ttch-primary_foreground-rgb), 0.1);
	}
}

.ttch-contact-form input::placeholder,
.ttch-contact-form textarea::placeholder {
	color: color-mix(in srgb, var(--ttch-primary_foreground) 50%, transparent);
}

@supports not (color: color-mix(in srgb, white 50%, transparent)) {
	.ttch-contact-form input::placeholder,
	.ttch-contact-form textarea::placeholder {
		color: rgba(var(--ttch-primary_foreground-rgb), 0.5);
	}
}

.ttch-contact-form input:focus,
.ttch-contact-form textarea:focus {
	outline: 0;
	border-color: hsl(0 0% 100% / 0.4);
	border-color: color-mix(in srgb, var(--ttch-primary_foreground) 40%, transparent);
}

@supports not (border-color: color-mix(in srgb, white 40%, transparent)) {
	.ttch-contact-form input:focus,
	.ttch-contact-form textarea:focus {
		border-color: rgba(var(--ttch-primary_foreground-rgb), 0.4);
	}
}

/* Lovable Button size lg on primary card: w-full rounded-xl h-12 + icon gap */
.ttch-contact-shell .ttch-contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	margin: 0;
	min-height: 3rem;
	height: 3rem;
	padding: 0 1rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--ttch-primary_foreground);
	color: var(--ttch-primary);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	transition: background-color 0.2s var(--ttch-transition);
}

/* Tailwind hover:bg-primary-foreground/90 — rgba(r g b, a) con espacios es inválido; usar slash alpha */
.ttch-contact-shell .ttch-contact-submit:hover {
	background: rgb(var(--ttch-primary_foreground-rgb) / 0.9);
}

.ttch-contact-submit:disabled {
	opacity: 0.7;
	cursor: progress;
}

.ttch-contact-submit-icon {
	width: 1rem;
	height: 1rem;
}

.ttch-footer {
	border-top: 1px solid rgba(var(--ttch-primary-rgb), 0.1);
	background: var(--ttch-footer_background);
}

.ttch-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-block: 4rem;
}

@media (min-width: 1024px) {
	.ttch-footer-grid {
		gap: 3rem;
		padding-block: 5rem;
	}
}

.ttch-footer-description,
.ttch-footer-links a,
.ttch-footer-community li.ttch-inline-link,
.ttch-footer-meta,
.ttch-footer-socials a {
	color: var(--ttch-muted_foreground);
	font-size: 0.875rem;
}

/* Lovable: text-muted-foreground hover:text-foreground transition-colors */
.ttch-footer-links a,
.ttch-footer-community li.ttch-inline-link a {
	transition: color 0.2s ease;
}

.ttch-footer-description {
	max-width: 22rem;
	margin: 1rem 0 0;
	line-height: 1.7;
}

.ttch-footer-heading {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.ttch-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ttch-footer-links li + li {
	margin-top: 0.75rem;
}

.ttch-footer-links a:hover,
.ttch-footer-socials a:hover,
.ttch-footer-links a.ttch-inline-link:hover,
.ttch-footer-community li.ttch-inline-link a:hover,
.ttch-footer-meta a:hover {
	color: var(--ttch-foreground);
}

.ttch-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Lovable: w-4 h-4 (icon + Mail) en enlaces Community */
.ttch-inline-icon {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	color: inherit;
}

.ttch-footer-community .ttch-inline-icon svg {
	display: block;
}

.ttch-footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 0 2.5rem;
	border-top: 1px solid var(--ttch-border);
}

.ttch-footer-meta {
	margin: 0;
	font-size: 0.75rem;
}

.ttch-footer-meta a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ttch-footer-socials {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ttch-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s var(--ttch-transition), transform 0.6s var(--ttch-transition);
}

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

@media (min-width: 640px) {
	.ttch-break {
		display: inline;
	}

	.ttch-contact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ttch-footer-bottom {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	.ttch-resource-grid,
	.ttch-platform-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ttch-resource-card-inner {
		padding: 2.5rem;
	}

	.ttch-platform-toggle {
		padding: 2rem;
	}

	.ttch-platform-links {
		padding: 0 2rem 2rem;
	}

	.ttch-parallax-divider {
		height: 50vh;
	}

	.ttch-footer-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ttch-footer-brand {
		grid-column: span 2;
	}
}

@media (min-width: 1024px) {
	.ttch-desktop-nav {
		display: flex;
	}

	.ttch-mobile-nav-toggle-wrap,
	.ttch-mobile-menu {
		display: none;
	}

	.container-wide,
	.ttch-container {
		padding-inline: 2rem;
	}
}
