/* =========================================
   EMPÓRIO RAÇÕES — Design System Premium
   ========================================= */

/* === IMPORT FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary:       #C62828;
  --primary-dark:  #8E1A1A;
  --primary-light: #EF5350;
  --secondary:     #E53935;
  --accent:        #FFB300;
  --text:          #202124;
  --text-muted:    #5f6368;
  --gray:          #F5F5F5;
  --gray-mid:      #E0E0E0;
  --white:         #FFFFFF;
  --dark:          #111111;
  --dark-2:        #1a1a1a;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --shadow-red:  0 8px 30px rgba(198,40,40,.30);

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === CUSTOM CURSOR === */
#cursor {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s, opacity .2s;
  mix-blend-mode: normal;
}
#cursor-follower {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(198,40,40,.45);
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, top .08s linear, left .08s linear;
}
body:hover #cursor { opacity: 1; }
.cursor-grow #cursor { width: 36px; height: 36px; background: var(--primary-light); }

/* === SCROLL BAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* === UTILITIES === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(198,40,40,.10);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(198,40,40,.20);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.02em;
}
.section-title span { color: var(--primary); }
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(198,40,40,.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* delay utilities */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* =========================================
   HEADER
   ========================================= */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, padding .4s;
}
#header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 40px rgba(0,0,0,.10);
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), transform var(--transition);
}
.logo:hover .logo-img { transform: scale(1.04); }
#header.scrolled .logo-img {
  filter: none;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  padding: .5rem .9rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav a:hover::after { width: 60%; }
.nav a:hover { color: var(--white); }
#header.scrolled .nav a { color: var(--text-muted); }
#header.scrolled .nav a:hover { color: var(--primary); }
#header.scrolled .nav a::after { background: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
#header.scrolled .header-phone { color: var(--text-muted); }
.header-phone:hover { color: var(--accent) !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--text); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}

/* =========================================
   HERO
   ========================================= */
/* === HERO — Pattern: Oliver Turismo === */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.30) 100%
  );
}

/* Hero content — positioned from top, no vertical centering */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: clamp(140px, 22vh, 200px);
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s .15s forwards;
}
.hero-top-badge .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero-top-badge .badge-text {
  font-family: var(--font-heading);
  font-size: .84rem;
  color: rgba(255,255,255,.92);
  letter-spacing: -.01em;
}
.hero-top-badge .badge-text strong {
  color: var(--white);
  font-weight: 700;
}

.hero-title .highlight {
  color: var(--accent);
}
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hero-actions .btn {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Hero bullets — inline info row at the bottom */
.hero-bullets {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.hero-bullet-icon {
  display: flex;
  align-items: center;
}
.hero-bullet-icon svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,.55);
}

/* Floating paw elements */
.hero-floats {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  color: rgba(255,255,255,1);
}
.paw-float {
  position: absolute;
  animation: floatPaw 8s ease-in-out infinite;
  line-height: 0;
}
.paw-float:nth-child(1) { top: 15%; right: 12%; animation-delay: 0s; }
.paw-float:nth-child(2) { top: 30%; right: 25%; animation-delay: 2s; }
.paw-float:nth-child(3) { top: 60%; right: 8%;  animation-delay: 4s; }
.paw-float:nth-child(4) { top: 75%; right: 30%; animation-delay: 1s; }
.paw-float:nth-child(5) { top: 20%; right: 40%; animation-delay: 3s; }
@keyframes floatPaw {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(15deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .6s 1.4s forwards;
}
.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   CATEGORIAS — Photo Cards
   ========================================= */
#categorias {
  padding: 8rem 0;
  background: var(--white);
}
.categorias-header {
  text-align: center;
  margin-bottom: 4rem;
}
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* === Photo Card === */
.cat-photo-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-decoration: none;
  background: #111;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-photo-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.cat-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cat-photo-card:hover .cat-photo-wrap {
  transform: scale(1.08);
}
.cat-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
}

/* Gradient overlay — darkens from bottom */
.cat-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.06) 0%,
    rgba(0,0,0,.18) 40%,
    rgba(0,0,0,.72) 100%
  );
  transition: background var(--transition);
}
.cat-photo-card:hover .cat-photo-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.10) 0%,
    rgba(198,40,40,.22) 40%,
    rgba(120,10,10,.82) 100%
  );
}

/* Bottom text content */
.cat-photo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cat-photo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.cat-photo-cta {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.cat-photo-card:hover .cat-photo-cta {
  opacity: 1;
  transform: translateY(0);
}
.cat-arrow {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,.85);
  transition: transform .25s ease;
}
.cat-photo-card:hover .cat-arrow {
  transform: translateX(3px);
}


/* =========================================
   DIFERENCIAIS
   ========================================= */
#diferenciais {
  padding: 8rem 0;
  background: var(--gray);
}
.diferenciais-header {
  text-align: center;
  margin-bottom: 4rem;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.dif-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.dif-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.dif-card:hover {
  border-color: rgba(198,40,40,.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.dif-card:hover::after { transform: scaleX(1); }
.dif-icon {
  width: 64px; height: 64px;
  background: rgba(198,40,40,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.dif-card:hover .dif-icon {
  background: var(--primary);
}
.dif-icon svg { transition: var(--transition); }
.dif-card:hover .dif-icon svg { stroke: white; }
.dif-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.dif-desc {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   MARCAS
   ========================================= */
#marcas {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}
.marcas-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.marcas-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marcas-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marcas-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marca-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  min-width: 170px;
  height: 70px;
  filter: grayscale(0.85) opacity(.75);
  transition: var(--transition);
  cursor: default;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.marca-item:hover {
  filter: grayscale(0) opacity(1);
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px) scale(1.05);
}
.marca-logo {
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.marca-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -.01em;
}

/* =========================================
   PRODUTOS
   ========================================= */
#produtos {
  padding: 8rem 0;
  background: var(--gray);
}
.produtos-header {
  text-align: center;
  margin-bottom: 3rem;
}
.produtos-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.tab-btn {
  padding: .55rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.produto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.produto-card:hover {
  border-color: rgba(198,40,40,.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.produto-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.produto-img img {
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.produto-card:hover .produto-img img { transform: scale(1.08); }
.produto-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
}
.produto-info {
  padding: 1.25rem;
}
.produto-cat {
  font-size: .78rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
  font-family: var(--font-heading);
}
.produto-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.4;
}

/* =========================================
   SOBRE
   ========================================= */
#sobre {
  padding: 8rem 0;
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 580px;
  box-shadow: var(--shadow-lg);
}
.sobre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.sobre-img-wrap:hover img { transform: scale(1.04); }
.sobre-img-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-red);
  text-align: center;
}
.sobre-img-badge-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.sobre-img-badge-text {
  font-size: .78rem;
  font-weight: 500;
  opacity: .9;
  margin-top: .2rem;
}
.sobre-content { }
.sobre-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.stat-item {
  background: var(--gray);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =========================================
   GALERIA
   ========================================= */
#galeria {
  padding: 8rem 0;
  background: var(--gray);
}
.galeria-header {
  text-align: center;
  margin-bottom: 4rem;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item:nth-child(1) { grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-item-inner {
  width: 100%;
  height: 100%;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.gal-item:nth-child(1) .gal-item-inner { min-height: 540px; }
.gal-item:nth-child(4) .gal-item-inner { min-height: 280px; }

.gal-item-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gal-item:hover .gal-item-inner img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(198,40,40,.7), rgba(230,57,53,.5));
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay-icon {
  font-size: 2.5rem;
  color: white;
  transform: scale(0.5);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.gal-item:hover .gal-overlay-icon { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

/* =========================================
   GOOGLE REVIEWS
   ========================================= */
#reviews {
  padding: 8rem 0;
  background: var(--white);
}
.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}
.google-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--gray);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.5rem;
  margin-bottom: 3rem;
  border: 1.5px solid var(--gray-mid);
}
.google-logo { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); }
.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC04; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }
.google-rating-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}
.google-stars { font-size: 1.25rem; color: #FBBC04; letter-spacing: .1em; }
.google-count { font-size: .88rem; color: var(--text-muted); margin-top: .2rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(198,40,40,.15);
  transform: translateY(-4px);
}
.review-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: .2;
  font-family: Georgia, serif;
  margin-bottom: -.5rem;
}
.review-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-stars { font-size: .9rem; color: #FBBC04; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  font-size: .95rem;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
}
.review-date {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .1rem;
}
.reviews-cta { text-align: center; }

/* =========================================
   INSTAGRAM
   ========================================= */
#instagram {
  padding: 8rem 0;
  background: var(--gray);
}
.instagram-header {
  text-align: center;
  margin-bottom: 4rem;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.insta-icon { font-size: 1.5rem; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item-inner {
  width: 100%; height: 100%;
  position: relative;
}
.insta-item img {
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(198,40,40,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.instagram-cta { text-align: center; }

/* =========================================
   MAPA + CONTATO
   ========================================= */
#contato {
  padding: 8rem 0;
  background: var(--white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contato-info {}
.contato-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.contato-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contato-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contato-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: .3rem;
}
.contato-value {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contato-value a { color: var(--primary); font-weight: 600; }
.horario-grid {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.horario-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
}
.horario-row .dia { color: var(--text); font-weight: 500; }
.horario-row .hora { color: var(--primary); font-weight: 600; }

.mapa-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 3px solid var(--gray-mid);
}
.mapa-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* =========================================
   CTA FINAL
   ========================================= */
#cta-final {
  padding: 8rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute; inset: 0;
  opacity: .18;
}
.cta-bg-img img { object-fit: cover; width: 100%; height: 100%; }
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transition: var(--transition);
}
.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.cta-shapes {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-shape:nth-child(1) { width: 350px; height: 350px; top: -100px; left: -80px; }
.cta-shape:nth-child(2) { width: 250px; height: 250px; bottom: -80px; right: 10%; }
.cta-shape:nth-child(3) { width: 180px; height: 180px; top: 50%; right: 5%; transform: translateY(-50%); }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--dark-2);
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.55);
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .88rem;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--accent); }

/* =========================================
   MOBILE BOTTOM NAV PILL
   ========================================= */
.bottom-nav-pill {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 2rem);
  max-width: 420px;
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  z-index: 1000;
  padding: 0 0.5rem;
  align-items: center;
  justify-content: space-around;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.bottom-nav-icon {
  width: 20px !important;
  height: 20px !important;
  stroke: var(--text-muted);
  transition: stroke 0.2s ease;
}

.bottom-nav-item.active {
  color: var(--primary);
  font-weight: 700;
}
.bottom-nav-item.active .bottom-nav-icon {
  stroke: var(--primary);
}

.bottom-nav-wa {
  position: relative;
  overflow: visible;
}
.bottom-wa-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C62828, #E53935);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -22px;
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.45);
  border: 3px solid var(--white);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}
.bottom-nav-wa:active .bottom-wa-btn,
.bottom-nav-wa:hover .bottom-wa-btn {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(198, 40, 40, 0.6);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
  .categorias-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-wrap { height: 420px; }
  .sobre-img-badge { right: 1rem; bottom: 1rem; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .categorias-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
  /* Prevent horizontal animation overflow on mobile */
  .reveal-left, .reveal-right {
    transform: translateY(30px) !important;
  }
  .reveal-left.visible, .reveal-right.visible {
    transform: translateY(0) !important;
  }
  .nav, .header-phone, #cta-header { display: none !important; }
  .hamburger { display: flex; }
  .wa-float { display: none !important; }
  .bottom-nav-pill { display: flex; }
  body { padding-bottom: 70px; }

  .hero-content {
    padding-top: clamp(110px, 18vh, 150px);
  }
  .hero-top-badge {
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
  }
  .hero-top-badge .badge-text {
    font-size: 0.76rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }
  .hero-bullets {
    margin-top: 1.75rem;
    gap: 0.75rem;
  }

  .categorias-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .cat-photo-card { aspect-ratio: 4 / 5; }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gal-item:nth-child(1) { grid-row: span 1; }
  .gal-item:nth-child(4) { grid-column: span 1; }
  .gal-item-inner { min-height: 200px !important; }
  .hero-stats { gap: 1.5rem; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  .google-rating-box { flex-direction: column; gap: .75rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .categorias-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .cat-photo-card { aspect-ratio: 3 / 4; }
  .cat-photo-name { font-size: 0.92rem; }
  .cat-photo-cta { font-size: 0.72rem; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .produtos-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1800px) {
  .container { max-width: 1500px; }
}

/* =========================================
   LUCIDE ICON UTILITIES
   ========================================= */

/* Badge icons — inline in section badges */
.badge-icon {
  width: 16px !important;
  height: 16px !important;
  vertical-align: -2px;
  margin-right: 2px;
  stroke: var(--primary);
}
.section-badge .badge-icon { stroke: var(--primary); }

/* Product badge small icons */
.badge-icon-sm {
  width: 13px !important;
  height: 13px !important;
  vertical-align: -1px;
  margin-right: 2px;
}

/* Button icons */
.btn-icon {
  width: 18px !important;
  height: 18px !important;
  vertical-align: -3px;
  stroke: currentColor;
}

/* Star icons — filled gold */
.star-fill {
  width: 22px !important;
  height: 22px !important;
  fill: #FFB300 !important;
  stroke: #FFB300 !important;
  stroke-width: 0 !important;
}
.star-fill-sm {
  width: 16px !important;
  height: 16px !important;
  fill: #FFB300 !important;
  stroke: #FFB300 !important;
  stroke-width: 0 !important;
}

/* Quote icon */
.quote-icon {
  width: 28px !important;
  height: 28px !important;
  stroke: var(--primary) !important;
  opacity: .25;
}

/* Footer heart */
.footer-heart {
  width: 14px !important;
  height: 14px !important;
  fill: var(--primary) !important;
  stroke: var(--primary) !important;
  vertical-align: -2px;
  margin: 0 2px;
}

/* Social buttons icon sizing */
.social-btn svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,.7);
  transition: stroke .3s;
}
.social-btn:hover svg { stroke: var(--primary); }

/* Contato icon container */
.contato-icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
}

/* Gallery overlay icon */
.gal-overlay-icon svg {
  width: 24px; height: 24px;
  stroke: white;
}

/* Instagram overlay icon */
.insta-overlay svg {
  width: 24px; height: 24px;
  stroke: white;
  fill: none;
}

/* Instagram handle icon */
.insta-icon svg {
  width: 18px; height: 18px;
  stroke: var(--primary);
  vertical-align: -3px;
}

/* Footer contact icon */
.footer-contact-icon svg {
  width: 16px; height: 16px;
  stroke: var(--primary);
}

/* Dif card icon Lucide override */
.dif-icon [data-lucide] {
  width: 28px; height: 28px;
  stroke: var(--primary);
}
.dif-card:hover .dif-icon [data-lucide] { stroke: white; }

