/* ===== JK Pinturas — Stitch Modern Atelier Design System ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-background);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-headline);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: clamp(28px, 3.5vw, 44px);
}

em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.eyebrow.light {
  opacity: 0.55;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  background: var(--jk-blue-deep);
  transform: translateY(-1px);
}

.btn-primary .arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FAF6EE;
  color: #0f1b3d;
  display: grid;
  place-items: center;
}

.btn-primary .arrow svg {
  width: 13px;
  height: 13px;
}


.btn-ghost {
  border: 1px solid var(--outline-variant);
  color: var(--on-background);
}

.btn-ghost:hover {
  background: var(--on-background);
  color: var(--background);
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--outline-variant);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--container-padding);
  gap: 24px;
  position: relative;
}

.brand .logo-img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.main-nav a {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--on-background);
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 0.55;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
}

.lang-switch button {
  padding: 7px 18px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--on-background);
  transition: all 0.2s;
  border: none;
  background: transparent;
}

.lang-switch button.active {
  background: var(--primary);
  color: var(--on-primary);
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background: var(--background);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.renova-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-bottom: -40px;
}

.brush-img {
  width: 110%;
  max-width: 720px;
  height: auto;
  display: block;
  margin-left: -60px;
  filter: drop-shadow(0 22px 40px rgba(30, 91, 198, 0.18));
}

.hero-lead {
  font-size: 18px;
  opacity: 0.78;
  max-width: 420px;
  margin: 24px 0 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Swatches */
.hero-swatches {
  position: relative;
  min-height: 600px;
}

.swatch {
  position: absolute;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 14px;
  box-shadow: 0 18px 36px -10px rgba(14, 14, 12, 0.32);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.swatch:hover {
  transform: translateY(-6px) scale(1.04) !important;
  box-shadow: 0 36px 70px -12px rgba(14, 14, 12, 0.42);
  z-index: 20;
}

.swatch-mark {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.swatch-name {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.s-perla {
  top: 0%;
  left: 5%;
  width: 200px;
  height: 130px;
  transform: rotate(-6deg);
  background: linear-gradient(45deg, rgb(245, 235, 210) 0%, rgb(225, 205, 175) 100%);
  color: var(--on-background);
}

.s-azul {
  top: 3%;
  right: 5%;
  width: 200px;
  height: 130px;
  transform: rotate(7deg);
  background: linear-gradient(45deg, rgb(55, 110, 220) 0%, rgb(25, 65, 145) 100%);
}

.s-verde {
  top: 22%;
  left: 15%;
  width: 200px;
  height: 130px;
  transform: rotate(-3deg);
  background: linear-gradient(45deg, rgb(140, 195, 80) 0%, rgb(95, 150, 45) 100%);
}

.s-fiesta {
  top: 24%;
  right: 0%;
  width: 220px;
  height: 145px;
  transform: rotate(-8deg);
  background: linear-gradient(45deg, rgb(245, 130, 60) 0%, rgb(200, 85, 25) 100%);
}

.s-lila {
  top: 44%;
  left: 2%;
  width: 200px;
  height: 135px;
  transform: rotate(4deg);
  background: linear-gradient(45deg, rgb(140, 80, 200) 0%, rgb(90, 40, 145) 100%);
}

.s-petroleo {
  top: 46%;
  left: 35%;
  width: 215px;
  height: 140px;
  transform: rotate(-2deg);
  background: linear-gradient(45deg, rgb(45, 100, 120) 0%, rgb(20, 60, 75) 100%);
}

.s-rio {
  top: 52%;
  right: 5%;
  width: 195px;
  height: 130px;
  transform: rotate(8deg);
  background: linear-gradient(45deg, rgb(70, 170, 90) 0%, rgb(35, 115, 45) 100%);
}

.s-beige {
  top: 70%;
  left: 10%;
  width: 195px;
  height: 125px;
  transform: rotate(-7deg);
  background: linear-gradient(45deg, rgb(235, 180, 65) 0%, rgb(180, 120, 30) 100%);
  color: var(--on-background);
}

.s-rojo {
  top: 72%;
  left: 35%;
  width: 200px;
  height: 130px;
  transform: rotate(2deg);
  background: linear-gradient(45deg, rgb(205, 65, 65) 0%, rgb(140, 30, 30) 100%);
}

.s-grafito {
  top: 88%;
  left: 22%;
  width: 175px;
  height: 115px;
  transform: rotate(-3deg);
  background: linear-gradient(45deg, rgb(70, 70, 70) 0%, rgb(30, 30, 30) 100%);
}

.s-perla .swatch-mark,
.s-beige .swatch-mark {
  color: rgba(14, 14, 12, 0.55);
}

.s-perla .swatch-name,
.s-beige .swatch-name {
  color: rgba(14, 14, 12, 0.85);
  text-shadow: none;
}

/* Color Marquee */
.color-marquee {
  overflow: hidden;
  background: var(--background);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 55s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 72px;
  flex-shrink: 0;
  cursor: pointer;
  transition: width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.marquee-swatch::after {
  content: 'Clique para copiar';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-body);
  font-size: 10px;
  color: var(--on-background);
  background: var(--surface-container-highest);
  padding: 3px 6px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  pointer-events: none;
}

.marquee-swatch:hover::after {
  opacity: 1;
  visibility: visible;
}

.marquee-swatch:hover {
  width: 240px;
}

.marquee-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s;
  pointer-events: none;
  white-space: nowrap;
}

.marquee-swatch:hover .marquee-label {
  opacity: 1;
  transform: translateY(0);
}

.marquee-swatch.light .marquee-label {
  color: var(--on-background);
}

.marquee-swatch.light::after {
  color: var(--on-background);
  background: var(--surface-container-highest);
}

.marquee-swatch.dark .marquee-label {
  color: white;
}

.marquee-swatch.dark::after {
  color: white;
  background: var(--on-background);
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--outline-variant);
  background: var(--surface-container-low);
  padding: 18px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -0.01em;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats-section {
  padding: 72px var(--container-padding);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--outline-variant);
  border-block: 1px solid var(--outline-variant);
}

.stat-item {
  background: var(--background);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.stat-value {
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-weight: 500;
  font-family: var(--f-display);
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Sections */
.lines-section,
.video-section,
.brands-section,
.contact-section {
  padding: 96px var(--container-padding);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-title-group h2 em,
.contact-block h3 em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.section-desc {
  max-width: 420px;
  opacity: 0.7;
}

/* Lines Cards */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.line-card {
  background: var(--surface-container);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.line-card:hover {
  transform: translateY(-6px);
}

.line-cap {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background-size: cover;
  background-position: center;
}

.line-cap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
  mix-blend-mode: multiply;
}

.line-cap>* {
  position: relative;
  z-index: 1;
}

.line-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.line-tag {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.line-cap h3 {
  margin: 0;
  color: white;
  font-size: 24px;
  letter-spacing: -0.015em;
  font-weight: 500;
  line-height: 1.1;
}

.line-cap h3 em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
}

.line-card[data-line="auto"] .line-cap {
  background-color: #B8302A;
  background-image: linear-gradient(0deg, rgba(184, 48, 42, 0.55), rgba(184, 48, 42, 0.25)), url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=800&q=80&auto=format&fit=crop');
}

.line-card[data-line="imob"] .line-cap {
  background-color: #B8794A;
  background-image: linear-gradient(0deg, rgba(184, 121, 74, 0.45), rgba(184, 121, 74, 0.15)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80&auto=format&fit=crop');
}

.line-card[data-line="ind"] .line-cap {
  background-color: #1A4FCE;
  background-image: linear-gradient(0deg, rgba(26, 79, 206, 0.55), rgba(26, 79, 206, 0.2)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=80&auto=format&fit=crop');
}

.line-card[data-line="ferr"] .line-cap {
  background-color: #6FB12A;
  background-image: linear-gradient(0deg, rgba(111, 177, 42, 0.55), rgba(111, 177, 42, 0.2)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?w=800&q=80&auto=format&fit=crop');
}

.line-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.line-tagline {
  font-family: var(--f-editorial);
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  color: var(--on-background);
}

.line-desc {
  opacity: 0.85;
  font-size: 15px;
  line-height: 1.5;
}

.line-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.line-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-full);
  background: var(--background);
}

/* About */
.about-section {
  padding: 96px var(--container-padding);
  background: var(--on-background);
  color: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content {
  max-width: 520px;
}

.about-content h2 {
  margin: 16px 0 24px;
}

.about-content h2 em {
  color: var(--primary-fixed);
}

.about-content p {
  font-size: 18px;
  opacity: 0.78;
  line-height: 1.55;
}

.about-highlight {
  text-align: center;
}

.years {
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
  font-family: var(--f-display);
}

.years em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-fixed);
}

.years-caption {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 8px;
}

/* Video */
.video-player {
  margin-top: 32px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-container);
}

.video-frame iframe {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-frame lite-youtube {
  display: block;
  width: 100%;
}

#jk-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

#jk-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#jk-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 67, 161, 0.4);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

#jk-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

#jk-video-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  color: white;
}

.video-caption {
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: center;
}

/* JK Video Player - Custom YouTube-style */
.jk-video-player {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 32px;
}

.jk-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.jk-video-thumbnail {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.jk-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}

.jk-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.jk-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.jk-play-btn svg {
  width: 32px;
  height: 32px;
  color: #f00;
  margin-left: 4px;
}

.jk-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
}

.jk-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.jk-progress {
  width: 30%;
  height: 100%;
  background: #f00;
  border-radius: 2px;
}

.jk-video-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jk-video-title {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.jk-video-time {
  color: #fff;
  font-size: 12px;
  font-family: var(--f-mono);
  opacity: 0.8;
}

/* JK Video Modal */
.jk-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.jk-video-modal.active {
  display: flex;
}

.jk-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
}

.jk-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.jk-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.jk-modal-loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 1;
}

.jk-video-modal.active .jk-modal-loader {
  display: flex;
}

.jk-modal-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.jk-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.jk-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.jk-modal-close svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Brands */
.brands-section {
  background: var(--surface-container-low);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--outline-variant);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.brand-card {
  background: var(--background);
  aspect-ratio: 3/2;
  display: grid;
  place-content: center;
  padding: 20px;
  transition: background 0.2s;
  gap: 4px;
  min-height: 140px;
}

.brand-card .brand-logo {
  max-width: 95%;
  max-height: 85%;
  object-fit: contain;
  align-self: center;
  justify-self: center;
}

.brand-card-empty .brand-logo {
  max-width: 100%;
  max-height: 90%;
}

.brand-card-empty {
  background: var(--surface-container-low);
}

.brand-card-empty:hover {
  background: #FF6B35;
}

.brand-card-empty:hover .brand-logo {
  opacity: 0.9;
}

.brand-card-1:hover { background: #FF6B35; }
.brand-card-2:hover { background: #2D936C; }
.brand-card-3:hover { background: #0043A1; }
.brand-card-3:hover .brand-name, 
.brand-card-3:hover .brand-category { color: #fff; }
.brand-card-4:hover { background: #C23B22; }
.brand-card-4:hover .brand-name, 
.brand-card-4:hover .brand-category { color: #fff; }
.brand-card-5:hover { background: #5B4B8A; }
.brand-card-5:hover .brand-name, 
.brand-card-5:hover .brand-category { color: #fff; }
.brand-card-6:hover { background: #E8B931; }
.brand-card-7:hover { background: #4A4A4A; }
.brand-card-7:hover .brand-name, 
.brand-card-7:hover .brand-category { color: #fff; }
.brand-card-8:hover { background: #17A2B8; }

.brand-name {
  font-family: var(--f-headline);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--on-background);
  opacity: 0.8;
  text-align: center;
}

.brand-category {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--on-surface-variant);
  text-align: center;
  text-transform: lowercase;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.map-container {
  margin-top: 16px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--on-background);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.map-pin {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 67, 161, 0.35);
  z-index: 2;
}

.address {
  margin-top: 20px;
  display: grid;
  gap: 6px;
  font-size: 15px;
  opacity: 0.8;
}

.address strong {
  opacity: 1;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface-container);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--f-body);
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--outline);
  background: var(--background);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  min-height: 48px;
}

.contact-form .btn-submit .arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-channels {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.channel-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  text-decoration: none;
}

.channel-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.channel-text {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-background);
}

.channel-link:hover .channel-icon {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(36%) sepia(97%) saturate(1742%) hue-rotate(203deg) brightness(96%) contrast(93%);
}

.channel-link:hover {
  background: var(--on-background);
  color: var(--background);
  transform: translateX(4px);
}

.channel-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-bottom: 4px;
}

.channel-value {
  font-size: 16px;
  font-weight: 500;
}

.channel-arrow {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

/* Footer */
.site-footer {
  padding: 64px var(--container-padding) 32px;
  background: var(--on-background);
  color: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-weight: 500;
  margin: 0;
}

.footer-tagline em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-fixed);
}

.footer-nav h4,
.footer-address h4,
.footer-contact h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-address ul,
.footer-contact ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-contact a {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
  opacity: 1;
  color: var(--primary-fixed);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* WhatsApp FAB */

.wa-fab:hover {
  transform: scale(1.1);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --container-padding: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-swatches {
    min-height: 500px;
    transform: scale(0.85);
    transform-origin: center top;
  }

  .lines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  .header-inner {
    padding: 16px var(--container-padding);
  }

  .main-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .header-tools {
    display: none !important;
  }

  .hero {
    padding: 40px 0 64px;
  }

  .hero-swatches {
    transform: scale(0.85);
    min-height: 500px;
  }

  .brush-img {
    margin-left: -30px;
    width: 115%;
  }

  .lines-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-card {
    min-height: 80px;
    padding: 12px;
  }

  .brand-card .brand-logo {
    max-width: 86%;
    max-height: 86%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .play-button {
    width: 72px;
    height: 72px;
  }

  .play-button svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-swatches {
    transform: scale(0.75);
    min-height: 450px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.active {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.active .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--background);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--on-background);
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
}

.mobile-lang-switch {
  display: flex;
  gap: 8px;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

.mobile-lang-switch button {
  padding: 8px 16px;
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-full);
  font-family: var(--f-mono);
  font-size: 12px;
  cursor: pointer;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
  transition: all 0.2s ease;
  color: var(--on-background);
}

.mobile-lang-switch button.active {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li {
  margin: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.mobile-nav-links a:hover {
  background: var(--surface-container);
}

.mobile-cta {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}