/*
 * TIGER Constructora – styles.css  v2.1.0
 * All selectors scoped to #tiger-constructora-wrapper.
 * No :root, no html/body, no globals.
 * CSS custom properties declared on #tiger-constructora-wrapper directly.
 * Source maps removed (production build).
 */

/* ══════════════════════════════════════════════════════
   1. WRAPPER BASE + CSS CUSTOM PROPERTIES
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper {
	/* Palette */
	--tc-french-press:    #4A4042;
	--tc-apple-cinnamon:  #B58A69;
	--tc-leather-bound:   #96756A;
	--tc-outer-boundary:  #76504E;
	--tc-country-rubble:  #A99F8F;
	--tc-milk-glass:      #F6F0E7;
	--tc-antique-white:   #EBE5CF;

	/* Semantic tokens */
	--tc-espresso:  var(--tc-outer-boundary);
	--tc-charcoal:  var(--tc-french-press);
	--tc-cream:     var(--tc-milk-glass);
	--tc-text:      var(--tc-french-press);
	--tc-muted:     var(--tc-country-rubble);
	--tc-accent:    var(--tc-apple-cinnamon);
	--tc-white:     #FFFFFF;
	--tc-border:    rgba(74,64,66,.08);

	/* Layout */
	--tc-row-w:    1080px;
	--tc-header-h: 200px;  /* normal — fits 180px logo + breathing room */
	--tc-header-s: 160px;  /* scrolled + mobile — fits 144px logo */

	/* Reset (neutralises Astra / Twenty-Twenty / any theme) */
	all: unset;
	display: block;
	width: 100%;
	overflow-x: clip;       /* last-resort protection; real overflows fixed below */
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--tc-text);
	background: var(--tc-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Box-sizing */
#tiger-constructora-wrapper *,
#tiger-constructora-wrapper *::before,
#tiger-constructora-wrapper *::after {
	box-sizing: border-box;
	min-width: 0;           /* prevents flex/grid children from overflowing */
}

/* ── Images ── */
#tiger-constructora-wrapper img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0; padding: 0; border: none; box-shadow: none;
}

/* ── Links ── */
#tiger-constructora-wrapper a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

/* ── Lists ── */
#tiger-constructora-wrapper ul,
#tiger-constructora-wrapper ol  { list-style: none; margin: 0; padding: 0; }
#tiger-constructora-wrapper li  { list-style: none; margin: 0; padding: 0; }
#tiger-constructora-wrapper li::before { display: none; }

/* ── Paragraphs ── */
#tiger-constructora-wrapper p {
	margin: 0;
	padding-bottom: 1em;
	font-family: 'Inter', sans-serif;
	font-size: inherit;
	line-height: 1.6;
	color: inherit;
}
#tiger-constructora-wrapper p:last-child,
#tiger-constructora-wrapper p:last-of-type { padding-bottom: 0; }

/* ── Headings (specificity wins over Astra without !important) ── */
#tiger-constructora-wrapper h1,
#tiger-constructora-wrapper h2,
#tiger-constructora-wrapper h3,
#tiger-constructora-wrapper h4,
#tiger-constructora-wrapper h5,
#tiger-constructora-wrapper h6 {
	margin: 0; padding: 0; border: none; background: none;
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: var(--tc-text);
	text-transform: none;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

/* ── Buttons – only inside wrapper ── */
#tiger-constructora-wrapper button {
	font-family: inherit;
	cursor: pointer;
	border: none; background: none;
	padding: 0; margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: inherit;
}

/* ── Inputs – only inside wrapper ── */
#tiger-constructora-wrapper input,
#tiger-constructora-wrapper select,
#tiger-constructora-wrapper textarea {
	font-family: 'Inter', sans-serif;
	font-size: 16px;          /* prevents iOS auto-zoom */
	border-radius: 2px;
	height: auto;
	line-height: 1.4;
}

/* ── SVG ── */
#tiger-constructora-wrapper svg { display: inline-block; }

/* ══════════════════════════════════════════════════════
   2. ASTRA / THEME FULL-WIDTH PAGE OVERRIDE
   Only active when .tiger-landing-active is on <body>
   ══════════════════════════════════════════════════════ */
.tiger-landing-active #primary,
.tiger-landing-active .site-content,
.tiger-landing-active .ast-container,
.tiger-landing-active main#main,
.tiger-landing-active .entry-content {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}
/* Hide theme header & footer when landing is active */
.tiger-landing-active #ast-desktop-header,
.tiger-landing-active #ast-mobile-header,
.tiger-landing-active #masthead,
.tiger-landing-active header.site-header,
.tiger-landing-active .site-footer,
.tiger-landing-active #colophon { display: none !important; }

/* Generic themes (GeneratePress, Hello, TT, etc.) */
.tiger-landing-active .site-header,
.tiger-landing-active .site-footer { display: none !important; }

/* ══════════════════════════════════════════════════════
   3. LAYOUT SYSTEM  (row = responsive centered container)
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .tg-section {
	position: relative;
	padding: 72px 0;
	background-size: cover;
	background-position: center;
}
#tiger-constructora-wrapper .tg-row {
	width: min(90%, var(--tc-row-w));
	margin-inline: auto;
	position: relative;
}
#tiger-constructora-wrapper .tg-row-full {
	width: min(92%, 1400px);
	margin-inline: auto;
}

/* Legacy column classes converted to Flex internals when needed */
#tiger-constructora-wrapper .tg_pb_section { position: relative; padding: 72px 0; background-size: cover; background-position: center; }
#tiger-constructora-wrapper .tg_pb_row     { width: min(90%, var(--tc-row-w)); margin-inline: auto; position: relative; }
#tiger-constructora-wrapper .tg_pb_row_full{ width: min(92%, 1400px); margin-inline: auto; }

/* ══════════════════════════════════════════════════════
   4. HEADER
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .tiger-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: var(--tc-white);
	height: var(--tc-header-h);
	transition: height .3s ease, box-shadow .3s ease;
	box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
/* WordPress admin bar offset */
.admin-bar #tiger-constructora-wrapper .tiger-header { top: 32px; }
@media (max-width: 782px) {
	.admin-bar #tiger-constructora-wrapper .tiger-header { top: 46px; }
}

#tiger-constructora-wrapper .tiger-header.scrolled {
	height: var(--tc-header-s);
	box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
#tiger-constructora-wrapper .header-container {
	width: min(92%, 1400px);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

/* ── Logo ── */
#tiger-constructora-wrapper .tiger-logo {
	display: flex;
	align-items: center;
	z-index: 9;
	flex-shrink: 0;
}
#tiger-constructora-wrapper .tiger-logo-img {
  height: 160px;
  width: auto;
  max-height: 160px;
  object-fit: contain;
  transition: height .3s ease;
  display: block;
}
}
#tiger-constructora-wrapper .tiger-header.scrolled .tiger-logo-img {
	height: 48px;       /* TRIPLE del original (48px × 3) */
}

/* ── Desktop nav ── */
#tiger-constructora-wrapper .nav-desktop ul {
	display: flex;
	align-items: center;
	gap: 32px;
}
#tiger-constructora-wrapper .nav-desktop .nav-link {
	display: block;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 0;
	transition: color .2s;
}
#tiger-constructora-wrapper .nav-desktop .nav-link .arrow { font-size: 10px; margin-left: 4px; }
#tiger-constructora-wrapper .nav-desktop .nav-link:hover  { color: var(--tc-accent); }

/* ── Header action button ── */
#tiger-constructora-wrapper .header-actions { display: flex; align-items: center; gap: 16px; }
#tiger-constructora-wrapper .header-btn-secondary {
	font-size: 14px; font-weight: 600;
	color: #000;
	border: 1px solid rgba(0,0,0,.15);
	padding: 8px 18px;
	border-radius: 4px;
	transition: all .2s;
	white-space: nowrap;
}
#tiger-constructora-wrapper .header-btn-secondary:hover { background: #f5f5f5; border-color: rgba(0,0,0,.3); }

/* ── Hamburger ── */
#tiger-constructora-wrapper .mobile_menu_bar {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 30px; height: 30px;
	cursor: pointer;
	flex-shrink: 0;
	background: none; border: none; padding: 0;
}
#tiger-constructora-wrapper .mobile_menu_bar .bar {
	width: 100%; height: 2px;
	background: #000;
	transition: all .3s;
	border-radius: 2px;
}

/* ── Mobile menu ── */
#tiger-constructora-wrapper .mobile-menu {
	display: none;
	position: fixed;
	top: var(--tc-header-h);
	left: 0; right: 0;
	/* Use dvh for correct mobile browser chrome handling */
	height: calc(100dvh - var(--tc-header-h));
	height: calc(100vh  - var(--tc-header-h));  /* fallback */
	background: var(--tc-white);
	border-top: 1px solid rgba(0,0,0,.07);
	padding: 20px 24px;
	padding-bottom: max(24px, env(safe-area-inset-bottom));
	z-index: 998;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
#tiger-constructora-wrapper .mobile-menu.active { display: block; }
#tiger-constructora-wrapper .mobile-menu ul     { display: flex; flex-direction: column; }
#tiger-constructora-wrapper .mobile-nav-link {
	display: block;
	color: #000;
	font-size: 16px; font-weight: 600;
	padding: 16px 8px;
	border-bottom: 1px solid rgba(0,0,0,.05);
}
#tiger-constructora-wrapper .mobile-nav-link:hover { color: var(--tc-accent); }
#tiger-constructora-wrapper .mobile-menu-cta { margin-top: 24px; }
#tiger-constructora-wrapper .mobile-menu-cta .btn-primary-samsara {
	display: block; text-align: center; padding: 14px 20px;
}

/* admin-bar mobile-menu offset */
.admin-bar #tiger-constructora-wrapper .mobile-menu { top: calc(var(--tc-header-h) + 46px); }
@media (min-width: 783px) {
	.admin-bar #tiger-constructora-wrapper .mobile-menu { top: calc(var(--tc-header-h) + 32px); }
}

/* ══════════════════════════════════════════════════════
   5. BUTTONS
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .btn-primary-samsara {
	display: inline-block;
	background: var(--tc-accent);
	color: #fff;
	font-size: 15px; font-weight: 600;
	padding: 14px 28px;
	border-radius: 4px;
	transition: background .2s;
	cursor: pointer;
	white-space: nowrap;
}
#tiger-constructora-wrapper .btn-primary-samsara:hover { background: var(--tc-espresso); }
#tiger-constructora-wrapper .btn-primary-samsara span  { margin-left: 6px; }

#tiger-constructora-wrapper .btn-secondary-samsara {
	display: inline-block;
	background: rgba(255,255,255,.9);
	color: #000;
	font-size: 15px; font-weight: 600;
	padding: 14px 28px;
	border-radius: 4px;
	transition: background .2s;
	cursor: pointer;
}
#tiger-constructora-wrapper .btn-secondary-samsara:hover { background: #fff; }

#tiger-constructora-wrapper .tg_pb_button {
	display: inline-block;
	font-size: 15px; font-weight: 500;
	padding: 12px 28px;
	border: 1px solid transparent;
	border-radius: 100px;
	background: var(--tc-charcoal);
	color: #fff;
	transition: opacity .2s;
	cursor: pointer;
}
#tiger-constructora-wrapper .tg_pb_button:hover { opacity: .88; }
#tiger-constructora-wrapper .tg_pb_button_wrapper { margin-top: 24px; }

#tiger-constructora-wrapper .tg_pb_bg_layout_light .tg_pb_button {
	background: #fff; color: var(--tc-charcoal);
	border-color: rgba(0,0,0,.12);
}
#tiger-constructora-wrapper .tg_pb_bg_layout_light .tg_pb_button:hover { background: var(--tc-cream); }
#tiger-constructora-wrapper .tg_pb_bg_layout_dark .tg_pb_button {
	background: #fff; color: var(--tc-charcoal);
}
#tiger-constructora-wrapper .tg_pb_bg_layout_dark .tg_pb_button:hover { background: #f1f1f1; }

/* ══════════════════════════════════════════════════════
   6. TYPOGRAPHY HELPERS
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .eyebrow {
	display: block;
	color: var(--tc-accent);
	font-family: 'Garet', sans-serif;
	font-size: 11px; font-weight: 700;
	letter-spacing: .35em; text-transform: uppercase;
	margin-bottom: 16px;
}
#tiger-constructora-wrapper .eyebrow.center,
#tiger-constructora-wrapper .eyebrow-dark { color: var(--tc-accent); }
#tiger-constructora-wrapper .eyebrow.center { text-align: center; }

/* Heading helpers scoped per component – no !important needed */
#tiger-constructora-wrapper .tg_pb_text h1 {
	font-size: clamp(28px, 5vw, 42px); font-weight: 800; line-height: 1.15; padding-bottom: 18px;
}
#tiger-constructora-wrapper .tg_pb_text h2 {
	font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; line-height: 1.3; padding-bottom: 14px;
}
#tiger-constructora-wrapper .tg_pb_text h2 span { color: var(--tc-accent); }
#tiger-constructora-wrapper .tg_pb_text h2.center { text-align: center; }
#tiger-constructora-wrapper .tg_pb_text p { color: inherit; }

/* ══════════════════════════════════════════════════════
   7. HERO
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .hero-section {
	position: relative;
	/* 100svh → short viewport (iOS), fallback to 100dvh then 100vh */
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Push content below the fixed header */
	padding-top: calc(var(--tc-header-h) + 24px);
	padding-bottom: 60px;
	color: #fff;
	overflow: hidden;
}
#tiger-constructora-wrapper .hero-media {
	position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
#tiger-constructora-wrapper .hero-video {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
#tiger-constructora-wrapper .hero-overlay {
	position: absolute; inset: 0; background: rgba(0,0,0,.46);
}
#tiger-constructora-wrapper .hero-row {
	position: relative; z-index: 2;
	width: min(90%, 960px);
	margin-inline: auto;
	text-align: center;
}
#tiger-constructora-wrapper .samsara-title {
	font-family: 'Archivo Black', sans-serif;
	font-size: clamp(28px, 7vw, 78px);
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 1.06;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 24px;
	padding-bottom: 0;
}
#tiger-constructora-wrapper .hero-text p {
	color: #fff;
	font-size: clamp(15px, 1.8vw, 19px);
	font-weight: 500;
	max-width: 680px;
	margin-inline: auto;
	margin-bottom: 36px;
	padding-bottom: 0;
	line-height: 1.5;
}
#tiger-constructora-wrapper .hero-btn-group {
	display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════
   8. STATS RIBBON
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .stats-ribbon {
	background: var(--tc-charcoal);
	border-top: 1px solid rgba(255,255,255,.07);
	border-bottom: 1px solid rgba(255,255,255,.07);
	padding: 72px 0;
	color: #fff;
}
#tiger-constructora-wrapper .stats-header {
	text-align: center;
	max-width: 700px;
	margin-inline: auto;
	margin-bottom: 56px;
}
#tiger-constructora-wrapper .stats-header h2 {
	font-size: clamp(24px, 4vw, 40px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}
#tiger-constructora-wrapper .stats-header p {
	font-size: 16px;
	color: rgba(255,255,255,.75);
	line-height: 1.6;
	padding-bottom: 0;
}
#tiger-constructora-wrapper .stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	text-align: center;
}
#tiger-constructora-wrapper .stat-card {
	padding: 24px 16px;
	border-top: 1px solid rgba(255,255,255,.15);
}
#tiger-constructora-wrapper .stat-eyebrow {
	font-size: 11px; font-weight: 700;
	letter-spacing: .1em;
	color: var(--tc-apple-cinnamon);
	margin-bottom: 14px;
}
#tiger-constructora-wrapper .stat-number {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: #fff; line-height: 1.1;
	margin-bottom: 10px;
}
#tiger-constructora-wrapper .stat-label {
	font-size: 13px; font-weight: 500;
	color: rgba(255,255,255,.7);
	letter-spacing: .04em;
}
#tiger-constructora-wrapper .marker-underline {
	position: relative; display: inline;
}
#tiger-constructora-wrapper .marker-underline::after {
	content: '';
	position: absolute; left: 0; bottom: -4px;
	width: 100%; height: 5px;
	background: var(--tc-accent);
	border-radius: 4px; z-index: -1;
}

/* ══════════════════════════════════════════════════════
   9. NOSOTROS
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .nosotros-section { background: var(--tc-cream); }
#tiger-constructora-wrapper .nosotros-flex {
	display: flex;
	align-items: stretch;
}
#tiger-constructora-wrapper .nosotros-img {
	flex: 0 0 38%;
	align-self: stretch;
}
#tiger-constructora-wrapper .nosotros-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	min-height: 400px;
	display: block;
}
#tiger-constructora-wrapper .nosotros-text {
	flex: 1;
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#tiger-constructora-wrapper .nosotros-text h2 { color: var(--tc-text); font-size: clamp(20px, 3vw, 28px); margin-bottom: 16px; }
#tiger-constructora-wrapper .nosotros-text p  { color: var(--tc-muted); font-size: 15px; }

/* ══════════════════════════════════════════════════════
   10. SERVICIOS SWITCHER
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .servicios-section { background: var(--tc-charcoal); }
#tiger-constructora-wrapper .servicio-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 24px; gap: 20px; flex-wrap: wrap;
}
#tiger-constructora-wrapper .servicio-head h2 { color: #fff; font-size: clamp(20px, 3vw, 32px); }
#tiger-constructora-wrapper .servicio-head h2 span { color: var(--tc-milk-glass); }

#tiger-constructora-wrapper .samsara-switcher {
	display: grid;
	grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
	gap: 32px;
	margin-top: 24px;
	background: rgba(255,255,255,.02);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 8px;
	padding: 24px;
}
#tiger-constructora-wrapper .switcher-nav {
	display: flex; flex-direction: column; gap: 8px;
}
#tiger-constructora-wrapper .switcher-tab-btn {
	background: transparent; border: none;
	border-left: 3px solid transparent;
	border-radius: 0;
	padding: 16px 18px;
	text-align: left;
	color: rgba(255,255,255,.7);
	transition: all .25s;
	cursor: pointer;
	width: 100%;
}
#tiger-constructora-wrapper .switcher-tab-btn .tab-num {
	font-size: 10px; font-weight: 700;
	color: var(--tc-accent);
	letter-spacing: .15em; text-transform: uppercase;
	display: block; margin-bottom: 4px;
}
#tiger-constructora-wrapper .switcher-tab-btn .tab-title {
	font-size: 14px; font-weight: 600;
	color: #fff; display: block;
}
#tiger-constructora-wrapper .switcher-tab-btn:hover { background: rgba(255,255,255,.03); }
#tiger-constructora-wrapper .switcher-tab-btn.active {
	background: rgba(255,255,255,.05);
	border-left-color: var(--tc-antique-white);
}
#tiger-constructora-wrapper .switcher-tab-btn.active .tab-num { color: var(--tc-antique-white); }

#tiger-constructora-wrapper .switcher-content-box { position: relative; min-height: 340px; }
#tiger-constructora-wrapper .switcher-panel {
	display: none; gap: 24px; align-items: flex-start;
}
#tiger-constructora-wrapper .switcher-panel.active { display: flex; }
#tiger-constructora-wrapper .panel-info,
#tiger-constructora-wrapper .panel-media { flex: 1 1 0; }
#tiger-constructora-wrapper .panel-info h3 {
	font-size: clamp(16px, 2.5vw, 22px); font-weight: 800;
	color: #fff; margin-bottom: 12px; line-height: 1.3;
}
#tiger-constructora-wrapper .panel-info p {
	color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 18px; line-height: 1.6;
}
#tiger-constructora-wrapper .spec-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
#tiger-constructora-wrapper .spec-item {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 13px; color: rgba(255,255,255,.9);
}
#tiger-constructora-wrapper .spec-item svg { width: 16px; height: 16px; color: var(--tc-antique-white); flex-shrink: 0; margin-top: 2px; }
#tiger-constructora-wrapper .panel-media {
	border-radius: 6px; overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(255,255,255,.12);
}
#tiger-constructora-wrapper .panel-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════════════════════════
   11. DIFERENCIALES
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .diferenciales-section { background: #fff; }
#tiger-constructora-wrapper .diffs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
#tiger-constructora-wrapper .diff-blurb {
	text-align: center; padding: 24px 20px;
}
#tiger-constructora-wrapper .diff-blurb h4 {
	color: var(--tc-text); font-size: 13px; font-weight: 700;
	text-transform: uppercase; margin-bottom: 8px;
}
#tiger-constructora-wrapper .diff-blurb p { color: var(--tc-muted); font-size: 14px; }
#tiger-constructora-wrapper .icon-standalone { display: flex; justify-content: center; margin-bottom: 16px; }
#tiger-constructora-wrapper .icon-standalone svg { width: 48px; height: 48px; color: var(--tc-accent); }

/* ══════════════════════════════════════════════════════
   12. PROCESO (parallax banner)
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .proceso-section {
	position: relative; color: #fff; overflow: hidden; background: #000;
}
#tiger-constructora-wrapper .proceso-bg {
	position: absolute; inset: 0; z-index: 0;
	/* background-image injected via PHP */
	background-size: cover; background-position: center;
	opacity: .22;
}
@media (min-width: 981px) {
	#tiger-constructora-wrapper .proceso-bg { background-attachment: fixed; }
}
#tiger-constructora-wrapper .proceso-section .tg_pb_row { z-index: 1; }
#tiger-constructora-wrapper .proceso-section h2 { color: #fff; font-size: clamp(20px, 3.5vw, 30px); }
#tiger-constructora-wrapper .proceso-section p  { color: rgba(255,255,255,.85); font-size: 15px; max-width: 540px; }

/* Process steps as CSS Grid */
#tiger-constructora-wrapper .proceso-steps {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	margin-top: 30px;
	position: relative; z-index: 1;
}
#tiger-constructora-wrapper .process-step {
	padding: 18px 16px 18px 0;
	border-top: 2px solid rgba(255,255,255,.28);
}
#tiger-constructora-wrapper .process-step .p-num {
	font-family: 'Garet', sans-serif;
	font-size: clamp(24px, 4vw, 34px); font-weight: 800;
	color: var(--tc-accent); margin-bottom: 8px;
}
#tiger-constructora-wrapper .process-step .p-label {
	font-family: 'Garet', sans-serif;
	font-size: 12px; font-weight: 600;
	letter-spacing: .05em; text-transform: uppercase;
	color: rgba(255,255,255,.9);
}

/* ══════════════════════════════════════════════════════
   13. GALERÍA (CSS Grid)
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .galeria-section { background: var(--tc-cream); padding: 72px 0; }
#tiger-constructora-wrapper .galeria-row {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
#tiger-constructora-wrapper .galeria-row h2 { color: var(--tc-text); font-size: clamp(20px, 3vw, 30px); }

#tiger-constructora-wrapper .project-filters {
	display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
#tiger-constructora-wrapper .filter-btn {
	background: transparent;
	border: 1px solid rgba(58,50,40,.18);
	color: var(--tc-text);
	font-family: 'Garet', sans-serif;
	font-size: 11px; font-weight: 700;
	padding: 8px 18px; border-radius: 20px;
	text-transform: uppercase; letter-spacing: .08em;
	transition: all .25s; cursor: pointer;
}
#tiger-constructora-wrapper .filter-btn:hover,
#tiger-constructora-wrapper .filter-btn.active {
	background: var(--tc-espresso); border-color: var(--tc-espresso); color: #fff;
}

#tiger-constructora-wrapper .galeria-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
#tiger-constructora-wrapper .gal-item {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	cursor: pointer;
	border-radius: 2px;
}
#tiger-constructora-wrapper .gal-item img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform .4s ease;
}
#tiger-constructora-wrapper .gal-item:hover img { transform: scale(1.05); }
#tiger-constructora-wrapper .gal-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(43,38,32,.04) 40%, rgba(43,38,32,.65) 100%);
	transition: background .3s;
	display: flex; align-items: flex-end;
}
#tiger-constructora-wrapper .gal-item:hover .gal-overlay { background: rgba(43,38,32,.7); }
#tiger-constructora-wrapper .gal-cap  { padding: 20px; color: #fff; }
#tiger-constructora-wrapper .gal-tag {
	display: block;
	font-family: 'Garet', sans-serif;
	font-size: 10px; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase;
	color: var(--tc-accent); margin-bottom: 6px;
}
#tiger-constructora-wrapper .gal-name {
	display: block;
	font-family: 'Garet', sans-serif;
	font-size: 14px; font-weight: 700; text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   14. FORMULARIO
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .form-section { background: var(--tc-charcoal); color: #fff; }
#tiger-constructora-wrapper .form-section h2 { color: #fff; text-align: center; font-size: clamp(20px, 3.5vw, 30px); }
#tiger-constructora-wrapper .form-section h2 span { color: var(--tc-accent); }
#tiger-constructora-wrapper .form-section .sub { text-align: center; color: rgba(255,255,255,.8); }

#tiger-constructora-wrapper .quote-form { margin-top: 30px; }

/* CSS Grid form: 2 cols desktop, 1 col mobile */
#tiger-constructora-wrapper .form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 16px;
}
#tiger-constructora-wrapper .field {
	display: flex; flex-direction: column; gap: 6px;
}
#tiger-constructora-wrapper .field.full {
	grid-column: 1 / -1;
}
#tiger-constructora-wrapper .field label {
	font-family: 'Garet', sans-serif;
	font-size: 11px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	color: rgba(255,255,255,.75);
}
#tiger-constructora-wrapper .field label .opt { text-transform: none; color: rgba(255,255,255,.5); font-weight: 400; letter-spacing: 0; }
#tiger-constructora-wrapper .field input,
#tiger-constructora-wrapper .field select,
#tiger-constructora-wrapper .field textarea {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	padding: 12px 14px;
	font-size: 16px;  /* iOS no-zoom */
	border-radius: 2px;
	transition: border-color .2s;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
}
#tiger-constructora-wrapper .field select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}
#tiger-constructora-wrapper .field select option { color: var(--tc-text); }
#tiger-constructora-wrapper .field input::placeholder,
#tiger-constructora-wrapper .field textarea::placeholder { color: rgba(255,255,255,.38); }
#tiger-constructora-wrapper .field input:focus,
#tiger-constructora-wrapper .field select:focus,
#tiger-constructora-wrapper .field textarea:focus {
	outline: none; border-color: var(--tc-accent);
}
#tiger-constructora-wrapper .field input:invalid:not(:placeholder-shown),
#tiger-constructora-wrapper .field select:invalid:not(:placeholder-shown) {
	border-color: #e05a5a;
}

#tiger-constructora-wrapper .submit-btn {
	display: block; width: 100%;
	background: var(--tc-accent);
	border: 2px solid var(--tc-accent);
	color: #fff;
	margin-top: 14px;
	padding: 16px 20px;
	font-size: 15px; font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: background .2s, border-color .2s;
	text-align: center;
}
#tiger-constructora-wrapper .submit-btn:hover {
	background: var(--tc-espresso);
	border-color: var(--tc-espresso);
}
#tiger-constructora-wrapper .lead-sink {
	position: fixed; width: 1px; height: 1px; left: -9999px; top: auto;
	border: 0; opacity: 0; pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   15. FOOTER
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .samsara-footer {
	background: var(--tc-charcoal); padding: 80px 0 40px; color: #fff;
	font-family: 'Inter', sans-serif;
}
#tiger-constructora-wrapper .samsara-footer-inner {
	width: min(88%, var(--tc-row-w)); margin-inline: auto;
}
#tiger-constructora-wrapper .samsara-footer .tg_pb_row {
	display: flex; gap: 40px; flex-wrap: wrap;
	margin-bottom: 56px;
}
#tiger-constructora-wrapper .samsara-footer .tg_pb_column {
	flex: 1 1 160px; min-width: 0;
}
#tiger-constructora-wrapper .footer-logo {
	max-width: 180px; margin-bottom: 20px;
	filter: brightness(0) invert(1);
}
#tiger-constructora-wrapper .samsara-footer h6 {
	color: #fff; font-size: 14px; font-weight: 600;
	margin-bottom: 18px;
}
#tiger-constructora-wrapper .samsara-footer a {
	display: block; color: rgba(255,255,255,.7);
	font-size: 14px; margin-bottom: 10px;
	transition: color .2s;
}
#tiger-constructora-wrapper .samsara-footer a:hover { color: #fff; }
#tiger-constructora-wrapper .footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 28px;
	display: flex; justify-content: space-between;
	align-items: center; flex-wrap: wrap; gap: 10px;
}
#tiger-constructora-wrapper .footer-bottom p { color: rgba(255,255,255,.5); font-size: 13px; padding: 0; }
#tiger-constructora-wrapper .footer-links { display: flex; gap: 22px; }
#tiger-constructora-wrapper .footer-links a { display: inline; margin: 0; font-size: 13px; }

/* ══════════════════════════════════════════════════════
   16. WHATSAPP FLOAT
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .whatsapp-container {
	position: fixed; bottom: 28px; right: 28px; z-index: 900;
	display: flex; flex-direction: column; align-items: flex-end;
}
#tiger-constructora-wrapper .whatsapp-float {
	display: flex; align-items: center; justify-content: center;
	width: 60px; height: 60px;
	background: #25D366; color: #fff;
	border: none; border-radius: 50%;
	box-shadow: 0 4px 18px rgba(37,211,104,.4);
	cursor: pointer;
	padding-bottom: max(0px, env(safe-area-inset-bottom));
	transition: transform .2s, box-shadow .2s;
}
#tiger-constructora-wrapper .whatsapp-float:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 26px rgba(37,211,104,.5);
}
#tiger-constructora-wrapper .wa-svg { width: 30px; height: 30px; fill: currentColor; color: #fff; }
#tiger-constructora-wrapper .whatsapp-menu {
	position: absolute; bottom: 74px; right: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,.15);
	width: min(280px, calc(100vw - 32px));
	padding: 14px;
	display: none; flex-direction: column; gap: 10px;
	border: 1px solid rgba(0,0,0,.06);
}
#tiger-constructora-wrapper .whatsapp-menu.active { display: flex; }
#tiger-constructora-wrapper .whatsapp-menu .menu-header {
	font-size: 11px; font-weight: 700; color: #888;
	text-transform: uppercase; letter-spacing: .5px;
	padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,.06);
}
#tiger-constructora-wrapper .whatsapp-menu .menu-item {
	display: flex; align-items: center; justify-content: space-between;
	background: #f8f9fa; padding: 10px 12px; border-radius: 8px;
	text-decoration: none; transition: background .2s;
}
#tiger-constructora-wrapper .whatsapp-menu .menu-item:hover { background: #e9ecef; }
#tiger-constructora-wrapper .whatsapp-menu .menu-info { display: flex; flex-direction: column; }
#tiger-constructora-wrapper .whatsapp-menu .menu-name  { font-size: 14px; font-weight: 700; color: #212529; }
#tiger-constructora-wrapper .whatsapp-menu .menu-role  { font-size: 11px; color: #6c757d; }
#tiger-constructora-wrapper .whatsapp-menu .menu-wa-icon { width: 18px; height: 18px; color: #25D366; }

/* ══════════════════════════════════════════════════════
   17. MODAL ÉXITO
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .form-success-overlay {
	position: fixed; inset: 0; z-index: 3000;
	background: rgba(33,28,22,.88);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden;
	transition: opacity .3s, visibility .3s;
}
#tiger-constructora-wrapper .form-success-overlay.show { opacity: 1; visibility: visible; }
#tiger-constructora-wrapper .form-success-content {
	background: var(--tc-cream);
	padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 56px);
	text-align: center;
	width: calc(100% - 40px);
	max-width: 420px;
	border-radius: 4px;
}
#tiger-constructora-wrapper .success-mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; border-radius: 50%;
	background: var(--tc-accent); color: #fff;
	font-size: 26px; font-weight: 700; margin-bottom: 18px;
}
#tiger-constructora-wrapper .form-success-content h3 { color: var(--tc-text); font-size: 20px; margin-bottom: 10px; }
#tiger-constructora-wrapper .form-success-content p  { color: var(--tc-muted); font-size: 14px; padding-bottom: 0; }
#tiger-constructora-wrapper .success-close {
	margin-top: 18px;
	font-family: 'Garet', sans-serif;
	font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .08em;
	color: #fff; background: var(--tc-espresso);
	border: 2px solid var(--tc-espresso);
	padding: 10px 26px; border-radius: 3px;
	transition: all .2s; cursor: pointer;
	display: inline-block;
}
#tiger-constructora-wrapper .success-close:hover { background: transparent; color: var(--tc-espresso); }
#tiger-constructora-wrapper .success-wa-link {
	display: block; margin-top: 14px;
	font-family: 'Garet', sans-serif;
	font-size: 14px; font-weight: 700;
	color: #25D366; text-decoration: underline;
}

/* ══════════════════════════════════════════════════════
   18. ACCESSIBILITY & UX
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper a:focus-visible,
#tiger-constructora-wrapper button:focus-visible,
#tiger-constructora-wrapper input:focus-visible,
#tiger-constructora-wrapper select:focus-visible,
#tiger-constructora-wrapper textarea:focus-visible {
	outline: 2px solid var(--tc-accent);
	outline-offset: 2px;
}

/* Smooth scroll only for scoped anchor navigation – not global html */
#tiger-constructora-wrapper { scroll-behavior: auto; }

/* Scroll margin for in-page anchors */
#tiger-constructora-wrapper section[id],
#tiger-constructora-wrapper div[id] {
	scroll-margin-top: calc(var(--tc-header-h) + 8px);
}

/* Touch optimization */
#tiger-constructora-wrapper a,
#tiger-constructora-wrapper button,
#tiger-constructora-wrapper input,
#tiger-constructora-wrapper select,
#tiger-constructora-wrapper textarea { touch-action: manipulation; }

#tiger-constructora-wrapper .clickable { cursor: pointer; }

/* ══════════════════════════════════════════════════════
   19. ANIMATIONS (reveal-on-scroll)
   All scoped to wrapper; prefers-reduced-motion is wrapper-only
   ══════════════════════════════════════════════════════ */
#tiger-constructora-wrapper .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
	transition-delay: var(--d, 0s);
	will-change: opacity, transform;
}
#tiger-constructora-wrapper .reveal.in-view { opacity: 1; transform: none; }
#tiger-constructora-wrapper .reveal-scale {
	opacity: 0; transform: scale(.95) translateY(18px);
	transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
	transition-delay: var(--d, 0s);
}
#tiger-constructora-wrapper .reveal-scale.in-view { opacity: 1; transform: none; }

/* Hero entrance */
#tiger-constructora-wrapper .hero-badge { animation: tc-fadeDown .8s ease .1s both; }
#tiger-constructora-wrapper .hero-text h1 { animation: tc-fadeUp .9s cubic-bezier(.16,1,.3,1) .2s both; }
#tiger-constructora-wrapper .hero-text p  { animation: tc-fadeUp .9s cubic-bezier(.16,1,.3,1) .35s both; }
#tiger-constructora-wrapper .hero-btn-group { animation: tc-fadeUp .9s cubic-bezier(.16,1,.3,1) .5s both; }

@keyframes tc-fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes tc-fadeDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:none; } }

/* WhatsApp menu animation */
@keyframes tc-waFadeIn { from { opacity:0; transform:translateY(8px) scale(.96); } to { opacity:1; transform:none; } }
#tiger-constructora-wrapper .whatsapp-menu.active { animation: tc-waFadeIn .25s cubic-bezier(.16,1,.3,1); }

/* Glow pulse for WhatsApp */
@keyframes tc-glowPulse {
	0%, 100% { box-shadow: 0 0 14px rgba(37,211,104,.28); }
	50%       { box-shadow: 0 0 28px rgba(37,211,104,.55); }
}
#tiger-constructora-wrapper .glow-effect { animation: tc-glowPulse 3s infinite ease-in-out; }

/* Card transitions */
#tiger-constructora-wrapper .gal-item,
#tiger-constructora-wrapper .diff-blurb {
	transition: opacity .5s, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
	will-change: transform;
}
#tiger-constructora-wrapper .gal-item img {
	transition: transform .65s cubic-bezier(.16,1,.3,1);
	will-change: transform;
}

/* prefers-reduced-motion — ONLY for wrapper elements */
@media (prefers-reduced-motion: reduce) {
	#tiger-constructora-wrapper *,
	#tiger-constructora-wrapper *::before,
	#tiger-constructora-wrapper *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* ══════════════════════════════════════════════════════
   20. RESPONSIVE  (mobile-first breakpoints)
   ══════════════════════════════════════════════════════ */

/* ── Tablet: ≤ 1024px ─────────────────────────────── */
@media (max-width: 1024px) {
	#tiger-constructora-wrapper .galeria-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	#tiger-constructora-wrapper .samsara-switcher {
		grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	}
	#tiger-constructora-wrapper .stats-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ── Tablet: ≤ 980px ─────────────────────────────── */
@media (max-width: 980px) {
	#tiger-constructora-wrapper .nav-desktop  { display: none; }
	#tiger-constructora-wrapper .header-actions { display: none; }
	#tiger-constructora-wrapper .mobile_menu_bar { display: flex; }

	/* Nosotros */
	#tiger-constructora-wrapper .nosotros-flex { flex-direction: column; }
	#tiger-constructora-wrapper .nosotros-img  { flex: none; width: 100%; }
	#tiger-constructora-wrapper .nosotros-img img { min-height: 280px; height: 320px; }
	#tiger-constructora-wrapper .nosotros-text { padding: 32px 20px; }

	/* Servicio head */
	#tiger-constructora-wrapper .servicio-head { flex-direction: column; align-items: flex-start; }

	/* Switcher → single column */
	#tiger-constructora-wrapper .samsara-switcher {
		grid-template-columns: 1fr;
		padding: 18px;
	}
	#tiger-constructora-wrapper .switcher-panel { flex-direction: column; }
	#tiger-constructora-wrapper .panel-media { width: 100%; }

	/* Stats */
	#tiger-constructora-wrapper .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

	/* Proceso */
	#tiger-constructora-wrapper .proceso-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	/* Footer */
	#tiger-constructora-wrapper .samsara-footer { padding: 56px 0 32px; }
	#tiger-constructora-wrapper .samsara-footer-inner { width: min(92%, var(--tc-row-w)); }
}

/* ── Mobile: ≤ 767px ─────────────────────────────── */
@media (max-width: 767px) {
	/* Header */
	#tiger-constructora-wrapper .tiger-header { height: var(--tc-header-s); }
	#tiger-constructora-wrapper :root { --tc-header-h: var(--tc-header-s); }

	/* Sections */
	#tiger-constructora-wrapper .tg_pb_section,
	#tiger-constructora-wrapper .tg-section { padding: 48px 0; }
	#tiger-constructora-wrapper .galeria-section { padding: 48px 0; }

	/* Hero */
	#tiger-constructora-wrapper .hero-section { padding-top: calc(var(--tc-header-s) + 20px); }
	#tiger-constructora-wrapper .hero-btn-group > * { width: 100%; text-align: center; }

	/* Stats */
	#tiger-constructora-wrapper .stats-ribbon { padding: 40px 0; }
	#tiger-constructora-wrapper .stats-header { margin-bottom: 32px; }
	#tiger-constructora-wrapper .stats-grid { grid-template-columns: 1fr; gap: 0; }
	#tiger-constructora-wrapper .stat-card { border-top: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
	#tiger-constructora-wrapper .stat-card:last-child { border-bottom: none; }

	/* Diferenciales */
	#tiger-constructora-wrapper .diffs { grid-template-columns: 1fr; }

	/* Proceso */
	#tiger-constructora-wrapper .proceso-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	/* Gallery */
	#tiger-constructora-wrapper .galeria-grid { grid-template-columns: 1fr; gap: 12px; }

	/* Galería filter: horizontal scroll on mobile */
	#tiger-constructora-wrapper .project-filters {
		flex-wrap: nowrap; overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px; scrollbar-width: none;
	}
	#tiger-constructora-wrapper .project-filters::-webkit-scrollbar { display: none; }
	#tiger-constructora-wrapper .filter-btn { flex: 0 0 auto; }

	/* Form */
	#tiger-constructora-wrapper .form-row { grid-template-columns: 1fr; }

	/* Footer */
	#tiger-constructora-wrapper .samsara-footer .tg_pb_row { flex-direction: column; gap: 32px; }
	#tiger-constructora-wrapper .footer-bottom { flex-direction: column; text-align: center; }

	/* WhatsApp */
	#tiger-constructora-wrapper .whatsapp-container { bottom: max(16px, env(safe-area-inset-bottom)); right: 16px; }
	#tiger-constructora-wrapper .whatsapp-float { width: 54px; height: 54px; }
	#tiger-constructora-wrapper .wa-svg { width: 26px; height: 26px; }
	#tiger-constructora-wrapper .whatsapp-menu { bottom: 68px; }
}

/* ── Small mobile: ≤ 479px ───────────────────────── */
@media (max-width: 479px) {
	#tiger-constructora-wrapper .proceso-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	#tiger-constructora-wrapper .form-success-content { padding: 28px 20px; }
	#tiger-constructora-wrapper .samsara-footer .tg_pb_column { flex: 1 1 100%; }
	#tiger-constructora-wrapper .hero-btn-group { gap: 10px; }
}

/* ── Very small: ≤ 360px ─────────────────────────── */
@media (max-width: 360px) {
	#tiger-constructora-wrapper .samsara-title { letter-spacing: -.5px; }
}