/* =========================================================
   RESET
========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", sans-serif; background: #fff; color: #111; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; outline: none; cursor: pointer; font-family: inherit; }

/* =========================================================
   VARIABLES
========================================================= */
:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --gray: #6e6e6e;
  --gray-light: #f5f5f5;
  --line: #e8e8e8;
  --gold: #c6a15b;
  --gold-soft: #d7bb86;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --shadow-hover: 0 20px 60px rgba(0,0,0,.12);
  --transition: 0.3s ease;
  --container: 1240px;
}

/* =========================================================
   GLOBAL
========================================================= */
.container { width: min(92%, var(--container)); margin: 0 auto; }
.section { padding: 110px 0; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }

.section-tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  background: rgba(198,161,91,.1); color: var(--gold);
  font-size: 1.3rem; font-weight: 700;
  border: 1px solid rgba(198,161,91,.2); margin-bottom: 22px;
  letter-spacing: .3px;
}

/* Contato — override de tamanho de título */
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -1px;
}

/* CTA abaixo do comparador */
.compare-cta-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  padding: 60px 0 20px;
}
.compare-cta-text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: #ffffff;
  letter-spacing: -1px; text-align: center;
}
.compare-cta-wrap .btn {
  font-size: 1.05rem; padding: 18px 36px;
}
.section-header p, .about-content p, .contact-info p { color: var(--gray); max-width: 700px; }
.section-header.center p { margin: 0 auto; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 28px; border-radius: 999px;
  font-weight: 700; transition: var(--transition);
}
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 10px 25px rgba(198,161,91,.2); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.25); color: var(--white); backdrop-filter: blur(10px); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { border: 1px solid rgba(0,0,0,.12); color: var(--black); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.full { width: 100%; }

/* =========================================================
   AGE GATE
========================================================= */
.age-gate {
  display: none; position: fixed; inset: 0;
  background: radial-gradient(circle at top, rgba(198,161,91,.12), transparent), rgba(0,0,0,.94);
  align-items: center; justify-content: center;
  z-index: 99999; padding: 20px; backdrop-filter: blur(10px); transition: .5s ease;
}
.age-gate.hide { opacity: 0; visibility: hidden; }
.age-box {
  width: 100%; max-width: 540px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px; padding: 50px; text-align: center;
  backdrop-filter: blur(15px); animation: fadeUp .8s ease;
}
.age-box img { width: 90px; margin: 0 auto 25px; }
.age-badge {
  display: inline-flex; padding: 8px 16px; border-radius: 999px;
  background: rgba(198,161,91,.12); color: var(--gold);
  font-size: .8rem; font-weight: 700; margin-bottom: 20px;
}
.age-box h1 { color: var(--white); font-size: 2.6rem; line-height: 1.1; margin-bottom: 16px; }
.age-box p { color: rgba(255,255,255,.7); margin-bottom: 35px; }
.age-actions { display: flex; gap: 14px; justify-content: center; }

/* =========================================================
   HEADER
========================================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05); transition: var(--transition);
}
.nav { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.logo-text { display: flex; flex-direction: column; }
.logo-text span { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); }
.logo-text strong { font-size: 1.2rem; font-weight: 800; }
.menu { display: flex; align-items: center; gap: 28px; }
.menu a { position: relative; font-weight: 600; transition: var(--transition); }
.menu a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.menu a:hover { color: var(--gold); }
.menu a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 50px; height: 50px; border-radius: 14px; background: var(--black); color: var(--white); font-size: 1rem; }

/* =========================================================
   HERO — vídeo de fundo
========================================================= */
.heroSwiper, .hero-slide { width: 100%; height: 100vh; }
.hero-slide { position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.88), rgba(0,0,0,.4)); z-index: 1; }
.hero-content { position: relative; z-index: 5; color: var(--white); max-width: 760px; }
.hero-badge {
  display: inline-flex; padding: 10px 18px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08);
  color: var(--gold-soft); margin-bottom: 24px;
}
.hero-content h1 { font-size: clamp(3rem,7vw,6.5rem); line-height: .95; letter-spacing: -4px; margin-bottom: 24px; font-weight: 900; }
.hero-content p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 620px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,.4); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); }

/* =========================================================
   ABOUT
========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.about-image::before {
  content: ""; position: absolute; width: 100%; height: 100%;
  top: 20px; left: 20px; border-radius: var(--radius);
  border: 1px solid rgba(198,161,91,.3); z-index: -1;
}
.about-image img { border-radius: var(--radius); min-height: 650px; object-fit: cover; box-shadow: var(--shadow); }
.about-content p { margin-bottom: 18px; }
.about-highlights { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 35px; }
.highlight-card {
  flex: 1; min-width: 150px; padding: 24px; border-radius: var(--radius);
  background: var(--gray-light); border: 1px solid var(--line); transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.highlight-card strong { display: block; font-size: 1.5rem; color: var(--gold); margin-bottom: 6px; }
.highlight-card span { color: var(--gray); }

/* =========================================================
   SERVICES
========================================================= */
.services { background: var(--gray-light); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 42px 34px;
  border: 1px solid var(--line); transition: var(--transition);
  text-align: center; display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(198,161,91,.08), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(198,161,91,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-card p { color: var(--gray); }

/* =========================================================
   GALLERY — CARROSSEL INFINITO (só "depois", sem label)
========================================================= */
.gallery { background: var(--black); overflow: hidden; }

/* Modo claro — texto escuro sobre fundo preto */
.gallery .section-header h2 { color: #ffffff; }
.gallery .section-header p  { color: rgba(255,255,255,.55); margin: 0 auto; }

/* Badge da galeria — fundo e borda ligeiramente mais visíveis sobre o preto */
.gallery .section-tag {
  background: rgba(198,161,91,.15);
  border-color: rgba(198,161,91,.3);
}

body.dark .gallery { background: #0f0f0f; }
body.dark .gallery .section-header h2 { color: #f0f0f0; }
body.dark .gallery .section-header p  { color: rgba(255,255,255,.45); }

.gallery-track-wrap {
  position: relative; width: 100%; overflow: hidden; margin-top: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gallery-track {
  display: flex; gap: 20px; width: max-content;
  animation: galleryScroll 55s linear infinite;
}
.gallery-track-wrap:hover .gallery-track { animation-play-state: paused; }

@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-track-item {
  position: relative;
  width: 520px;
  height: 340px;             /* proporção ~16:10, horizontal como as fotos */
  border-radius: 18px; overflow: hidden; flex-shrink: 0;
  cursor: pointer; border: 1px solid rgba(198,161,91,.15);
  transition: transform .4s ease, box-shadow .4s ease;
  background: #111;
}
.gallery-track-item:hover { transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.gallery-track-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .6s ease;
}
.gallery-track-item:hover img { transform: scale(1.03); }

/* =========================================================
   MODAL
========================================================= */
.gallery-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; z-index: 999999; transition: .35s ease;
}
.gallery-modal.active { opacity: 1; visibility: visible; }
.gallery-modal img { width: auto; max-width: 85%; max-height: 85vh; border-radius: 24px; animation: modalFade .4s ease; }
.modal-close, .modal-nav {
  position: absolute; width: 58px; height: 58px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.08); color: white;
  cursor: pointer; backdrop-filter: blur(10px); transition: .3s ease; font-size: 1rem;
}
.modal-close:hover, .modal-nav:hover { background: var(--gold); color: #111; }
.modal-close { top: 30px; right: 30px; }
.modal-nav.prev { left: 40px; }
.modal-nav.next { right: 40px; }
@keyframes modalFade { from { opacity:0; transform:scale(.92); } to { opacity:1; transform:scale(1); } }

/* =========================================================
   COMPARADOR ANTES / DEPOIS
========================================================= */
.compare-section {
  background: var(--black);
  padding: 80px 0 110px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.compare-section .section-header h2 { color: var(--white); }
.compare-section .section-header p  { color: rgba(255,255,255,.55); margin: 0 auto; }
.compare-section .section-tag {
  background: rgba(198,161,91,.1);
  border-color: rgba(198,161,91,.2);
}

.compare-wrap {
  width: min(92%, 1100px);
  margin: 0 auto;
}

.compare-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  user-select: none;
  border: 1px solid rgba(198,161,91,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  cursor: col-resize;
  background: #ffffff;   /* fundo branco igual ao das fotos */
}

/* Aspect ratio fixo — ajustar se a imagem tiver proporção diferente */
.compare-container::before {
  content: "";
  display: block;
  padding-top: 52%;   /* 52% ≈ proporção 16:8.3 — ajuste se quiser mais alto/baixo */
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;   /* fundo branco igual ao das fotos */
  display: block;
  pointer-events: none;
}

/* A imagem "depois" é recortada pela direita via clip-path — controlado via JS */
.compare-after {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}

/* Labels sobrepostos */
.compare-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 22px 28px; z-index: 3; pointer-events: none;
}
.compare-label {
  padding: 8px 20px; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  backdrop-filter: blur(10px);
}
.label-before { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.label-after  { background: rgba(198,161,91,.9);   color: #111; }

/* Linha divisória */
.compare-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

/* Handle arrastável */
.compare-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  gap: 4px; font-size: .7rem;
  box-shadow: 0 0 0 4px rgba(198,161,91,.3), 0 8px 25px rgba(0,0,0,.4);
  pointer-events: none;
}

/* =========================================================
   INSTAGRAM
========================================================= */
/* =========================================================
   INSTAGRAM — Behold widget override
========================================================= */
.instagram-embed-wrap {
  margin-bottom: 40px;
  width: 100%;
}

behold-widget {
  display: block;
  width: 100% !important;
}

/* Grade interna do Behold */
behold-widget,
behold-widget > *,
.behold-widget,
.behold-feed {
  width: 100% !important;
  max-width: 100% !important;
}

/* Forçar grid 4 colunas e imagens maiores */
.behold-feed__post-container,
[class*="behold"] [class*="grid"],
[class*="behold"] [class*="posts"] {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
}

[class*="behold"] [class*="post"],
[class*="behold"] [class*="item"] {
  width: 100% !important;
  aspect-ratio: 1 !important;
}
.insta-post-item {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; border: 1px solid var(--line); transition: var(--transition);
}
.insta-post-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.insta-post-item img { width: 100%; height: 100%; object-fit: cover; }
.insta-post-item .insta-hover {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); color: #fff; font-size: 1.6rem;
}
.insta-post-item:hover .insta-hover { opacity: 1; }
.insta-placeholder {
  grid-column: 1/-1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 60px 0; color: var(--gray);
}
.insta-placeholder i { font-size: 2.5rem; color: var(--gold); }
.instagram-notice {
  text-align: center; color: var(--gray); font-size: .9rem;
  margin-bottom: 20px; padding: 20px; background: var(--gray-light);
  border-radius: 16px; border: 1px solid var(--line);
}
.instagram-notice a { color: var(--gold); font-weight: 700; }
.instagram-action { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   CONTACT
========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; }
.contact-list { margin-top: 35px; display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 16px; color: var(--gray); }
.contact-link {
  text-decoration: none;
  transition: var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-link:hover i { background: rgba(198,161,91,.25); color: var(--gold); }
.contact-item i {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(198,161,91,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.contact-card {
  background: var(--black); border-radius: 28px; padding: 45px;
  color: var(--white); position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(198,161,91,.08), transparent);
}
.contact-card h3, .contact-card p, .contact-card .btn { position: relative; z-index: 2; }
.contact-card h3 { font-size: 2rem; margin-bottom: 16px; }
.contact-card p { color: rgba(255,255,255,.7); margin-bottom: 30px; }

/* =========================================================
   FOOTER
========================================================= */
.footer { background: #0a0a0a; padding: 28px 0; color: rgba(255,255,255,.5); }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); }

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; z-index: 999;
  box-shadow: 0 12px 35px rgba(37,211,102,.35);
  animation: pulse 2s infinite;
}

/* =========================================================
   DARK THEME — refinado, tons em camadas
========================================================= */
body.dark {
  background: #141414;
  color: #e8e8e8;
}

/* Variáveis sobrescritas no dark */
body.dark {
  --white: #1e1e1e;
  --black: #e8e8e8;
  --gray: #9a9a9a;
  --gray-light: #1a1a1a;
  --line: #2e2e2e;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --shadow-hover: 0 20px 60px rgba(0,0,0,.4);
}

/* Header */
body.dark .header {
  background: rgba(20,20,20,.92) !important;
  border-bottom-color: rgba(255,255,255,.05) !important;
  box-shadow: none !important;
}
body.dark .menu a         { color: #ccc; }
body.dark .menu a:hover   { color: var(--gold); }
body.dark .logo-text span { color: rgba(255,255,255,.4); }
body.dark .logo-text strong { color: #f0f0f0; }

/* Menu mobile */
body.dark .menu {
  background: #1a1a1a;
}

/* Botão outline dark mode */
body.dark .btn-outline-dark {
  border-color: rgba(255,255,255,.12);
  color: #e0e0e0;
}
body.dark .btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* About */
body.dark .about-section,
body.dark .about { background: #141414; }
body.dark .highlight-card {
  background: #1e1e1e;
  border-color: #2e2e2e;
}
body.dark .highlight-card strong { color: var(--gold); }
body.dark .highlight-card span   { color: #8a8a8a; }

/* Services */
body.dark .services { background: #111111; }
body.dark .service-card {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #d0d0d0;
}
body.dark .service-card h3 { color: #f0f0f0; }
body.dark .service-card p  { color: #8a8a8a; }
body.dark .service-card::before {
  background: linear-gradient(135deg, rgba(198,161,91,.05), transparent);
}

/* Gallery — já é escura, só ajusta borda */
body.dark .gallery-track-item {
  border-color: rgba(198,161,91,.2);
}

/* Compare section — já é escura */
body.dark .compare-section { background: #0f0f0f; }

/* Contact */
body.dark .contact { background: #141414; }
body.dark .contact-info h2  { color: #f0f0f0; }
body.dark .contact-info p   { color: #8a8a8a; }
body.dark .contact-item     { color: #9a9a9a; }
body.dark .contact-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
}
body.dark .contact-card h3 { color: #f0f0f0; }
body.dark .contact-card p  { color: rgba(255,255,255,.5); }

/* Instagram */
body.dark .instagram { background: #141414; }
body.dark .instagram-notice {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #8a8a8a;
}
body.dark .insta-post-item { border-color: #2a2a2a; }

/* Footer */
body.dark .footer { background: #0a0a0a; }
body.dark .footer-copy { color: rgba(255,255,255,.35); }
body.dark .footer-social a { background: rgba(255,255,255,.05); }

/* Age gate — já é escuro */

/* Seção header textos */
body.dark .section-header h2 { color: #f0f0f0; }
body.dark .section-header p  { color: #8a8a8a; }

/* About content */
body.dark .about-content h2 { color: #f0f0f0; }
body.dark .about-content p  { color: #8a8a8a; }

/* Transição suave — lista cirúrgica, sem .menu */
body, .header, .service-card, .highlight-card,
.contact-card, .theme-toggle,
.section-tag, .btn, .contact-item i,
.footer, .footer-social a {
  transition: background-color .4s ease, border-color .4s ease,
              color .4s ease, box-shadow .4s ease;
}
body img, body video { transition: none !important; }

/* Menu — nunca recebe background via dark mode */
.menu,
.menu a {
  background: transparent !important;
  transition: color .3s ease !important;
}

/* Dark mode: menu desktop continua transparente */
body.dark .menu { background: transparent !important; }

/* Dark mode: menu mobile (aberto) recebe fundo escuro */
@media (max-width: 980px) {
  body.dark .menu { background: #1a1a1a !important; }
}

/* Hero — texto sempre branco independente do tema */
.hero-content,
.hero-content h1,
.hero-content p,
.hero-badge { color: inherit; }

.hero-slide .hero-content { color: #ffffff !important; }
.hero-slide .hero-content h1 { color: #ffffff !important; }
.hero-slide .hero-content p  { color: rgba(255,255,255,.75) !important; }
.hero-slide .hero-badge      { color: var(--gold-soft) !important; }

/* Botão outline-light — sempre branco no hero */
.hero-slide .btn-outline-light {
  border-color: rgba(255,255,255,.3) !important;
  color: #ffffff !important;
  background: transparent !important;
}
.hero-slide .btn-outline-light:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* =========================================================
   THEME TOGGLE BUTTON
========================================================= */
.theme-toggle {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--gray-light);
  border: 1px solid var(--line);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease,
              color .3s ease, transform .3s ease;
}
.theme-toggle:hover {
  background: rgba(198,161,91,.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(20deg);
}
body.dark .theme-toggle {
  background: #1e1e1e;
  border-color: #2e2e2e;
  color: rgba(255,255,255,.5);
}
body.dark .theme-toggle:hover {
  background: rgba(198,161,91,.1);
  border-color: var(--gold);
  color: var(--gold);
}


@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%{transform:scale(1)} 50%{transform:scale(1.08)} 100%{transform:scale(1)} }

/* =========================================================
   BUMPER — Seção de peças
========================================================= */
.bumper { background: var(--gray-light); }
body.dark .bumper { background: #111111; }

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

/* Imagens */
.bumper-images { position: relative; }

.bumper-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}
body.dark .bumper-main-img { background: #1a1a1a; border-color: #2a2a2a; }

.bumper-main-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: opacity .3s ease;
}

/* Setas de navegação sobre a imagem */
.bumper-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background .3s ease, transform .3s ease;
  backdrop-filter: blur(6px);
}
.bumper-arrow:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-50%) scale(1.1);
}
.bumper-arrow.prev { left: 14px; }
.bumper-arrow.next { right: 14px; }

.bumper-thumbs {
  display: flex; gap: 12px; margin-top: 14px;
}
.bumper-thumb {
  width: 72px; height: 72px;
  border-radius: 12px; overflow: hidden;
  border: 2px solid transparent;
  background: #fff; cursor: pointer;
  transition: var(--transition); padding: 0; flex-shrink: 0;
}
body.dark .bumper-thumb { background: #1a1a1a; }
.bumper-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bumper-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.bumper-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.2); }

/* Info */
.bumper-info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }

.bumper-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; width: fit-content;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  color: #16a34a; font-size: .82rem; font-weight: 700;
}
body.dark .bumper-badge { background: rgba(34,197,94,.08); color: #4ade80; }

.bumper-info h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1; margin: 0;
}

.bumper-desc { color: var(--gray); line-height: 1.75; margin: 0; }

.bumper-models { display: flex; flex-direction: column; gap: 10px; }
.bumper-models-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gray);
}
.bumper-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bumper-tag {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(198,161,91,.1); border: 1px solid rgba(198,161,91,.2);
  color: var(--gold); font-size: .8rem; font-weight: 700;
}

.bumper-divider { height: 1px; background: var(--line); margin: 4px 0; }
body.dark .bumper-divider { background: #2a2a2a; }

.bumper-cta { width: 100%; font-size: 1rem; padding: 18px 28px; justify-content: center; }

.bumper-note {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray); font-size: .82rem; margin: 0;
}
.bumper-note i { color: var(--gold); flex-shrink: 0; }

/* Responsive bumper */
@media (max-width: 900px) {
  .bumper-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 580px) {
  .bumper-thumbs { gap: 8px; }
  .bumper-thumb  { width: 58px; height: 58px; }
  .bumper-info h3 { font-size: 2rem; }
  .bumper-arrow  { width: 38px; height: 38px; font-size: .8rem; }
}



/* Tablet largo / laptop pequeno (< 1200px) */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 380px; }
}

/* Tablet / menu mobile (< 980px) */
@media (max-width: 980px) {
  /* Menu lateral */
  .menu {
    position: fixed; top: 90px; right: -100%;
    width: 320px; height: calc(100vh - 90px);
    background: var(--white); flex-direction: column;
    align-items: flex-start; padding: 40px 30px; gap: 8px;
    transition: right .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.08);
    z-index: 999; overflow-y: auto;
  }
  .menu.active { right: 0; }
  .menu a { font-size: 1.1rem; padding: 10px 0; width: 100%; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .desktop-whatsapp { display: none; }

  /* Grids de 2 colunas → 1 coluna */
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-image img { min-height: auto; }
  .about-image::before { display: none; } /* remove decoração que quebra no mobile */

  /* Hero */
  .hero-content h1 { font-size: clamp(2.8rem, 7vw, 4.5rem); letter-spacing: -2px; }
  .hero-content { max-width: 100%; }

  /* Serviços — 2 → 1 coluna no 768 */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Highlights */
  .about-highlights { gap: 12px; }
  .highlight-card { min-width: 120px; }

  /* Compare */
  .compare-container::before { padding-top: 65%; }
}

/* Tablet pequeno / mobile grande (< 768px) */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  /* Hero centralizado */
  .hero-content { text-align: center; margin: 0 auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-content h1 { font-size: clamp(2.4rem, 8vw, 3.8rem); }

  /* Grids → 1 coluna */
  .services-grid        { grid-template-columns: 1fr; }
  .instagram-feed-grid  { grid-template-columns: repeat(2, 1fr); }

  /* Galeria — cards menores */
  .gallery-track-item { width: 280px; height: 220px; }

  /* Compare */
  .compare-container::before { padding-top: 75%; }
  .compare-label { font-size: .72rem; padding: 6px 14px; }

  /* Modal */
  .modal-nav.prev { left: 8px; }
  .modal-nav.next { right: 8px; }
  .modal-close    { top: 16px; right: 16px; }
  .gallery-modal img { max-width: 92%; border-radius: 16px; }

  /* Age gate */
  .age-box  { padding: 40px 24px; }
  .age-box h1 { font-size: 2rem; }
  .age-actions { flex-direction: column; }
  .age-actions .btn { width: 100%; }

  /* Contact */
  .contact-card { padding: 36px 28px; }
  .contact-card h3 { font-size: 1.6rem; }

  /* Footer */
  .footer-content  { flex-direction: column; gap: 16px; text-align: center; }
  .footer-social   { justify-content: center; }

  /* Instagram action */
  .instagram-action { flex-direction: column; align-items: center; }
  .instagram-action .btn { width: 100%; max-width: 340px; }

  /* About highlights */
  .about-highlights { flex-direction: row; flex-wrap: wrap; }
  .highlight-card   { flex: 1 1 calc(50% - 9px); min-width: unset; }
}

/* Mobile padrão (< 580px) */
@media (max-width: 580px) {
  .section { padding: 60px 0; }

  /* Hero */
  .hero-content h1  { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -1px; }
  .hero-content p   { font-size: .95rem; }
  .hero-buttons     { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }

  /* Títulos */
  .section-header h2,
  .about-content h2  { font-size: clamp(1.8rem, 7vw, 2.4rem); letter-spacing: -1px; }
  .contact-info h2   { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* Menu full width */
  .menu { width: 100%; border-radius: 0; }

  /* Header mais compacto */
  .nav { min-height: 72px; }
  .logo { width: 44px; height: 44px; }
  .logo-text strong { font-size: 1rem; }
  .logo-text span   { display: none; }

  /* Galeria */
  .gallery-track-item { width: 240px; height: 190px; }

  /* Services */
  .service-card { padding: 32px 24px; }

  /* Compare */
  .compare-container::before { padding-top: 85%; }
  .compare-handle { width: 42px; height: 42px; font-size: .6rem; }
  .compare-label  { display: none; } /* oculta labels no mobile pequeno */

  /* WhatsApp float — menor */
  .whatsapp-float { width: 54px; height: 54px; font-size: 1.5rem; right: 16px; bottom: 16px; }

  /* Theme toggle */
  .theme-toggle { width: 40px; height: 40px; }

  /* Instagram grid — 2 colunas */
  .instagram-feed-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Age box */
  .age-box img { width: 70px; }

  /* Footer */
  .footer-copy { font-size: .75rem; text-align: center; }
}

/* Mobile pequeno (< 380px — iPhone SE, Galaxy A) */
@media (max-width: 380px) {
  .hero-content h1 { font-size: 1.9rem; }
  .gallery-track-item { width: 200px; height: 160px; }
  .age-box { padding: 32px 18px; }
  .age-box h1 { font-size: 1.7rem; }
  .section-header h2, .about-content h2 { font-size: 1.7rem; }
  .btn { padding: 14px 20px; font-size: .9rem; }
}

