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

:root {
  --bg:       #F5F4F0;
  --white:    #FFFFFF;
  --black:    #0E0E0E;
  --red:      #C8150A;
  --gray:     #8A8A8A;
  --gray-lt:  #D8D6D2;
  --border:   #E0DED9;
  --font:     'Darker Grotesque', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.tv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 0 52px;
  height: 104px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
  border-bottom: none;
  pointer-events: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
/* Al hacer scroll: fondo gris claro de marca sólido, para que el logo
   y el menú nunca se topen con el contenido que pasa por debajo */
.tv-nav.tv-nav--scrolled {
  background: var(--bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  height: 84px;
}
.tv-nav.tv-nav--scrolled .tv-nav-links a {
  color: var(--black);
  text-shadow: none;
  opacity: 0.6;
}
.tv-nav.tv-nav--scrolled .tv-nav-links a:hover { opacity: 1; }
.tv-nav.tv-nav--scrolled .tv-nav-burger span { background: var(--black) !important; }
.tv-nav.tv-nav--scrolled .tv-logo-img { height: 54px; transition: height 0.3s ease; }
.tv-nav > * { pointer-events: all; }
.tv-nav-logo {
  display: inline-flex; align-items: center;
  background: transparent;
  text-decoration: none;
  transition: opacity 0.2s;
}
.tv-nav-logo:hover { opacity: 0.85; }
.tv-logo-img { height: 68px; width: auto; display: block; transition: height 0.3s ease; }
.tv-nav-right {
  display: flex; align-items: center;
  padding-right: 96px;
}
.tv-nav-links {
  display: flex; gap: 36px; list-style: none;
  margin-right: 40px;
}
.tv-nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: #fff;
  text-decoration: none; opacity: 0.75; transition: opacity 0.2s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.tv-nav-links a:hover { opacity: 1; }
.tv-nav-cta {
  font-size: 12px; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0 28px; height: 104px; line-height: 104px;
  background: var(--red); color: #fff !important;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; white-space: nowrap;
  transition: background 0.2s;
}
.tv-nav-cta:hover { background: #a51008; }

/* Hamburger button — hidden on desktop */
.tv-nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  margin-right: 4px;
}
.tv-nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 0 auto;
  transition: transform 0.25s, opacity 0.25s;
}
.tv-nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tv-nav-burger.open span:nth-child(2) { opacity: 0; }
.tv-nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu */
.tv-mobile-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.tv-mobile-overlay.open { opacity: 1; pointer-events: all; }
.tv-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 78vw; max-width: 320px;
  background: var(--black);
  z-index: 151;
  padding: 90px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.tv-mobile-menu.open { transform: translateX(0); }
.tv-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.tv-mobile-menu ul li a {
  display: block; padding: 14px 0;
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; color: #fff; text-decoration: none;
  border-bottom: 1px solid #1e1e1e;
}

/* ── HERO ── */
.tv-hero {
  position: relative;
  height: 82vh; min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.tv-hero-img {
  grid-column: 1 / 2;
  grid-row: 1;
  position: relative; z-index: 1;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: #d8d8d6;
}
/* Dark gradient at bottom-left so text stays legible over the photo */
.tv-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 30%,
    rgba(0,0,0,0.0) 55%
  ), linear-gradient(
    to right,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.0) 40%
  );
}
.tv-hero-left {
  grid-column: 1 / 2;
  grid-row: 1;
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 60px 52px;
}
.tv-hero-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.tv-hero-title {
  font-size: clamp(64px, 7.5vw, 120px);
  font-weight: 300; line-height: 0.88;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.tv-hero-title em { font-style: normal; color: var(--red); font-weight: 900; }
.tv-hero-desc {
  font-size: 16px; font-weight: 500; line-height: 1.65;
  color: rgba(255,255,255,0.90); max-width: 320px; margin-bottom: 24px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.tv-hero-actions { display: flex; gap: 10px; }
.tv-btn {
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 13px 28px;
  background: var(--red); color: #fff !important;
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.tv-btn:hover { background: #a51008; }
.tv-btn-ghost {
  background: rgba(255,255,255,0.08); color: #fff !important;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  transition: all 0.2s;
}
.tv-btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

/* Right strip */
.tv-hero-strip {
  grid-column: 2 / 3;
  grid-row: 1;
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
}
.tv-strip-dark {
  flex: 0 0 58%; background: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
}
.tv-strip-red {
  flex: 1; background: var(--red);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 20px 0;
}
.tv-strip-label {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 9px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.tv-strip-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ── SECTIONS ── */
.tv-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: #555; margin-bottom: 20px;
}
.tv-title {
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900; line-height: 0.93;
  letter-spacing: -0.025em; text-transform: uppercase;
  color: var(--black); margin-top: 6px; margin-bottom: 8px;
}
.tv-title em { font-style: normal; color: var(--red); }

/* ── AREAS (accordion) ── */
.tv-areas { padding: 150px 48px 0; }
.tv-areas-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 48px; margin-bottom: 48px;
}
.tv-areas-sub {
  font-size: 17px; font-weight: 500; line-height: 1.7;
  color: #3A3A3A; max-width: 360px;
}
.tv-areas-cols {
  display: flex; height: 560px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tv-area {
  position: relative; flex: 1; min-width: 64px;
  border-right: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.4,0,0.2,1);
  background: var(--bg);
  text-decoration: none; display: block;
}
.tv-area:last-child { border-right: none; }
.tv-area:hover { flex: 5; }
.tv-area-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%) brightness(0.96) contrast(0.88);
  transition: filter 0.65s ease, transform 0.65s ease;
  opacity: 0.85;
}
.tv-area:hover .tv-area-bg {
  filter: grayscale(100%) brightness(0.28) contrast(1.1);
  transform: scale(1.04);
}
.tv-area-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.20) 45%, transparent 100%);
  opacity: 0; transition: opacity 0.5s;
}
.tv-area:hover .tv-area-overlay { opacity: 1; }
.tv-area-label {
  position: absolute; bottom: 26px; left: 18px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  white-space: nowrap;
  font-size: 17px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--black);
  transition: opacity 0.25s; z-index: 2;
}
.tv-area:hover .tv-area-label { opacity: 0; }
.tv-area-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.tv-area-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--red);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.tv-area:hover .tv-area-num { opacity: 1; transform: translateY(0); }
.tv-area-info {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.35s 0.15s, transform 0.35s 0.15s;
}
.tv-area:hover .tv-area-info { opacity: 1; transform: translateY(0); }
.tv-area-title {
  font-size: 42px; font-weight: 900; line-height: 0.93;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; margin-bottom: 12px; white-space: nowrap;
}
.tv-area-desc {
  font-size: 17px; font-weight: 500; line-height: 1.6;
  color: rgba(255,255,255,0.80); max-width: 300px; margin-bottom: 22px;
}
.tv-area-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff !important;
  background: var(--red); padding: 10px 20px;
  text-decoration: none; width: fit-content;
  transition: background 0.2s;
}
.tv-area-cta:hover { background: #a51008; }

/* ── CATALOG ── */
.tv-catalog { padding: 96px 48px; }
.tv-catalog-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 40px;
}
.tv-filters {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.tv-filter {
  font-family: var(--font);
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #555;
  padding: 12px 22px; cursor: pointer;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color 0.2s, border-color 0.2s;
}
.tv-filter:hover { color: var(--black); }
.tv-filter.active { color: var(--red); border-bottom-color: var(--red); }

.tv-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
}
@media (max-width: 1100px) { .tv-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 800px)  { .tv-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px)  { .tv-grid { grid-template-columns: 1fr; } }

.tv-card {
  background: var(--bg); display: flex; flex-direction: column;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; color: inherit; overflow: hidden;
}
.tv-card:hover { background: var(--white); }
.tv-card.hidden { display: none; }
.tv-card-img {
  aspect-ratio: 4/3; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  border-bottom: 1px solid var(--border);
}
.tv-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  transition: transform 0.4s ease;
}
.tv-card:hover .tv-card-img img { transform: scale(1.06); }
.tv-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px;
  background: var(--red); color: #fff;
}
.tv-card-body {
  padding: 18px 20px 14px;
  display: flex; flex-direction: column; gap: 5px; flex: 1;
}
.tv-card-cat {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.tv-card-name {
  font-size: 18px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--black); line-height: 1.1;
}
.tv-card-desc {
  font-size: 15px; font-weight: 500; line-height: 1.55;
  color: #3A3A3A; flex: 1; margin-top: 2px;
}
.tv-card-footer {
  padding: 12px 16px 12px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.tv-card-spec { font-size: 12px; font-weight: 700; color: #555; }
.tv-card-add {
  font-family: var(--font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  background: var(--red);
  padding: 10px 16px;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  border: none; white-space: nowrap;
}
.tv-card-add:hover { background: var(--black); transform: translateY(-1px); }

.tv-catalog-more {
  text-align: center; padding-top: 40px;
}

/* ── ABOUT ── */
.tv-about {
  padding: 96px 48px;
  background: var(--black);
}
.tv-about .tv-eyebrow { color: var(--red); }
.tv-about .tv-title { color: #fff; }
.tv-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 56px;
}
@media (max-width: 900px) { .tv-about-grid { grid-template-columns: 1fr; gap: 48px; } }
.tv-about-text p {
  font-size: 18px; font-weight: 500; line-height: 1.80;
  color: #999; margin-bottom: 20px;
}
.tv-about-text p strong { color: #ddd; font-weight: 700; }

.tv-contact-block {
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid #1E1E1E;
  display: flex; flex-direction: column; gap: 14px;
}
.tv-contact-item {
  display: flex; flex-direction: column; gap: 2px;
}
.tv-contact-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
}
.tv-contact-item a, .tv-contact-item span {
  font-size: 16px; font-weight: 600; color: #ddd;
  text-decoration: none;
}
.tv-contact-item a:hover { color: #fff; }
.tv-values { display: flex; flex-direction: column; }
.tv-value {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid #1E1E1E; align-items: flex-start;
}
.tv-value:first-child { border-top: 1px solid #1E1E1E; }
.tv-value-num {
  font-size: 11px; font-weight: 800; color: var(--red);
  letter-spacing: 0.10em; flex-shrink: 0; padding-top: 2px;
}
.tv-value-title {
  font-size: 17px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 5px; color: #fff;
}
.tv-value-desc { font-size: 16px; font-weight: 500; line-height: 1.6; color: #777; }

/* ── FOOTER ── */
.tv-footer {
  background: var(--black); padding: 72px 48px 36px;
  border-top: 1px solid #1a1a1a;
}
.tv-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid #1a1a1a; margin-bottom: 32px;
}
@media (max-width: 800px) { .tv-footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.tv-footer-logo {
  display: inline-flex; align-items: center;
  background: transparent;
  text-decoration: none; margin-bottom: 18px;
}
.tv-logo-img--footer { height: 64px; }
.tv-footer p { font-size: 14px; font-weight: 500; line-height: 1.7; color: #C9C9C9; max-width: 240px; }
.tv-footer h4 {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: #EDEDED; margin-bottom: 16px;
}
.tv-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tv-footer ul li a {
  font-size: 14px; font-weight: 600; color: #E5E5E5;
  text-decoration: none; transition: color 0.2s;
}
.tv-footer ul li a:hover { color: var(--red); }
.tv-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.tv-footer-bottom p { font-size: 12px; color: #999; max-width: none; }

/* ── QUOTE CART ── */
.tv-cart-bubble {
  position: fixed; bottom: 36px; right: 36px; z-index: 200;
}
.tv-cart-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--red); color: #fff;
  padding: 18px 28px;
  cursor: pointer; border: none;
  font-family: var(--font);
  font-size: 13px; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 8px 40px rgba(200,21,10,0.45);
  transition: background 0.2s, transform 0.15s;
}
.tv-cart-btn:hover { background: #a51008; transform: translateY(-3px); }
.tv-cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: #fff; color: var(--red);
  font-size: 12px; font-weight: 900; border-radius: 50%;
}
.tv-cart-count.hidden { display: none; }

.tv-cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: #fff;
  border-left: 1px solid var(--border);
  z-index: 300;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.10);
}
.tv-cart-panel.open { transform: translateX(0); }
.tv-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35); z-index: 299;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.tv-cart-overlay.open { opacity: 1; pointer-events: all; }
.tv-cart-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.tv-cart-title { font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--black); }
.tv-cart-sub { font-size: 12px; font-weight: 500; color: var(--gray); margin-top: 2px; }
.tv-cart-close {
  width: 36px; height: 36px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--black);
}
.tv-cart-items { flex: 1; overflow-y: auto; }
.tv-cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 12px; color: var(--gray);
  padding: 40px; text-align: center;
  font-size: 15px; font-weight: 500;
}
.tv-cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
}
.tv-cart-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.tv-cart-item-name {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; color: var(--black); line-height: 1.3;
}
.tv-cart-item-cat {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray); margin-top: 2px;
}
.tv-cart-item-remove {
  width: 28px; height: 28px; flex-shrink: 0; margin-left: auto;
  background: none; border: 1px solid var(--border);
  cursor: pointer; font-size: 14px; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.tv-cart-item-remove:hover { background: var(--red); border-color: var(--red); color: #fff; }
.tv-cart-footer {
  flex-shrink: 0; border-top: 1px solid var(--border);
  padding: 24px 28px 28px;
}
.tv-cart-form-title {
  font-size: 13px; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--black); margin-bottom: 16px;
}
.tv-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.tv-field label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray);
}
.tv-field input {
  font-family: var(--font);
  font-size: 14px; font-weight: 500;
  padding: 10px 12px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--black); outline: none;
}
.tv-field input:focus { border-color: var(--black); }
.tv-wa-btn {
  width: 100%; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px;
  background: #25D366; color: #fff;
  border: none; cursor: pointer;
  font-family: var(--font);
  font-size: 13px; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.tv-wa-btn:hover { background: #20b358; }
.tv-toast {
  position: fixed; bottom: 100px; right: 36px; z-index: 400;
  background: var(--black); color: #fff;
  padding: 12px 20px;
  font-size: 13px; font-weight: 700;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.tv-toast.show { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .tv-nav { padding-left: 20px; }
  .tv-nav-links { display: none; }
  .tv-nav-right { padding-right: 12px; }
  .tv-nav-burger { display: flex; }
  .tv-areas-cols { flex-direction: column; height: auto; }
  .tv-area { min-height: 120px; border-right: none; border-bottom: 1px solid var(--border); }
  .tv-area:hover { flex: 1; min-height: 380px; }
  .tv-areas-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  /* Hero ocupa todo el ancho, sin franja lateral */
  .tv-hero {
    grid-template-columns: 1fr;
    height: 100svh; min-height: 600px;
  }
  .tv-hero-img { background-position: 65% 15%; }
  .tv-hero-img::after {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 22%,
      rgba(0,0,0,0.40) 42%,
      rgba(0,0,0,0.10) 62%,
      rgba(0,0,0,0.0) 78%
    ) !important;
  }
  .tv-hero-left { padding: 0 20px 100px 20px; }
  .tv-hero-tag { font-size: 11px; margin-bottom: 14px; }
  .tv-hero-title { font-size: clamp(48px, 16vw, 68px); margin-bottom: 20px; }
  .tv-hero-desc { font-size: 16px; max-width: 300px; margin-bottom: 20px; }
  .tv-hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .tv-hero-actions .tv-btn { width: 100%; text-align: center; padding: 14px 20px; font-size: 13px; }

  /* Nav: ocultamos el botón Cotizar flotante, solo queda logo + hamburguesa */
  .tv-nav { height: 78px; padding-left: 16px; }
  .tv-nav-cta { display: none; }
  .tv-nav-right { padding-right: 8px; }
  .tv-logo-img { height: 44px; }

  /* Franja lateral roja/gris oculta por completo en mobile */
  .tv-hero-strip { display: none; }

  /* Botón "Mi Cotización" flotante: más chico y no choca con los botones del hero */
  .tv-cart-bubble { bottom: 18px; right: 18px; }
  .tv-cart-btn { padding: 13px 18px; font-size: 11px; gap: 8px; }
  .tv-cart-count { width: 19px; height: 19px; font-size: 10px; }

  /* Áreas: cajas horizontales grandes, siempre visibles sobre la foto,
     solo título + botón (sin descripción, sin número, sin label vertical) */
  .tv-areas { padding: 64px 20px 0; }
  .tv-areas-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tv-areas-sub { font-size: 16px; max-width: 100%; }
  .tv-areas-cols {
    flex-direction: column; height: auto;
    gap: 12px;
  }
  .tv-area {
    min-height: 190px;
    border: none;
    flex: none !important;
  }
  .tv-area-bg {
    filter: grayscale(100%) brightness(0.5) contrast(1.05) !important;
  }
  .tv-area-overlay {
    opacity: 1 !important;
    background: linear-gradient(to top, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.35) 65%, rgba(14,14,14,0.15) 100%) !important;
  }
  .tv-area-label { display: none; }
  .tv-area-num { display: none; }
  .tv-area-info {
    opacity: 1 !important; transform: none !important;
  }
  .tv-area-desc { display: none; }
  .tv-area-content { padding: 22px; justify-content: flex-end; }
  .tv-area-title { font-size: 30px; margin-bottom: 14px; }
  .tv-area-cta { font-size: 11px; padding: 10px 18px; }

  /* Catálogo, about, footer: textos más grandes y legibles */
  .tv-areas, .tv-catalog, .tv-about, .tv-footer { padding-left: 20px; padding-right: 20px; }
  .tv-title { font-size: clamp(30px, 9.5vw, 44px); }
  .tv-catalog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tv-filters {
    overflow-x: visible;
    flex-wrap: wrap;
    gap: 4px 0;
    border-bottom: none;
  }
  .tv-filter {
    font-size: 11px;
    padding: 10px 14px;
    flex: 0 0 auto;
  }
  .tv-cart-panel { width: 100vw; }

  .tv-hero-desc, .tv-areas-sub, .tv-card-desc, .tv-about-text p,
  .tv-value-desc, .tv-contact-item a, .tv-contact-item span {
    font-size: 16px !important;
  }
  .tv-card-name { font-size: 19px; }
  .tv-value-title { font-size: 18px; }
}

