/* =========================================
   MULTISERVICIOS CAPA — PREMIUM STYLES
   Color palette extracted from gold logo
   ========================================= */

/* ---- TOKENS ---- */
:root {
  --gold-primary:     #C9A021;
  --gold-light:       #E8BD4A;
  --gold-dark:        #8B6912;
  --gold-glow:        rgba(201, 160, 33, 0.25);
  --gold-glow-strong: rgba(201, 160, 33, 0.5);

  --bg-deepblack:  #080808;
  --bg-dark:       #0f0f0f;
  --bg-surface:    #141414;
  --bg-elevated:   #1c1c1c;
  --bg-hover:      #222222;

  --text-primary:  #f0eee8;
  --text-secondary:#a09a8a;
  --text-muted:    #5a5650;
  --text-gold:     #C9A021;

  --border-subtle: rgba(201, 160, 33, 0.12);
  --border-mid:    rgba(201, 160, 33, 0.28);
  --border-strong: rgba(201, 160, 33, 0.55);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-gold: 0 0 40px rgba(201, 160, 33, 0.2), 0 0 80px rgba(201, 160, 33, 0.08);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);

  --transition-fast:   0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-smooth: 0.4s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   0.7s cubic-bezier(0.4,0,0.2,1);
  --transition-spring: 0.5s cubic-bezier(0.34,1.56,0.64,1);

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-deepblack);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CANVAS & CURSOR ---- */
#particle-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
#cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,33,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative; z-index: 2;
}

/* ---- UTILITY ---- */
.gold-text { 
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.outline-text {
  -webkit-text-stroke: 1.5px rgba(201,160,33,0.6);
  color: transparent;
}
.mono-text { font-family: var(--font-mono); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-primary);
  margin-bottom: 1rem;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-desc {
  max-width: 540px; margin-top: 1rem;
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 1rem auto 0; }

/* ---- ANIMATION CLASSES ---- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fadeInLeft"] { transform: translateX(-40px); }
[data-animate="fadeInRight"] { transform: translateX(40px); }
[data-animate].in-view { opacity: 1; transform: translate(0); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #080808; font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(201,160,33,0.35);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  opacity: 0; transition: var(--transition-fast);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,160,33,0.5); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary--lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-primary--full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--border-mid);
  color: var(--text-primary); font-weight: 500; font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { 
  border-color: var(--gold-primary); color: var(--gold-primary);
  background: var(--gold-glow); transform: translateY(-2px);
}
.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--gold-primary); color: var(--gold-primary);
  font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}
.btn-gold-outline:hover { background: var(--gold-glow); transform: translateX(4px); }
.arrow-icon { transition: transform var(--transition-fast); }
.btn-gold-outline:hover .arrow-icon { transform: translateX(4px); }

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; transition: var(--transition-smooth); clip-path: inset(2px 0); }
.navbar.scrolled .logo-img { height: 44px; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}
.navbar.scrolled .nav-brand-name { font-size: 1rem; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}
.nav-link:hover { color: var(--gold-primary); }
.nav-link:hover::after { width: 60%; }

.nav-cta {
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #080808; font-size: 0.9rem; font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 16px rgba(201,160,33,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(201,160,33,0.5); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
  position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition-smooth);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE NAV OVERLAY (body-level, no backdrop-filter ancestor) ---- */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 8, 0.99);
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  width: 100%;
  padding: 0 2rem;
}
.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
  text-align: center; width: 100%;
}
.mobile-nav-link:hover { color: var(--gold-primary); background: rgba(201,160,33,0.06); }
.mobile-nav-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 3rem;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #080808; font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(201,160,33,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.mobile-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,160,33,0.5); }

/* ==============================
   HERO SECTION
============================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 100px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(201,160,33,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,33,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  width: 100%; max-width: 1280px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-primary);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  background: rgba(201,160,33,0.05);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--text-secondary); max-width: 500px;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 800; line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 36px; background: var(--border-subtle); }

/* HERO RIGHT */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-visual-wrapper {
  position: relative; width: min(520px, 100%); aspect-ratio: 1;
  display: flex; justify-content: center; align-items: center;
}
.hero-visual-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
  animation: rotate-ring linear infinite;
}
.ring-1 {
  width: 88%; height: 88%;
  border-color: rgba(201,160,33,0.2);
  animation-duration: 20s;
}
.ring-2 {
  width: 96%; height: 96%;
  border-color: rgba(201,160,33,0.1);
  animation-duration: 30s; animation-direction: reverse;
}
.ring-3 {
  width: 104%; height: 104%;
  border-color: rgba(201,160,33,0.05);
  animation-duration: 40s;
}
@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-img {
  width: 78%; height: 78%; object-fit: cover;
  border-radius: 50%; 
  box-shadow: var(--shadow-gold), 0 0 0 1px var(--border-subtle);
  position: relative; z-index: 2;
  animation: float-img 6s ease-in-out infinite;
}
@keyframes float-img {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  padding: 0.5rem 0.9rem;
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  font-size: 0.8rem; font-weight: 600;
  animation: float-badge 4s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.badge-1 { top: 12%; left: -4%; animation-delay: 0s; }
.badge-2 { bottom: 16%; right: -6%; animation-delay: 1.5s; }
.badge-3 { top: 55%; left: -8%; animation-delay: 3s; }
@keyframes float-badge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 1rem; }
.badge-text { color: var(--text-primary); white-space: nowrap; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; height: 40px; }
  50% { opacity: 1; height: 50px; }
}

/* ==============================
   ABOUT / QUIÉNES SOMOS
============================== */
.about-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative; z-index: 2;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-divider {
  width: 80px; height: 2px;
  background: linear-gradient(to right, var(--gold-primary), transparent);
  margin: 1.5rem 0;
}
.about-text {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.8;
  margin-bottom: 1rem;
}
.about-text strong { color: var(--text-primary); font-weight: 600; }

.about-visual { position: relative; }
.about-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border: 1px solid var(--border-subtle);
}
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,8,0.8) 100%);
}
.about-accent-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.4rem;
  background: rgba(14,14,14,0.95);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.accent-card-icon { font-size: 1.5rem; }
.accent-card-title { font-weight: 700; font-size: 0.95rem; }
.accent-card-sub { font-size: 0.78rem; color: var(--gold-primary); }

/* ==============================
   SERVICES SECTION
============================== */
.services-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative; z-index: 2;
}
.services-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.service-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  display: flex; flex-direction: column;
  transition: var(--transition-smooth);
  cursor: none;
}
.service-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(201,160,33,0.15);
}
.service-card--large { grid-column: span 7; }
.service-card--accent { grid-column: span 5; }
.service-card:nth-child(3) { grid-column: span 5; }
.service-card:nth-child(4) { grid-column: span 7; }
/* Cards 5–7 — balanced 3-column bottom row (4+4+4) */
.service-card:nth-child(5) { grid-column: span 4; }
.service-card:nth-child(6) { grid-column: span 4; }
.service-card:nth-child(7) { grid-column: span 4; }

.service-card-img-wrap {
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.service-card--large .service-card-img-wrap { height: 280px; }
.service-card--accent .service-card-img-wrap { height: 220px; }
.service-card:nth-child(3) .service-card-img-wrap { height: 220px; }
.service-card:nth-child(4) .service-card-img-wrap { height: 280px; }
/* Equal image height for the 3-col bottom row */
.service-card:nth-child(5) .service-card-img-wrap,
.service-card:nth-child(6) .service-card-img-wrap,
.service-card:nth-child(7) .service-card-img-wrap { height: 200px; }

.service-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.7) 100%);
}

.service-card-content {
  padding: 1.8rem 2rem 2rem;
  display: flex; flex-direction: column; flex: 1;
  gap: 0.75rem;
}
.service-number {
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gold-primary); font-weight: 500;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text-primary);
}
.service-desc {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  flex: 1;
}
.service-brands {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.brand-chip {
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.72rem; font-family: var(--font-mono);
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.service-card:hover .brand-chip {
  border-color: var(--border-mid); color: var(--gold-primary);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--gold-primary); text-transform: uppercase;
  transition: var(--transition-fast);
  align-self: flex-start;
}
.service-link:hover { gap: 12px; }

/* ==============================
   BRANDS SECTION
============================== */
.brands-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative; z-index: 2;
  overflow: hidden;
}

/* Infinite marquee */
.brands-marquee-wrap {
  position: relative; margin: 0 -3rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-marquee { overflow: hidden; }
.marquee-track {
  display: flex; gap: 1rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-pill {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); white-space: nowrap;
  background: var(--bg-surface);
  transition: var(--transition-fast);
}
.brand-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-glow);
}

/* Brand detail grid */
.brands-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.brand-detail-card {
  padding: 1.8rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative; overflow: hidden;
}
.brand-detail-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0; transition: var(--transition-fast);
}
.brand-detail-card:hover { 
  border-color: var(--border-mid); 
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.brand-detail-card:hover::before { opacity: 1; }
.brand-detail-icon { 
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 0.8rem; 
}
.brand-detail-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.2rem;
}
.brand-detail-cat {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--gold-primary);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.brand-detail-desc {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65;
}

/* ==============================
   VALUES SECTION
============================== */
.values-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative; z-index: 2; overflow: hidden;
}
.values-bg-accent {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(201,160,33,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.values-intro {
  color: var(--text-secondary); line-height: 1.8;
  margin-top: 1.5rem; font-size: 1rem; max-width: 380px;
}
.values-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.value-card {
  padding: 2rem 1.8rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative; overflow: hidden;
}
.value-card:nth-child(odd) { margin-top: 2rem; }
.value-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-smooth);
}
.value-card:hover { 
  border-color: var(--border-mid); 
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(201,160,33,0.1);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card-number {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--text-muted); margin-bottom: 0.8rem;
}
.value-card-icon { 
  margin-bottom: 0.8rem; 
  display: flex; 
  align-items: center;
  height: 36px;
}
.value-card-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.6rem; color: var(--text-primary);
}
.value-card-desc {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65;
}

/* ==============================
   CTA BAND — LOGO SHOWCASE
============================== */
.cta-band {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative; z-index: 2; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(201,160,33,0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg, transparent, transparent 40px,
      rgba(201,160,33,0.015) 40px, rgba(201,160,33,0.015) 41px
    );
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Centered showcase layout */
.cta-band-logo-showcase {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 2.5rem;
}

/* Logo with rings */
.cta-logo-wrap {
  position: relative;
  width: clamp(200px, 28vw, 300px);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-logo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,160,33,0.18);
  animation: rotate-ring linear infinite;
  width: 100%; height: 100%;
}
.cta-ring-1 { width: 105%; height: 105%; animation-duration: 18s; }
.cta-ring-2 { width: 122%; height: 122%; animation-duration: 28s; animation-direction: reverse; border-color: rgba(201,160,33,0.09); }
.cta-ring-3 { width: 140%; height: 140%; animation-duration: 40s; border-color: rgba(201,160,33,0.05); }
.cta-logo-glow {
  position: absolute; width: 110%; height: 110%; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,33,0.2) 0%, rgba(201,160,33,0.05) 50%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.cta-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 18px rgba(201,160,33,0.45)) drop-shadow(0 0 50px rgba(201,160,33,0.18));
  animation: float-img 6s ease-in-out infinite;
}

/* Brand text block */
.cta-brand-text { max-width: 620px; }
.cta-brand-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-primary);
  margin-bottom: 1rem;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-band-desc {
  color: var(--text-secondary);
  font-size: 1rem; line-height: 1.7;
}

/* Action row */
.cta-band-action {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
}



/* ==============================
   CONTACT SECTION
============================== */
.contact-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative; z-index: 2;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-intro {
  color: var(--text-secondary); line-height: 1.8;
  margin-top: 1.5rem; font-size: 1rem; max-width: 420px;
  margin-bottom: 2.5rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px; 
  flex-shrink: 0; 
}
.contact-info-label {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-primary); margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.95rem; color: var(--text-primary); font-weight: 500;
  transition: var(--transition-fast);
}
a.contact-info-value:hover { color: var(--gold-primary); }

/* FORM */
.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: var(--transition-fast);
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--gold-primary);
  background: var(--bg-hover);
  box-shadow: 0 0 0 3px rgba(201,160,33,0.12);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A021' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-select option { background: var(--bg-elevated); color: var(--text-primary); }
.form-feedback {
  text-align: center; font-size: 0.9rem;
  padding: 0.75rem; border-radius: var(--radius-md);
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.form-feedback.error {
  display: block;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ==============================
   FOOTER
============================== */
.footer {
  position: relative; z-index: 2;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; clip-path: inset(2px 0); }
.footer-tagline {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%; font-size: 1rem;
  transition: var(--transition-fast);
}
.social-link:hover { border-color: var(--gold-primary); background: var(--gold-glow); transform: translateY(-2px); }

.footer-col-title {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-primary); margin-bottom: 1.3rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links li a, .footer-links li span {
  font-size: 0.9rem; color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-links li a:hover { color: var(--gold-primary); padding-left: 4px; }

.footer-line {
  height: 1px; background: var(--border-subtle); margin-bottom: 1.5rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy, .footer-made {
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--text-muted);
}
.footer-credit {
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--text-muted);
}
.footer-credit-link {
  color: var(--gold-primary); font-weight: 600;
  transition: opacity 0.2s ease;
}
.footer-credit-link:hover { opacity: 0.75; }

/* ==============================
   SCROLLBAR
============================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deepblack); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .services-editorial { grid-template-columns: 1fr 1fr; }
  .service-card--large { grid-column: span 1; }
  .service-card--accent { grid-column: span 1; }
  .service-card:nth-child(3) { grid-column: span 1; }
  .service-card:nth-child(4) { grid-column: span 1; }
  .service-card:nth-child(5) { grid-column: span 1; }
  .service-card:nth-child(6) { grid-column: span 1; }
  .service-card:nth-child(7) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { max-width: 90%; }
  .hero-stats { justify-content: center; }
  .hero-right { order: -1; }
  .hero-visual-wrapper { width: min(320px, 80vw); }
  .badge-1 { display: none; }
  .badge-3 { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Hide desktop nav links, show hamburger button */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Layout fixes */
  .services-editorial { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-cards { grid-template-columns: 1fr; }
  .value-card:nth-child(odd) { margin-top: 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-accent-card { position: static; margin-top: 1rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .contact-form { padding: 1.5rem; }
}

/* ==============================
   SELECTION
============================== */
::selection { background: rgba(201,160,33,0.3); color: var(--text-primary); }

/* ==============================
   WHATSAPP FLOATING BUTTON
============================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  /* iOS Safari fix: force GPU layer and isolate from ancestor stacking contexts */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  isolation: isolate;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.3s cubic-bezier(0.34,1.56,0.64,1), transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  animation: wa-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  -webkit-transform: scale3d(1.08, 1.08, 1) translate3d(0, -2px, 0);
  transform: scale3d(1.08, 1.08, 1) translate3d(0, -2px, 0);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55), 0 4px 16px rgba(0,0,0,0.35);
  animation: none;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float-label { white-space: nowrap; }
@keyframes wa-bounce {
  0%, 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  50%       { -webkit-transform: translate3d(0, -6px, 0); transform: translate3d(0, -6px, 0); }
}
@-webkit-keyframes wa-bounce {
  0%, 100% { -webkit-transform: translate3d(0, 0, 0); }
  50%       { -webkit-transform: translate3d(0, -6px, 0); }
}
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .whatsapp-float-label { display: none; }
}
