/* ============================
   CHAVEIRO GOLDEN — CSS
   Design Elegante e Profissional
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FAFAF8;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --gold-50: #FDF8E7;
  --gold-100: #F9EDCC;
  --gold-200: #F3DB99;
  --gold-300: #ECC966;
  --gold-400: #E5B733;
  --gold-500: #D4A017;
  --gold-600: #B8860B;
  --gold-700: #8B6914;
  --gold-800: #5E4C1D;
  --gold-900: #312F26;

  --neutral-50: #FAFAF8;
  --neutral-100: #F5F5F3;
  --neutral-200: #E8E8E4;
  --neutral-300: #D4D4CE;
  --neutral-400: #A3A39A;
  --neutral-500: #737368;
  --neutral-600: #52524A;
  --neutral-700: #3D3D37;
  --neutral-800: #262622;
  --neutral-900: #121210;

  --white: #FFFFFF;
  --black: #0A0A09;

  --success: #22C55E;
  --whatsapp: #25D366;
  --instagram: #E1306C;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.08), 0 8px 10px rgba(0,0,0,0.04);
  --shadow-gold: 0 10px 30px rgba(212,160,23,0.2);
  --shadow-gold-lg: 0 20px 40px rgba(212,160,23,0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.text-center { text-align: center; }
.section {
  padding: var(--space-5xl) 0;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-600);
  margin-bottom: var(--space-lg);
}
.section-label.center {
  justify-content: center;
}
.label-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral-900);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
.section-title span {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-500);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--whatsapp), #20BA5C);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--neutral-700);
  border: 1.5px solid var(--neutral-300);
}
.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  background: var(--gold-50);
}
.btn-cta {
  background: linear-gradient(135deg, var(--whatsapp), #20BA5C);
  color: var(--white);
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}
.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(225, 48, 108, 0.4);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 9, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
}
header.scrolled {
  background: rgba(10, 10, 9, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  width: auto;
  height: 84px;
  max-height: 84px;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: opacity var(--duration-normal) var(--ease-out);
  object-fit: contain;
  background: none;
}
.nav-logo:hover img {
  opacity: 0.92;
}
nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
nav ul li a {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold-400);
  background: rgba(212, 160, 23, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: rgba(10, 10, 9, 0.98);
  padding: var(--space-xl);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.mobile-menu ul li a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
}
.mobile-menu ul li a:hover {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold-400);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neutral-900) 0%, #1a1500 50%, var(--neutral-900) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.03) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  animation: fadeUp 0.8s var(--ease-out);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}
.badge-icon {
  color: var(--gold-400);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-400);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--space-2xl);
}

/* Hero Info Cards */
.hero-info-cards {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  flex: 1;
}
.info-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-md);
  color: var(--gold-400);
}
.info-card-content {
  display: flex;
  flex-direction: column;
}
.info-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: 2px;
}
.info-card-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s var(--ease-out) 0.2s backwards;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #0d0d0b;
  box-shadow: var(--shadow-xl);
}
.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-2xl);
  opacity: 1;
  transition: opacity 0.45s var(--ease-in-out);
  will-change: opacity;
}
.hero-image.is-fading {
  opacity: 0;
}
.hero-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-800);
  box-shadow: var(--shadow-lg);
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    transition: none;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT SECTION ===== */
.section-about {
  background: var(--neutral-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.about-images {
  position: relative;
}
.about-image-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 25%;
}
.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: var(--space-xl);
  left: var(--space-xl);
  background: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-600);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.75rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.about-content {
  padding-right: var(--space-2xl);
}
.about-text {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* Cross Promotion Box */
.cross-promo {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}
.cross-promo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--gold-600);
  flex-shrink: 0;
}
.cross-promo-text {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.6;
}
.cross-promo-text strong {
  color: var(--gold-700);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.about-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  border-radius: var(--radius-full);
  color: var(--gold-600);
  flex-shrink: 0;
}
.about-feature span {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.section-services {
  background: var(--white);
}
.section-header {
  margin-bottom: var(--space-4xl);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.service-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}
.service-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 auto var(--space-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #faf8f2);
  border-radius: calc(var(--radius-xl) - 6px);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md);
  transition: transform var(--duration-slow) var(--ease-out);
}
.service-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(18, 18, 16, 0.72);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card:hover .service-visual {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-img {
  transform: scale(1.05);
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card-desc {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.72;
  margin-bottom: var(--space-lg);
  min-height: 5.6rem;
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}
.service-card-list li {
  font-size: 0.875rem;
  color: var(--neutral-700);
  padding: 0.75rem 0.9rem 0.75rem 2rem;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(212, 160, 23, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  top: 1.08rem;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

/* ===== GALLERY SECTION ===== */
.section-gallery {
  background: var(--neutral-100);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: var(--space-lg);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform var(--duration-slow) var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

/* ===== CTA SECTION ===== */
.section-cta {
  position: relative;
  background: var(--neutral-900);
  padding: var(--space-5xl) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}
.cta-title span {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-2xl);
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.section-contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.contact-text {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}
.contact-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  color: var(--gold-600);
  flex-shrink: 0;
}
.contact-card-icon-whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: var(--whatsapp);
}
.contact-card-icon-instagram {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.16), rgba(220, 39, 67, 0.12), rgba(188, 24, 136, 0.16));
  color: var(--instagram);
}
.contact-card-content h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: var(--space-xs);
}
.contact-card-content p {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.6;
}
.contact-card-content a {
  color: var(--neutral-700);
}
.contact-card-content a:hover {
  color: var(--gold-600);
}
.contact-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-900);
  padding: var(--space-4xl) 0 0;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.footer-logo img {
  width: 320px;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 300px;
}
.footer-cross-promo {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}
.footer-cross-promo a {
  color: var(--gold-400);
  text-decoration: underline;
}
.footer-cross-promo a:hover {
  color: var(--gold-300);
}
.footer-social {
  display: flex;
  gap: var(--space-md);
}
.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold-400);
  transition: all var(--duration-normal) var(--ease-out);
}
.social-link:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--black);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  z-index: 999;
}
.wp-tooltip {
  position: absolute;
  bottom: calc(100% + var(--space-md));
  right: 0;
  padding: var(--space-sm) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out);
  pointer-events: none;
}
.whatsapp-float:hover .wp-tooltip {
  opacity: 1;
  transform: translateY(0);
}
.wp-float-btn {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--whatsapp), #20BA5C);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  animation: wpPulse 2s infinite;
}
.wp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}
.wp-float-btn svg {
  width: 32px;
  height: 32px;
}
@keyframes wpPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
}

/* ===== BRANDS BAR ===== */
.brands-bar {
  background: var(--neutral-100);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--neutral-200);
  overflow: hidden;
}
.brands-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.brands-track {
  display: inline-flex;
  gap: var(--space-4xl);
  animation: scroll 20s linear infinite;
  opacity: 0.6;
}
.brand-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--space-2xl))); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .hero-visual { order: -1; }
  .hero-image { height: 500px; object-position: center 25%; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .about-images { order: -1; }
  .about-image-secondary { right: var(--space-xl); bottom: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .gallery-item-featured { grid-column: span 2; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-lg); }
  .section { padding: var(--space-4xl) 0; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 78px; }
  .nav-logo img { width: auto; height: 56px; max-height: 56px; }
  .hero { padding-top: 78px; }
  .hero-title { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-info-cards { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-image { height: 450px; object-position: center 25%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gallery-item-featured { grid-column: span 1; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .brands-track { animation-duration: 15s; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 58px; max-height: 58px; }
  .hero-image { height: 400px; object-position: center 20%; }
  .about-image-main img { height: 400px; object-position: center 20%; }
  .about-image-secondary { display: none; }
  .whatsapp-float { bottom: var(--space-lg); right: var(--space-lg); }
  .wp-float-btn { width: 56px; height: 56px; }
  .wp-float-btn svg { width: 28px; height: 28px; }
}
