/* =========================================================
   T-LaVendo2 — hoja de estilos principal
   Replica el sistema de diseño de la app original (colores,
   tipografía, radios, tarjetas, botones) usando CSS puro.
   ========================================================= */

:root {
	--tlv2-background: #fafafa;
	--tlv2-foreground: #0d0d0d;
	--tlv2-card: #ffffff;
	--tlv2-card-foreground: #0d0d0d;

	--tlv2-primary: #ff1493;       /* Rosa neón */
	--tlv2-primary-foreground: #ffffff;
	--tlv2-secondary: #00bfff;     /* Azul cian */
	--tlv2-secondary-foreground: #0d0d0d;
	--tlv2-navy: #001f3f;          /* Navy oscuro */

	--tlv2-muted: #e6e6e6;
	--tlv2-muted-foreground: #666666;
	--tlv2-accent: #ffe6f4;
	--tlv2-accent-foreground: #99005c;

	--tlv2-destructive: #e02424;
	--tlv2-border: #d9d9d9;
	--tlv2-input: #d9d9d9;
	--tlv2-radius: 1rem;

	--tlv2-font: "Plus Jakarta Sans", sans-serif;
	--tlv2-max-width: 1280px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--tlv2-font);
	background: var(--tlv2-background);
	color: var(--tlv2-foreground);
	line-height: 1.625;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
html { scroll-behavior: smooth; }

/* ---------- Layout ---------- */
.tlv2-container { max-width: var(--tlv2-max-width); margin: 0 auto; padding: 0 1.5rem; }
.tlv2-section { padding: 5rem 0; }
.tlv2-section-card { background: var(--tlv2-card); }
.tlv2-section-navy { background: var(--tlv2-navy); color: #fff; }
.tlv2-section-border { border-top: 1px solid var(--tlv2-border); border-bottom: 1px solid var(--tlv2-border); }
.tlv2-text-center { text-align: center; }
.tlv2-text-white { color: #fff; }
.tlv2-text-white-70 { color: rgba(255,255,255,.8); }
.tlv2-text-secondary { color: var(--tlv2-secondary); }
.tlv2-max-w-2xl { max-width: 42rem; }
.tlv2-max-w-3xl { max-width: 48rem; }
.tlv2-mx-auto { margin-left: auto; margin-right: auto; }
.tlv2-mb-md { margin-bottom: 1rem; }
.tlv2-mb-lg { margin-bottom: 2rem; }
.tlv2-mb-xl { margin-bottom: 3rem; }
.tlv2-mb-2xl { margin-bottom: 4rem; }
.tlv2-mt-lg { margin-top: 2rem; }
.tlv2-hide-mobile { display: none; }
.tlv2-show-mobile { display: block; }
.tlv2-text-sm { font-size: .875rem; }
.tlv2-text-xs { font-size: .75rem; }
.tlv2-italic { font-style: italic; }
.tlv2-bold { font-weight: 700; }
.tlv2-muted { color: var(--tlv2-muted-foreground); font-weight: 500; }
.tlv2-lead { font-size: 1.25rem; color: var(--tlv2-muted-foreground); font-weight: 500; line-height: 1.6; }
.tlv2-align-center { align-items: center; }

@media (min-width: 768px) {
	.tlv2-hide-mobile { display: inline-block; }
	.tlv2-show-mobile { display: none; }
}

.tlv2-h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
.tlv2-h2 { font-size: 2.25rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
.tlv2-h3 { font-size: 1.5rem; }
.tlv2-h4 { font-size: 1.15rem; margin-bottom: .5rem; }
@media (min-width: 768px) {
	.tlv2-h1 { font-size: 3.5rem; }
	.tlv2-h2 { font-size: 2.75rem; }
}

.tlv2-grid { display: grid; gap: 2rem; }
.tlv2-grid-2 { grid-template-columns: 1fr; }
.tlv2-grid-3 { grid-template-columns: 1fr; }
.tlv2-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
	.tlv2-grid-2 { grid-template-columns: repeat(2, 1fr); }
	.tlv2-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.tlv2-grid-3 { grid-template-columns: repeat(3, 1fr); }
	.tlv2-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.tlv2-flex-between { display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; align-items: flex-start; }
@media (min-width: 768px) {
	.tlv2-flex-between { flex-direction: row; align-items: flex-end; }
}

/* ---------- Botones ---------- */
.tlv2-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-weight: 700; border-radius: .85rem; border: 0; cursor: pointer;
	padding: .85rem 1.75rem; font-size: 1rem; transition: all .2s ease;
	text-align: center;
}
.tlv2-btn-primary { background: var(--tlv2-primary); color: var(--tlv2-primary-foreground); box-shadow: 0 0 20px rgba(255,20,147,.35); }
.tlv2-btn-primary:hover { background: rgba(255,20,147,.85); transform: translateY(-1px); }
.tlv2-btn-secondary { background: var(--tlv2-secondary); color: var(--tlv2-secondary-foreground); }
.tlv2-btn-outline { background: transparent; border: 1px solid var(--tlv2-secondary); color: var(--tlv2-secondary); }
.tlv2-btn-outline:hover { background: rgba(0,191,255,.08); }
.tlv2-btn-outline-light { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(6px); }
.tlv2-btn-ghost { background: transparent; color: inherit; }
.tlv2-btn-destructive { background: var(--tlv2-destructive); color: #fff; }
.tlv2-btn-light { background: #fff; color: var(--tlv2-foreground); }
.tlv2-btn-whatsapp { background: #25d366; color: #fff; }
.tlv2-btn-whatsapp:hover { background: #20ba5a; }
.tlv2-btn-lg { height: 3.75rem; padding: 0 2.25rem; font-size: 1.1rem; border-radius: 1rem; }
.tlv2-btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.tlv2-btn-block { width: 100%; }
.tlv2-arrow { display: inline-block; }
.tlv2-btn.is-loading { opacity: .7; pointer-events: none; }

/* ---------- Tarjetas ---------- */
.tlv2-card { background: var(--tlv2-card); border-radius: 1.5rem; border: 1px solid var(--tlv2-border); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.tlv2-card-pad-lg { padding: 2.5rem; }
.tlv2-card-body { padding: 2.5rem; }

/* ---------- Cabecera ---------- */
.tlv2-header { position: sticky; top: 0; z-index: 50; background: rgba(250,250,250,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--tlv2-border); }
.tlv2-header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; gap: 1rem; }
.tlv2-logo { display: flex; align-items: center; gap: .75rem; }
.tlv2-logo img { height: 3rem; width: auto; }
.tlv2-logo-text { font-size: 1.5rem; font-weight: 900; background: linear-gradient(90deg, var(--tlv2-primary), var(--tlv2-secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.tlv2-nav-desktop { display: none; }
.tlv2-nav-links { display: flex; align-items: center; gap: .25rem; }
.tlv2-nav-link { padding: .5rem 1rem; border-radius: .75rem; font-weight: 600; font-size: .9rem; color: rgba(13,13,13,.8); }
.tlv2-nav-link:hover, .tlv2-nav-link.tlv2-active { color: var(--tlv2-primary); background: rgba(255,20,147,.08); }

.tlv2-header-actions { display: none; align-items: center; gap: .5rem; }
.tlv2-mobile-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; }
.tlv2-mobile-toggle span { width: 22px; height: 2px; background: var(--tlv2-foreground); border-radius: 2px; }

@media (min-width: 1024px) {
	.tlv2-nav-desktop { display: block; }
	.tlv2-header-actions { display: flex; }
	.tlv2-mobile-toggle { display: none; }
}

.tlv2-icon-btn { background: none; border: 0; padding: .5rem; border-radius: .75rem; }
.tlv2-icon-btn:hover { background: var(--tlv2-accent); }
.tlv2-icon { width: 20px; height: 20px; }
.tlv2-icon-sm { width: 16px; height: 16px; }
.tlv2-icon-inline { margin-right: .5rem; }

.tlv2-tiktok-dropdown { position: relative; }
.tlv2-dropdown-menu { display: none; position: absolute; right: 0; top: 100%; margin-top: .5rem; background: var(--tlv2-card); border: 1px solid var(--tlv2-border); border-radius: .75rem; box-shadow: 0 10px 25px rgba(0,0,0,.1); min-width: 180px; padding: .5rem; z-index: 10; }
.tlv2-tiktok-dropdown:hover .tlv2-dropdown-menu, .tlv2-tiktok-dropdown:focus-within .tlv2-dropdown-menu { display: block; }
.tlv2-dropdown-menu a { display: block; padding: .5rem .75rem; border-radius: .5rem; font-weight: 500; font-size: .9rem; }
.tlv2-dropdown-menu a:hover { background: var(--tlv2-accent); color: var(--tlv2-primary); }

.tlv2-nav-mobile { display: none; padding: 1rem 0; border-top: 1px solid var(--tlv2-border); }
.tlv2-nav-mobile.is-open { display: block; }
.tlv2-nav-mobile .tlv2-nav-links { flex-direction: column; align-items: stretch; gap: .25rem; }
.tlv2-nav-mobile .tlv2-nav-link { display: block; padding: .75rem 1rem; }
.tlv2-mobile-actions { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--tlv2-border); }

.tlv2-mobile-actions-row { display: flex; align-items: center; gap: .5rem; }
@media (min-width: 1024px) { .tlv2-mobile-actions-row { display: none; } }

.tlv2-lang-dropdown { position: relative; }
.tlv2-lang-menu { min-width: 160px; }
.tlv2-lang-option { display: block; padding: .5rem .75rem; border-radius: .5rem; font-weight: 500; font-size: .9rem; }
.tlv2-lang-option:hover { background: var(--tlv2-accent); color: var(--tlv2-primary); }
.tlv2-lang-option.is-active { color: var(--tlv2-primary); font-weight: 700; background: var(--tlv2-accent); }
.tlv2-lang-code { opacity: .6; font-size: .85em; }

/* ---------- Hero ---------- */
.tlv2-hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--tlv2-navy); }
.tlv2-hero-bg { position: absolute; inset: 0; z-index: 0; }
.tlv2-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; filter: grayscale(1) brightness(1.2); }
.tlv2-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,31,63,.7), rgba(0,31,63,.85), var(--tlv2-navy)); }
.tlv2-hero-number { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 85vw; max-width: 1200px; height: auto; opacity: .45; pointer-events: none; z-index: 0; }
@media (min-width: 768px) { .tlv2-hero-number { width: 65vw; } }
.tlv2-hero-content { position: relative; z-index: 10; max-width: 48rem; text-align: center; }
@media (min-width: 768px) { .tlv2-hero-content { text-align: left; } }
.tlv2-eyebrow { display: inline-block; padding: .4rem 1.1rem; border-radius: 999px; background: rgba(0,0,0,.5); border: 1px solid rgba(255,20,147,.5); color: var(--tlv2-primary); font-weight: 700; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.tlv2-hero-title { font-size: 3rem; color: #fff; margin-bottom: 2.5rem; line-height: 1.05; letter-spacing: -0.03em; text-shadow: 0 4px 12px rgba(0,0,0,.8); }
@media (min-width: 768px) { .tlv2-hero-title { font-size: 5rem; } }
@media (min-width: 1024px) { .tlv2-hero-title { font-size: 6rem; } }
.tlv2-hero-actions { display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; }
@media (min-width: 640px) { .tlv2-hero-actions { flex-direction: row; } }
@media (min-width: 768px) { .tlv2-hero-actions { justify-content: flex-start; } }

/* ---------- Servicios / valores ---------- */
.tlv2-services-grid { margin-top: 3rem; }
.tlv2-service-card, .tlv2-value-card { padding: 2rem; text-align: center; }
.tlv2-service-icon { font-size: 2.5rem; width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; background: linear-gradient(135deg, rgba(255,20,147,.1), rgba(0,191,255,.1)); border-radius: 1.25rem; }

/* ---------- Zonas ---------- */
.tlv2-zonas-list { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.tlv2-zona-pill { padding: .6rem 1.2rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.8); }

/* ---------- Propiedades: tarjetas ---------- */
.tlv2-property-card { background: var(--tlv2-card); border: 1px solid var(--tlv2-border); border-radius: 1.25rem; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform .2s, box-shadow .2s; }
.tlv2-property-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,.08); }
.tlv2-property-image { position: relative; height: 12rem; overflow: hidden; }
.tlv2-property-image img { width: 100%; height: 100%; object-fit: cover; }
.tlv2-property-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.tlv2-property-title { font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.3; }
.tlv2-property-zona { font-size: .875rem; color: var(--tlv2-muted-foreground); margin-bottom: .75rem; }
.tlv2-property-meta { display: flex; gap: 1rem; font-size: .875rem; color: var(--tlv2-muted-foreground); margin-bottom: 1rem; }
.tlv2-property-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--tlv2-border); display: flex; align-items: center; justify-content: space-between; }
.tlv2-property-price { font-size: 1.4rem; font-weight: 800; color: var(--tlv2-primary); }
.tlv2-property-price-lg { font-size: 2rem; }
.tlv2-property-op { font-size: .75rem; color: var(--tlv2-muted-foreground); }

.tlv2-badge { position: absolute; top: .75rem; right: .75rem; padding: .3rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 700; border: 1px solid transparent; }
.tlv2-badge-green { background: rgba(34,197,94,.1); color: #15803d; border-color: rgba(34,197,94,.2); }
.tlv2-badge-yellow { background: rgba(234,179,8,.1); color: #a16207; border-color: rgba(234,179,8,.2); }
.tlv2-badge-red { background: rgba(239,68,68,.1); color: #b91c1c; border-color: rgba(239,68,68,.2); }
.tlv2-badge-blue { background: rgba(59,130,246,.1); color: #1d4ed8; border-color: rgba(59,130,246,.2); }
.tlv2-badge-primary { background: rgba(255,20,147,.1); color: var(--tlv2-primary); border-color: rgba(255,20,147,.2); position: static; display: inline-block; }
.tlv2-badge-muted { background: var(--tlv2-muted); color: var(--tlv2-muted-foreground); }

.tlv2-empty-state { text-align: center; padding: 4rem 1rem; background: rgba(0,0,0,.02); border: 1px dashed var(--tlv2-border); border-radius: 1.5rem; }
.tlv2-empty-state-lg { padding: 6rem 1rem; }

/* ---------- Estadísticas ---------- */
.tlv2-stat-card { text-align: center; padding: 2.5rem 1.5rem; }
.tlv2-stat-icon { width: 5rem; height: 5rem; border-radius: 999px; background: linear-gradient(135deg, rgba(255,20,147,.1), rgba(0,191,255,.1)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.tlv2-stat-value { font-size: 3rem; font-weight: 900; margin-bottom: .5rem; letter-spacing: -0.03em; }
.tlv2-stat-value-sm { font-size: 2.25rem; color: var(--tlv2-primary); }
.tlv2-stat-label { font-size: .8rem; font-weight: 700; color: var(--tlv2-muted-foreground); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Formularios ---------- */
.tlv2-form { display: flex; flex-direction: column; gap: 1rem; }
.tlv2-form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tlv2-form-grid { grid-template-columns: 1fr 1fr; } }
.tlv2-field { display: flex; flex-direction: column; gap: .4rem; }
.tlv2-field label { font-size: .875rem; font-weight: 600; }
.tlv2-field input, .tlv2-field select, .tlv2-field textarea {
	padding: .7rem .9rem; border: 1px solid var(--tlv2-input); border-radius: .6rem; background: #fff; color: var(--tlv2-foreground);
	width: 100%;
}
.tlv2-field input:focus, .tlv2-field select:focus, .tlv2-field textarea:focus { outline: 2px solid var(--tlv2-primary); outline-offset: 1px; }
.tlv2-checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
@media (min-width: 768px) { .tlv2-checkbox-grid { grid-template-columns: repeat(3, 1fr); } }
.tlv2-checkbox { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 500; }
.tlv2-form-message { font-size: .875rem; font-weight: 600; min-height: 1.2em; }
.tlv2-form-message.is-success { color: #15803d; }
.tlv2-form-message.is-error { color: #b91c1c; }

/* ---------- Ayuda / CTA ---------- */
.tlv2-help-card { overflow: hidden; }
.tlv2-gradient-bar { height: .75rem; background: linear-gradient(90deg, var(--tlv2-primary), var(--tlv2-secondary), var(--tlv2-primary)); background-size: 200% auto; }
.tlv2-cta-icon { width: 5rem; height: 5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; }
.tlv2-cta-icon-light { background: var(--tlv2-card); border: none; box-shadow: 0 10px 25px rgba(0,0,0,.1); }

/* ---------- Páginas internas (hero) ---------- */
.tlv2-page-hero { padding: 4rem 0; background: rgba(255,20,147,.05); border-bottom: 1px solid var(--tlv2-border); }
.tlv2-page-hero-gradient { background: linear-gradient(90deg, rgba(255,20,147,.1), rgba(0,191,255,.1)); }

/* ---------- Contacto ---------- */
.tlv2-contact-info-card { padding: 2rem; text-align: center; }
.tlv2-commitment-card { background: linear-gradient(90deg, rgba(255,20,147,.1), rgba(0,191,255,.1)); border-radius: 1.5rem; padding: 3rem 1.5rem; }
.tlv2-cta-banner { background: var(--tlv2-primary); color: #fff; border-radius: 1.5rem; padding: 3rem 1.5rem; }
.tlv2-cta-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .tlv2-cta-actions { flex-direction: row; } }
.tlv2-rounded-img { border-radius: 1rem; width: 100%; height: 400px; object-fit: cover; box-shadow: 0 10px 25px rgba(0,0,0,.1); }

/* ---------- Filtros de propiedades ---------- */
.tlv2-filter-bar { background: var(--tlv2-card); border-radius: 1.25rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid var(--tlv2-border); }
.tlv2-filter-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
.tlv2-filter-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
	.tlv2-filter-grid { grid-template-columns: repeat(3, 1fr); }
	.tlv2-filter-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) { .tlv2-filter-grid { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Mapa ---------- */
.tlv2-map { width: 100%; height: 420px; border-radius: 1rem; overflow: hidden; border: 1px solid var(--tlv2-border); }
.tlv2-map-tall { height: 380px; }

/* ---------- Detalle de propiedad ---------- */
.tlv2-back-link { display: inline-block; margin-bottom: 1.5rem; font-weight: 600; color: var(--tlv2-muted-foreground); }
.tlv2-back-link:hover { color: var(--tlv2-primary); }
.tlv2-property-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .tlv2-property-detail-grid { grid-template-columns: 2fr 1fr; } }
.tlv2-property-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.tlv2-property-address { margin: .5rem 0 1rem; }
.tlv2-property-quickmeta { display: flex; gap: 1.5rem; font-weight: 600; color: var(--tlv2-muted-foreground); margin-bottom: 1rem; }
.tlv2-features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; font-weight: 600; }
.tlv2-sticky-card { position: sticky; top: 6rem; padding: 2rem; }

.tlv2-gallery-main { position: relative; border-radius: 1.25rem; overflow: hidden; background: var(--tlv2-muted); }
.tlv2-gallery-main img { width: 100%; height: 400px; object-fit: cover; }
.tlv2-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(0,0,0,.5); color: #fff; border: 0; font-size: 1.5rem; }
.tlv2-gallery-prev { left: 1rem; }
.tlv2-gallery-next { right: 1rem; }
.tlv2-gallery-counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.5); color: #fff; padding: .25rem .75rem; border-radius: 999px; font-size: .85rem; }
.tlv2-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-top: 1rem; }
@media (min-width: 768px) { .tlv2-gallery-thumbs { grid-template-columns: repeat(6, 1fr); } }
.tlv2-gallery-thumb { border-radius: .6rem; overflow: hidden; border: 0; padding: 0; opacity: .6; aspect-ratio: 16/9; }
.tlv2-gallery-thumb.is-active { opacity: 1; outline: 2px solid var(--tlv2-primary); }
.tlv2-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trabaja con nosotros ---------- */
.tlv2-job-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .tlv2-job-layout { grid-template-columns: 5fr 7fr; } }
.tlv2-job-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.tlv2-benefit-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; }
.tlv2-benefit-icon { width: 3rem; height: 3rem; border-radius: .75rem; background: rgba(255,20,147,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }

/* ---------- Botón flotante de WhatsApp ---------- */
.tlv2-whatsapp-float {
	position: fixed; bottom: 6rem; right: 1.5rem; z-index: 50;
	width: 3.5rem; height: 3.5rem; border-radius: 999px;
	background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 20px rgba(0,0,0,.15); transition: transform .2s, background .2s;
}
.tlv2-whatsapp-float:hover { background: #20ba5a; transform: scale(1.08); }

/* ---------- Paginación ---------- */
.tlv2-pagination { margin-top: 3rem; display: flex; justify-content: center; gap: .5rem; }
.tlv2-pagination .page-numbers { padding: .6rem 1rem; border-radius: .6rem; border: 1px solid var(--tlv2-border); font-weight: 600; }
.tlv2-pagination .page-numbers.current { background: var(--tlv2-primary); color: #fff; border-color: var(--tlv2-primary); }

/* ---------- Footer ---------- */
.tlv2-footer { background: var(--tlv2-card); border-top: 1px solid var(--tlv2-border); margin-top: 5rem; padding: 4rem 0 2rem; }
.tlv2-footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .tlv2-footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.tlv2-footer-desc { color: var(--tlv2-muted-foreground); font-size: .9rem; margin: 1.5rem 0 2rem; max-width: 24rem; }
.tlv2-footer-heading { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.tlv2-footer-social li, .tlv2-footer-links li, .tlv2-footer-contact li { margin-bottom: .9rem; font-size: .9rem; }
.tlv2-footer-social a { display: flex; align-items: center; gap: .5rem; color: var(--tlv2-muted-foreground); font-weight: 500; }
.tlv2-footer-links a, .tlv2-footer-contact a { color: var(--tlv2-muted-foreground); font-weight: 500; }
.tlv2-footer-links a:hover, .tlv2-footer-social a:hover, .tlv2-footer-contact a:hover { color: var(--tlv2-primary); }
.tlv2-link-accent { color: var(--tlv2-primary) !important; }
.tlv2-footer-contact li { display: flex; align-items: flex-start; color: var(--tlv2-muted-foreground); }
.tlv2-footer-bottom { padding-top: 2rem; border-top: 1px solid var(--tlv2-border); text-align: center; font-size: .85rem; color: var(--tlv2-muted-foreground); }

/* ---------- Leaflet popup ---------- */
.leaflet-popup-content-wrapper { border-radius: 12px; }

/* =========================================================
   Animaciones al hacer scroll (equivalente a whileInView de
   Framer Motion en el proyecto original). Los elementos con
   la clase .tlv2-reveal empiezan invisibles/desplazados y se
   revelan cuando entran en el viewport (ver main.js).
   ========================================================= */
.tlv2-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
	transition-delay: var(--tlv2-reveal-delay, 0ms);
	will-change: opacity, transform;
}
.tlv2-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Variante sutil para elementos pequeños en cuadrícula (tarjetas, píldoras). */
.tlv2-reveal-sm {
	opacity: 0;
	transform: translateY(14px) scale(.98);
	transition: opacity .5s ease, transform .5s ease;
	transition-delay: var(--tlv2-reveal-delay, 0ms);
}
.tlv2-reveal-sm.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Entrada del hero al cargar la página (no depende de scroll). */
.tlv2-hero-content {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s ease, transform .8s ease;
}
.tlv2-hero-content.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Quien prefiera menos movimiento (accesibilidad) ve el contenido directamente. */
@media (prefers-reduced-motion: reduce) {
	.tlv2-reveal,
	.tlv2-reveal-sm,
	.tlv2-hero-content {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
