/* ==========================================================================
   MARINA YACHTING (GÊNOVA 1878) - DESIGN SYSTEM & STYLESHEET
   Identidade Visual Oficial · Edição 2026
   Tema Claro & Minimalista (Default) + Suporte a Tema Noturno
   ========================================================================== */

/* --- 1. CSS VARIABLES & THEME TOKENS --- */
:root {
  /* Paleta Base Oficial (Manual 2026) */
  --c-navy-deep: #0E1F33;       /* Azul Marinho Profundo - Pantone 5395 C */
  --c-charcoal: #2A2A2C;        /* Cinza-Chumbo - Pantone 426 C */
  --c-white-sail: #F6F4EF;      /* Branco Vela - Pantone 11-0601 */
  --c-gold: #B0965E;            /* Ouro Antigo */
  --c-gold-hover: #967E4A;      /* Ouro tom fechado para contraste claro */
  --c-gold-light: #C4AB75;      /* Ouro claro */
  --c-gold-ink: #7D6446;        /* Ouro escurecido para texto (AA ~5.5:1 em fundo claro) */
  --c-sand: #D8CDBA;            /* Areia de Cabine */
  --c-regatta: #2E4F6B;         /* Azul Regata */
  --c-leather: #6B4E37;         /* Couro Selado */
  --c-mist: #78828A;            /* Cinza Névoa */
  --c-whatsapp: #1EBE5D;        /* WhatsApp Accent */
  --c-whatsapp-hover: #179E4D;

  /* Tipografia Oficial */
  --ff-display: 'Cormorant Garamond', Garamond, Georgia, serif;
  --ff-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transições */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   TEMA CLARO & MINIMALISTA (DEFAULT)
   Inspirado no Papel Vergê Natural 120g/m² e Hot Stamping em Ouro
   ========================================================================== */
:root, [data-theme="light"] {
  --bg-body: #F9F8F5;           /* Branco Vela Suave / Vergê */
  --bg-surface: #FFFFFF;        /* Superfícies brancas puras */
  --bg-alt: #F1ECE3;            /* Areia de cabine suave para contrastes */
  --bg-header: rgba(249, 248, 245, 0.92);
  --bg-header-scrolled: rgba(255, 255, 255, 0.98);
  --bg-card: #FFFFFF;
  --bg-card-alt: #FAF8F4;
  --bg-modal: #FFFFFF;
  --bg-footer: #0E1F33;         /* Rodapé em Azul Marinho Nobre */

  --text-main: #2A2A2C;         /* Cinza-Chumbo para leitura confortável */
  --text-title: #0E1F33;        /* Azul Marinho Profundo nos títulos */
  --text-muted: #64707D;        /* Cinza sutil */
  --text-sand-contrast: #5A564F;/* Areia escurecida para contraste de texto */

  --border-subtle: rgba(14, 31, 51, 0.09);
  --border-gold: rgba(176, 150, 94, 0.45);
  --border-gold-strong: #B0965E;
  --text-gold: var(--c-gold-ink);   /* Ouro usado como texto: escurecido para AA no fundo claro */

  --shadow-minimal: 0 4px 20px rgba(14, 31, 51, 0.04);
  --shadow-card: 0 12px 36px rgba(14, 31, 51, 0.06);
  --shadow-hover: 0 20px 48px rgba(14, 31, 51, 0.1);
  --shadow-modal: 0 30px 80px rgba(14, 31, 51, 0.22);
}

/* ==========================================================================
   TEMA NOTURNO / DARK LUXURY (SELECIONÁVEL)
   ========================================================================== */
[data-theme="dark"] {
  --bg-body: #081320;
  --bg-surface: #0E1F33;
  --bg-alt: #0A1726;
  --bg-header: rgba(14, 31, 51, 0.85);
  --bg-header-scrolled: rgba(8, 19, 32, 0.96);
  --bg-card: rgba(14, 31, 51, 0.7);
  --bg-card-alt: rgba(20, 39, 62, 0.5);
  --bg-modal: #0E1F33;
  --bg-footer: #050b12;

  --text-main: #F6F4EF;
  --text-title: #F6F4EF;
  --text-muted: #9CA3A8;
  --text-sand-contrast: #D8CDBA;

  --border-subtle: rgba(176, 150, 94, 0.18);
  --border-gold: rgba(176, 150, 94, 0.35);
  --border-gold-strong: #B0965E;
  --text-gold: var(--c-gold);   /* Ouro base já contrasta ~7:1 no fundo navy escuro */

  --shadow-minimal: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 24px 50px rgba(0, 0, 0, 0.6);
  --shadow-modal: 0 30px 80px rgba(0, 0, 0, 0.8);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
  color: var(--text-main);
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.015em;
  color: var(--text-main);
  background-color: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Foco de Teclado (Acessibilidade) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

.role-option input[type="radio"]:focus-visible + .role-option-box {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

/* Scrollbar Minimalista */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: var(--c-sand);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold);
}

/* --- 3. LAYOUT & CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
}

.text-gold { color: var(--c-gold) !important; }
.text-navy { color: var(--c-navy-deep) !important; }
.text-muted { color: var(--text-muted) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-gold);
  margin-bottom: 0.85rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.6;
}

.eyebrow.no-after::after {
  display: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-title);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.section-title span,
.section-title em {
  font-style: italic;
  color: var(--text-gold);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.8rem auto;
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
}

/* --- 4. BUTTONS & CTA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all var(--transition-fast);
  position: relative;
}

.btn-primary-navy {
  background: var(--c-navy-deep);
  color: #FFFFFF;
  border: 1px solid var(--c-navy-deep);
  box-shadow: 0 4px 15px rgba(14, 31, 51, 0.12);
}

.btn-primary-navy:hover {
  background: #173456;
  border-color: #173456;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 31, 51, 0.18);
  color: #FFFFFF;
}

.btn-primary-gold {
  background: var(--c-gold);
  color: #FFFFFF;
  border: 1px solid var(--c-gold);
  box-shadow: 0 4px 15px rgba(176, 150, 94, 0.2);
}

.btn-primary-gold:hover {
  background: var(--c-gold-hover);
  border-color: var(--c-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 150, 94, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-title);
  border: 1px solid rgba(14, 31, 51, 0.25);
}

[data-theme="dark"] .btn-outline {
  border-color: rgba(176, 150, 94, 0.4);
  color: var(--c-sand);
}

.btn-outline:hover {
  background: rgba(14, 31, 51, 0.04);
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--c-whatsapp);
  color: #FFFFFF;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(30, 190, 93, 0.25);
  border: 1px solid var(--c-whatsapp);
}

.btn-whatsapp:hover {
  background: var(--c-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 190, 93, 0.35);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 0.85rem;
}

/* --- 5. TOPBAR & HEADER --- */
.topbar {
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-official {
  background: rgba(176, 150, 94, 0.12);
  border: 1px solid rgba(176, 150, 94, 0.3);
  color: var(--text-gold);
  padding: 2px 7px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.topbar-right a:hover {
  color: var(--c-gold);
}

/* Theme Switcher Button */
.theme-switch-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 1px;
  font-size: 0.68rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1em;
  transition: all var(--transition-fast);
}

.theme-switch-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: var(--bg-header-scrolled);
  box-shadow: var(--shadow-minimal);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  transition: height var(--transition-fast);
}

.site-header.scrolled .nav-wrap {
  height: 76px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.brand-logo-link:hover {
  transform: translateY(-1px);
}

.brand-logo-svg {
  height: 72px;
  width: auto;
  aspect-ratio: 1633 / 680;
  color: var(--text-title);
  display: block;
  transition: color var(--transition-fast), transform var(--transition-fast), height var(--transition-fast);
}

.site-header.scrolled .brand-logo-svg {
  height: 56px;
}

.brand-logo-link:hover .brand-logo-svg {
  color: var(--c-gold);
}

.footer-brand .brand-logo-link {
  display: inline-block;
}

.footer-brand .brand-logo-svg {
  height: 76px;
  color: #FFFFFF;
}

.footer-brand .brand-logo-link:hover .brand-logo-svg {
  color: var(--c-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-title);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-only-action {
  display: none;
}

.desktop-only-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-title);
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
}

/* --- 6. HERO SECTION (MINIMALISTA & AREJADA) --- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
  padding: 70px 0;
  overflow: hidden;
}

.hero-minimal-lines {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(176, 150, 94, 0.06) 0%, transparent 60%),
    linear-gradient(to right, rgba(14, 31, 51, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 120px 100%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176, 150, 94, 0.1);
  border: 1px solid rgba(176, 150, 94, 0.35);
  padding: 5px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-title);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--c-gold);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-family: var(--ff-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--text-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Visual do Hero */
.hero-visual {
  position: relative;
}

.hero-card-frame {
  position: relative;
  background: var(--bg-surface);
  padding: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #EAE6DF;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-img-wrap:hover img {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  max-width: 240px;
}

.hero-floating-badge h5 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--text-title);
  margin-bottom: 2px;
}

.hero-floating-badge p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- 7. HERITAGE & DNA SECTION --- */
.section-heritage {
  padding: 100px 0;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
}

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

.heritage-visual {
  position: relative;
}

.heritage-dual-images {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 16px;
  align-items: flex-end;
}

.heritage-img-main {
  aspect-ratio: 3/4;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-minimal);
}

.heritage-img-secondary {
  aspect-ratio: 1/1;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-minimal);
}

.heritage-img-main img,
.heritage-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-seal {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 106px;
  height: 106px;
  background: #0B192C;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(176, 150, 94, 0.25);
  z-index: 5;
  padding: 8px;
}

.heritage-seal span:first-child,
.heritage-seal .seal-caption {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.heritage-seal span:last-child,
.heritage-seal .seal-year {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-gold-light);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.heritage-text h3 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  font-weight: 400;
  color: var(--text-title);
}

.heritage-text h3 em {
  font-style: italic;
  color: var(--text-gold);
}

.heritage-quote {
  border-left: 2px solid var(--c-gold);
  padding-left: 22px;
  margin: 1.8rem 0;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
}

.heritage-quote cite {
  display: block;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-top: 6px;
}

.heritage-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.8rem;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 18px;
  box-shadow: var(--shadow-minimal);
}

.pillar-card h6 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--text-title);
  margin-bottom: 4px;
}

.pillar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- 8. PRODUÇÃO EM PRIVATE LABEL --- */
.section-private-label {
  padding: 110px 0;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  scroll-margin-top: 96px;
}

.pl-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.pl-media {
  margin: 0;
}

.pl-media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.pl-media figcaption {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: center;
}

.pl-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.pl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.3rem;
}

.pl-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-main);
}

.pl-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--text-gold);
}

.pl-list strong {
  font-weight: 600;
  color: var(--text-title);
}

.pl-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
}

.pl-link-detalhes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-gold);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 3px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.pl-link-detalhes:hover {
  color: var(--text-title);
  border-bottom-color: var(--text-title);
}

.pl-link-detalhes svg {
  transition: transform var(--transition-fast);
}

.pl-link-detalhes:hover svg {
  transform: translateX(3px);
}

/* Ouro em vez da variante navy: no tema escuro o botao navy sumia no fundo */
.pl-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 1px;
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  color: var(--c-navy-deep);
  box-shadow: 0 6px 20px rgba(176, 150, 94, 0.22);
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pl-cta:hover {
  background: var(--c-gold-hover);
  border-color: var(--c-gold-hover);
  color: var(--c-white-sail);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 150, 94, 0.32);
}

.pl-cta:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* Tecelagens: sustentam tecnicamente a oferta */
.pl-mills {
  padding: 2.8rem 2.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-gold);
  text-align: center;
  margin-bottom: 4rem;
}

.pl-mills-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-title);
  margin-bottom: 0.6rem;
}

.pl-mills-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto 1.9rem;
}

.pl-mills-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.pl-mills-list li {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-title);
  line-height: 1.35;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-gold);
}

/* Etapas do projeto */
.pl-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: none;
}

.pl-steps li {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-subtle);
}

.pl-step-num {
  position: absolute;
  top: -14px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: var(--bg-surface);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gold);
}

.pl-steps h4 {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-title);
  margin-bottom: 0.45rem;
}

.pl-steps p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .pl-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pl-media img {
    height: 320px;
  }

  .pl-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 1.8rem;
  }

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

@media (max-width: 640px) {
  .section-private-label {
    padding: 56px 0;
  }

  .pl-grid {
    margin-bottom: 2.8rem;
  }

  .pl-media img {
    height: 240px;
  }

  .pl-mills {
    padding: 2rem 1.3rem;
    margin-bottom: 2.6rem;
  }

  .pl-mills-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .pl-steps {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .pl-cta {
    width: 100%;
  }
}

/* --- 9. MOSTRUÁRIO B2B & CATÁLOGO SELETO --- */
.section-catalog {
  padding: 100px 0;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 9px 20px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--c-navy-deep);
  color: #FFFFFF;
  border-color: var(--c-navy-deep);
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
  background: var(--c-gold);
  color: #081320;
  border-color: var(--c-gold);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.catalog-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-minimal);
}

.catalog-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.catalog-thumb-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ECE8E1;
}

.catalog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.catalog-item:hover .catalog-thumb-wrap img {
  transform: scale(1.03);
}

.catalog-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--c-navy-deep);
  padding: 4px 9px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

[data-theme="dark"] .catalog-item-badge {
  color: var(--c-gold);
}

.catalog-quick-view {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  color: var(--c-navy-deep);
  padding: 9px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  cursor: pointer;
}

[data-theme="dark"] .catalog-quick-view {
  background: rgba(14, 31, 51, 0.95);
  color: var(--c-white-sail);
}

.catalog-item:hover .catalog-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.catalog-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.catalog-category {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 4px;
}

.catalog-name {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-title);
  line-height: 1.25;
  margin-bottom: 8px;
}

.catalog-specs-list {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.catalog-actions {
  display: flex;
  gap: 8px;
}

.catalog-actions .btn {
  flex: 1;
}

/* --- 10. ESPECIFICACOES & MATERIAIS NOBRES (ATELIER LUXURY REDESIGN) --- */
.section-materials {
  padding: 110px 0;
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

/* --- TECELAGENS MUNDIAIS HOMOLOGADAS (EDITORIAL PRESTIGE) --- */
.mills-showcase {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  padding: 38px 36px 34px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.mills-showcase-header {
  text-align: center;
  margin-bottom: 26px;
}

.mills-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.mills-showcase-title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--text-title);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.mills-pedigree-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.mill-pedigree-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mill-pedigree-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.mill-pedigree-card:hover {
  background: var(--bg-surface);
  border-color: var(--border-gold-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.mill-pedigree-card:hover::after {
  transform: scaleX(1);
}

.mill-origin {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 3px;
  font-weight: 600;
}

.mill-name {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.2;
  margin-bottom: 3px;
}

.mill-specialty {
  font-size: 0.67rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --- OS 4 PILARES DA CONSTRUCAO SARTORIAL --- */
.materials-atelier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.atelier-pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-minimal);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.atelier-pillar-card:hover {
  border-color: var(--border-gold-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.pillar-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.pillar-num {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-gold);
  font-weight: 600;
}

.pillar-icon-box {
  width: 38px;
  height: 38px;
  background: var(--bg-alt);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy-deep);
  transition: all var(--transition-fast);
}

[data-theme="dark"] .pillar-icon-box {
  color: var(--c-gold);
}

.atelier-pillar-card:hover .pillar-icon-box {
  background: var(--c-navy-deep);
  color: var(--c-gold);
}

[data-theme="dark"] .atelier-pillar-card:hover .pillar-icon-box {
  background: var(--c-gold);
  color: #081320;
}

.pillar-metric {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--text-gold);
  line-height: 1.1;
  margin-bottom: 5px;
}

.pillar-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.25;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pillar-specs-list {
  list-style: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border-subtle);
}

.pillar-specs-list li {
  font-size: 0.75rem;
  color: var(--text-main);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 7px;
}

.pillar-specs-list li:last-child {
  margin-bottom: 0;
}

.pillar-spec-bullet {
  color: var(--text-gold);
  font-size: 0.65rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- BANNER DE GARANTIA & AUTENTICIDADE --- */
.materials-trust-banner {
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--c-gold);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-minimal);
}

.trust-banner-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-banner-seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.trust-banner-text h5 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--text-title);
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-banner-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-banner-cta .btn {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .mills-pedigree-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .materials-atelier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .materials-trust-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .trust-banner-info {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .mills-showcase {
    padding: 24px 16px;
  }
  .mills-pedigree-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .materials-atelier-grid {
    grid-template-columns: 1fr;
  }
}
/* --- 11. CREDENCIAMENTO OFICIAL (CHAMADA PARA /cadastro) --- */
.section-credenciamento {
  padding: 110px 0;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
  scroll-margin-top: 96px; /* Impede que o header fixo cubra o título ao vir de uma âncora */
}

/* Painel de conversão: acompanha o tema do site pelos tokens globais */
.cred-panel {
  --cred-ink: var(--text-title);
  --cred-ink-soft: var(--text-muted);
  --cred-hairline: var(--border-gold);

  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--c-gold);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* Brilho quente na diagonal do painel, sutil o bastante para não virar textura */
.cred-panel::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(176, 150, 94, 0.1), transparent 68%);
  pointer-events: none;
}

.cred-content {
  padding: 52px 48px;
  position: relative;
  z-index: 1;
}

.cred-content .eyebrow {
  margin-bottom: 1.1rem;
}

.cred-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: var(--cred-ink);
  text-wrap: balance;
  margin-bottom: 1rem;
}

.cred-title em {
  font-style: italic;
  color: var(--text-gold);
}

.cred-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cred-ink-soft);
  max-width: 46ch;
  margin-bottom: 2.1rem;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cred-list-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--cred-hairline);
  color: var(--text-gold);
}

.cred-list h3 {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cred-ink);
  margin-bottom: 0.25rem;
}

.cred-list p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--cred-ink-soft);
  max-width: 42ch;
}

/* Coluna de ação: separada por um fio de ouro, não por um card aninhado */
.cred-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
  background: var(--bg-card-alt);
  border-left: 1px solid var(--cred-hairline);
}

.cred-action-label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--text-gold);
  margin-bottom: 0.9rem;
}

.cred-action-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--cred-ink-soft);
  margin-bottom: 1.8rem;
}

.cred-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.cred-steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-bottom: 1.1rem;
}

.cred-steps li:last-child {
  padding-bottom: 0;
}

/* Fio vertical ligando os passos, encerrado no último */
.cred-steps li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 26px;
  bottom: 0;
  width: 1px;
  background: var(--cred-hairline);
}

.cred-steps li:last-child::before {
  display: none;
}

.cred-step-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--cred-hairline);
  background: var(--bg-card-alt);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-gold);
}

.cred-steps strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cred-ink);
  margin-bottom: 0.15rem;
}

.cred-steps span:not(.cred-step-num) {
  display: block;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--cred-ink-soft);
}

.cred-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 17px 26px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 1px;
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  color: var(--c-navy-deep); /* Navy sobre ouro: ~6.5:1, legível nos dois temas */
  box-shadow: 0 6px 20px rgba(176, 150, 94, 0.22);
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cred-btn svg {
  transition: transform var(--transition-fast);
}

.cred-btn:hover {
  background: var(--c-gold-hover);
  border-color: var(--c-gold-hover);
  color: var(--c-white-sail);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 150, 94, 0.32);
}

.cred-btn:hover svg {
  transform: translateX(4px);
}

.cred-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(176, 150, 94, 0.24);
}

.cred-btn:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.cred-note {
  margin-top: 0.95rem;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--cred-ink-soft);
  text-align: center;
}

.cred-alt {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cred-hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--cred-ink-soft);
}

.cred-alt a {
  color: var(--text-gold);
  font-weight: 500;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.cred-alt a:hover {
  color: var(--text-title);
  border-bottom-color: var(--text-title);
}

@media (max-width: 940px) {
  .cred-panel {
    grid-template-columns: 1fr;
  }

  .cred-action {
    border-left: none;
    border-top: 1px solid var(--cred-hairline);
  }

  .cred-panel::after {
    display: none;
  }

  /* Empilhado, a coluna de ação herda a largura inteira: contém o alvo de clique */
  .cred-action-text,
  .cred-steps,
  .cred-btn,
  .cred-note,
  .cred-alt {
    max-width: 470px;
  }
}

@media (max-width: 560px) {
  .cred-action-text,
  .cred-steps,
  .cred-btn,
  .cred-note,
  .cred-alt {
    max-width: none;
  }
}

/* --- 12. SALÃO PRIVADO & VISITAS --- */
.section-salon {
  padding: 100px 0;
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
}

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

.salon-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 26px;
}

.salon-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.salon-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border: 1px solid var(--border-gold);
  color: var(--c-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .salon-feature-icon {
  color: var(--c-gold);
}

.salon-feature-item h5 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--text-title);
  margin-bottom: 3px;
}

.salon-feature-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.salon-box-highlight {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.salon-box-highlight h4 {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  color: var(--text-title);
  margin-bottom: 12px;
}

.salon-box-highlight p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.salon-hours {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- 13. DEPOIMENTOS B2B --- */
.section-testimonials {
  padding: 90px 0;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-minimal);
}

.testimonial-quote {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  color: var(--c-navy-deep);
  font-weight: 600;
}

[data-theme="dark"] .author-avatar {
  color: var(--c-gold);
}

.author-meta h6 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-title);
}

.author-meta p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gold);
}

/* --- 14. FOOTER INSTITUCIONAL --- */
.site-footer {
  background: var(--bg-footer);
  color: #D8CDBA;
  padding: 70px 0 28px;
  border-top: 1px solid rgba(176, 150, 94, 0.3);
  font-size: 0.8rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(216, 205, 186, 0.8);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--c-gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(216, 205, 186, 0.8);
}

.footer-links a:hover {
  color: var(--c-gold);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(176, 150, 94, 0.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--c-mist);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
}

.orium-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(216, 205, 186, 0.85);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.orium-link .credit-text {
  font-family: var(--ff-sans);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(216, 205, 186, 0.8);
  transition: color var(--transition-fast);
}

.orium-logo-img {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-fast), filter var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.95;
}

.orium-link:hover {
  transform: translateY(-1px);
}

.orium-link:hover .credit-text {
  color: var(--c-gold);
}

.orium-link:hover .orium-logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(176, 150, 94, 0.45));
}

/* --- 15. MODAL DE DETALHES DA PEÇA --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 31, 51, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-modal);
  border: 1px solid var(--border-gold);
  max-width: 820px;
  width: 100%;
  box-shadow: var(--shadow-modal);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: all var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--c-gold);
}

.modal-img-wrap {
  background: #ECE8E1;
  aspect-ratio: 4/5;
  height: 100%;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  color: var(--text-title);
  line-height: 1.18;
  margin-bottom: 6px;
}

#modal-desc {
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.modal-specs-table {
  width: 100%;
  margin: 16px 0;
  font-size: 0.8rem;
  border-collapse: collapse;
}

.modal-specs-table td {
  padding: 7px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-specs-table td:first-child {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  width: 38%;
}

.modal-specs-table td:last-child {
  color: var(--text-main);
  font-weight: 500;
}

/* --- 16. BOTÃO FLUTUANTE DE WHATSAPP --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--c-whatsapp);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(30, 190, 93, 0.4);
  font-size: 1.7rem;
  transition: all var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(30, 190, 93, 0.5);
}

.floating-whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(30, 190, 93, 0.45);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* --- 17. RESPONSIVIDADE & MOBILE FIRST LUXURY --- */
@media (max-width: 1024px) {
  .hero-grid,
  .heritage-grid,
  .salon-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  /* Topbar Minimalista Mobile */
  .topbar {
    padding: 6px 0;
    font-size: 0.65rem;
  }

  .topbar-left span:not(.badge-official) {
    display: none;
  }

  .topbar-right a {
    display: none;
  }

  .topbar-right {
    gap: 8px;
  }

  /* Header & Navigation Mobile */
  .site-header {
    height: 72px;
  }

  .nav-wrap {
    height: 72px;
  }

  .site-header.scrolled .nav-wrap {
    height: 62px;
  }

  .brand-logo-svg {
    height: 48px;
    max-width: 220px;
  }

  .site-header.scrolled .brand-logo-svg {
    height: 40px;
    max-width: 180px;
  }

  .desktop-only-cta {
    display: none !important;
  }

  .nav-actions {
    gap: 8px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-gold);
    background: var(--bg-surface);
    color: var(--text-title);
    font-size: 1.25rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .menu-toggle:hover,
  .menu-toggle:focus {
    border-color: var(--c-gold);
    color: var(--c-gold);
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 12px;
    border-bottom: 2px solid var(--c-gold);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s;
    box-shadow: 0 16px 36px rgba(14, 31, 51, 0.18);
    z-index: 999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .site-header.scrolled .nav-menu {
    top: 58px;
    max-height: calc(100vh - 58px);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    font-size: 0.92rem;
    padding: 10px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .mobile-only-action {
    display: block;
    width: 100%;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 28px 0 45px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    margin-bottom: 1rem;
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.8vw, 2.3rem);
    line-height: 1.16;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 1.8rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
    text-align: center;
  }

  .stat-item h4 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }

  .hero-card-frame {
    padding: 6px;
  }

  .hero-floating-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 10px;
    max-width: 100%;
    width: 100%;
    padding: 12px 14px;
    box-shadow: var(--shadow-minimal);
  }

  .hero-floating-badge h5 {
    font-size: 0.84rem;
  }

  .hero-floating-badge p {
    font-size: 0.72rem;
  }

  /* Heritage Mobile */
  .heritage-dual-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .heritage-img-secondary {
    display: none;
  }

  .heritage-seal {
    bottom: 10px;
    right: 10px;
    top: auto;
    left: auto;
    width: 82px;
    height: 82px;
  }

  .heritage-seal span:first-child,
  .heritage-seal .seal-caption {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
    color: #FFFFFF;
  }

  .heritage-seal span:last-child,
  .heritage-seal .seal-year {
    font-size: 1.3rem;
    color: var(--c-gold-light);
  }

  .heritage-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Catalog / Mostruário Mobile */
  .section-catalog {
    padding: 48px 0;
  }

  .catalog-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Materials, Testimonials, Salon Mobile */
  .materials-grid,
  .testimonials-grid,
  .salon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .salon-box-highlight {
    padding: 22px 18px;
  }

  /* Credenciamento Mobile */
  .section-credenciamento {
    padding: 56px 0;
  }

  .cred-content,
  .cred-action {
    padding: 34px 22px;
  }

  .cred-lead {
    margin-bottom: 1.8rem;
  }

  .cred-list {
    gap: 1.15rem;
  }

  .cred-btn {
    padding: 16px 20px;
    letter-spacing: 0.1em;
  }

  .input-field,
  .select-field,
  .textarea-field {
    font-size: 16px; /* Evita zoom automático no iOS */
    padding: 12px 14px;
  }

  /* Modal Mobile */
  .modal-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-img-wrap {
    height: 220px;
  }

  .modal-details {
    padding: 22px 18px;
  }

  /* Floating WhatsApp Mobile */
  .floating-whatsapp-btn {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* Footer Mobile */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand .brand-logo-svg {
    height: 56px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }

  .footer-credit {
    justify-content: center;
  }
}
