/* Self-hosted Google Fonts — latin subset only */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/bricolage-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================
   SHIBA PET CARE — DESIGN TOKENS
   Royal Purple Custom Palette
   Source: docs/design/design-spec.md
   ============================================ */

:root {
  /* === PRIMARY — Roxo === */
  --color-primary: #530070;
  --color-primary-dark: #3D0053;
  --color-primary-deeper: #2A0039;
  --color-primary-light: #6B1A8A;
  --color-primary-soft: rgba(83, 0, 112, 0.08);
  --color-primary-overlay: rgba(83, 0, 112, 0.85);

  /* === SECONDARY — Laranja === */
  --color-secondary: #F08519;
  --color-secondary-hover: #FF9A35;
  --color-secondary-dark: #D4720F;
  --color-secondary-soft: rgba(240, 133, 25, 0.12);
  --color-secondary-glow: rgba(240, 133, 25, 0.35);

  /* === NEUTRALS === */
  --color-white: #FFFFFF;
  --color-off-white: #FAF8FC;
  --color-gray-lightest: #F5F3F7;
  --color-gray-light: #E8E4EC;
  --color-gray-medium: #9A8FA3;
  --color-dark: #1A1A2E;
  --color-dark-soft: #2D2B3D;

  /* === SEMANTIC === */
  --color-success: #10B981;
  --color-star: #FBBF24;

  /* === SURFACES === */
  --surface-light: var(--color-off-white);
  --surface-alt: var(--color-gray-lightest);
  --surface-dark: var(--color-primary);
  --surface-darker: var(--color-primary-dark);

  /* === TYPOGRAPHY === */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-label: 'Inter', sans-serif;

  --font-weight-heading-semi: 600;
  --font-weight-heading-bold: 700;
  --font-weight-heading-extra: 800;
  --font-weight-body: 400;
  --font-weight-body-medium: 500;
  --font-weight-body-semi: 600;
  --font-weight-label: 600;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-hero: 2.75rem;
  --text-hero-lg: 3.5rem;

  --leading-tight: 1.08;
  --leading-heading: 1.15;
  --leading-card: 1.3;
  --leading-body: 1.7;
  --leading-label: 1.4;

  --tracking-tight: -0.02em;
  --tracking-label: 0.08em;

  /* === SPACING (8px grid) === */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-section: 6rem;

  /* === LAYOUT === */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --container-padding-lg: 2rem;

  /* === BORDERS === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* === SHADOWS === */
  --shadow-sm: 0 2px 8px rgba(83, 0, 112, 0.04);
  --shadow-md: 0 4px 20px rgba(83, 0, 112, 0.06);
  --shadow-lg: 0 12px 40px rgba(83, 0, 112, 0.12);
  --shadow-cta: 0 4px 24px rgba(240, 133, 25, 0.35);
  --shadow-cta-hover: 0 8px 40px rgba(240, 133, 25, 0.5);
  --shadow-header: 0 4px 20px rgba(42, 0, 57, 0.3);
  --shadow-hero-img: 0 20px 60px rgba(42, 0, 57, 0.4);

  /* === EFFECTS === */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 16px;
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(240, 133, 25, 0.2);

  --gradient-hero: linear-gradient(160deg, var(--color-primary-deeper) 0%, var(--color-primary) 40%, var(--color-primary-light) 100%);
  --gradient-hero-glow: radial-gradient(ellipse at 70% 50%, rgba(240, 133, 25, 0.08) 0%, transparent 60%);
  --gradient-footer-divider: linear-gradient(90deg, var(--color-secondary), var(--color-primary-light), transparent);
  --gradient-progress: linear-gradient(90deg, var(--color-secondary), var(--color-primary-light));

  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.7s ease;

  /* === Z-INDEX === */
  --z-grain: 9990;
  --z-header: 100;
  --z-progress: 101;
  --z-fab: 90;
  --z-mobile-menu: 95;
}

/* === RESPONSIVE OVERRIDES === */
@media (min-width: 1024px) {
  :root {
    --container-padding: var(--container-padding-lg);
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-base: none;
    --transition-fast: none;
    --transition-slow: none;
  }
}
/* ============================================
   RESET CSS — Modern Reset
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ============================================
   BASE — Global element styles
   ============================================ */

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-dark);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-bold);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--color-dark);
}

h1 {
  font-size: var(--text-hero);
  font-weight: var(--font-weight-heading-extra);
  line-height: var(--leading-tight);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-heading-semi);
  line-height: var(--leading-card);
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Desktop typography scaling */
@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-hero-lg);
  }

  h2 {
    font-size: var(--text-4xl);
  }
}
/* ============================================
   LAYOUT — Container, sections, grids
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* Section base */
.section {
  padding-block: var(--space-4xl);
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-alt {
  background: var(--surface-alt);
}

.section-offwhite {
  background: var(--surface-light);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Responsive grids */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .section {
    padding-block: var(--space-section);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   COMPONENTS — Reusable UI components
   ============================================ */

/* === BUTTONS === */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: var(--font-weight-body-semi);
  font-size: var(--text-base);
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cta);
  transition: var(--transition-base);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-secondary-hover);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: var(--font-weight-body-semi);
  font-size: var(--text-base);
  line-height: 1;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--font-weight-body-semi);
  font-size: var(--text-base);
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* === CARDS === */

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(83, 0, 112, 0.08);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition-base);
}

.card-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

/* === BADGE === */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-secondary-soft);
  color: var(--color-secondary-dark);
  font-family: var(--font-label);
  font-weight: var(--font-weight-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

/* === FAB WHATSAPP === */

.fab-whatsapp {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: var(--z-fab);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* === SCROLL PROGRESS === */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-progress);
  height: 3px;
  width: 100%;
  background: var(--gradient-progress);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* === GRAIN TEXTURE === */

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain-shift 0.5s steps(4) infinite;
  will-change: transform;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-40px, 20px); }
  50% { transform: translate(20px, -30px); }
  75% { transform: translate(-20px, 40px); }
  100% { transform: translate(0, 0); }
}
/* ============================================
   SECTIONS — Section-specific styles
   Added per story (1.3 Header, 1.4 Hero, etc.)
   ============================================ */

/* === 1.3 HEADER === */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled,
.header.menu-open {
  background: rgba(83, 0, 112, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-header);
}

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

.header__logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body-medium);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__link:hover {
  color: var(--color-white);
}

.header__actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.header__cta {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  text-decoration: none;
}

.header__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.header__instagram:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: rgba(240, 133, 25, 0.1);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: calc(var(--z-mobile-menu) + 1);
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile side-drawer */
.header__mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100vh;
  height: 100dvh;
  z-index: var(--z-mobile-menu);
  background: rgba(42, 0, 57, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  padding: 5rem var(--space-xl) var(--space-xl);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}

.header__mobile-overlay.open {
  transform: translateX(0);
  visibility: visible;
}

.header__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header__mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-menu li:last-child {
  border-bottom: none;
}

.header__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-semi);
  font-size: 1.125rem;
  color: var(--color-white);
  text-decoration: none;
  padding: var(--space-md) 0;
  transition: color 0.2s ease;
}

.header__mobile-link:hover {
  color: var(--color-secondary);
}

.header__mobile-menu .btn-primary {
  margin-top: var(--space-lg);
  text-decoration: none;
  text-align: center;
  font-size: var(--text-sm);
}

.header__mobile-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-semi);
  font-size: 1rem;
  text-decoration: none;
  padding: var(--space-md) 0;
  transition: color 0.2s ease;
}

.header__mobile-instagram:hover {
  color: var(--color-secondary);
}

/* Skip to content */
.skip-to-content:focus {
  position: fixed;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 9999;
  width: auto;
  height: auto;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-secondary);
  color: var(--color-dark);
  font-weight: var(--font-weight-body-semi);
  border-radius: var(--radius-sm);
  clip: auto;
  white-space: normal;
}

/* Desktop */
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }

  .header__actions {
    display: flex;
  }

  .header__hamburger {
    display: none;
  }
}

/* === 1.4 HERO === */

.hero {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding-top: 90px;
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-glow);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.hero__content {
  max-width: 600px;
}

.hero__content .eyebrow {
  font-size: var(--text-lg);
  letter-spacing: 0.15em;
}

.hero__title {
  font-family: 'Bricolage Grotesque', 'Poppins', 'Segoe UI', sans-serif;
  font-size: var(--text-hero);
  font-weight: var(--font-weight-heading-extra);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-md);
  color: #ffffff;
  -webkit-text-stroke: 1.5px var(--color-primary);
  paint-order: stroke fill;
  text-shadow: 0 0 12px rgba(240, 133, 25, 0.2), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--leading-body);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero__cta {
  text-decoration: none;
}

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at center,
    rgba(240, 133, 25, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  border-radius: 32px;
}

.hero__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-hero-img);
  object-fit: cover;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: hero-bounce 2s ease infinite;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 80px;
    padding-bottom: var(--space-3xl);
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    flex: 0 0 55%;
  }

  .hero__title {
    font-size: var(--text-hero-lg);
  }

  .hero__image-wrap {
    flex: 0 0 45%;
  }

  .hero__scroll-indicator {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 0;
    padding-bottom: var(--space-2xl);
    background: var(--color-primary-deeper);
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
    gap: 0;
  }

  .hero__image-wrap {
    order: 1;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    overflow: hidden;
  }

  .hero__image-wrap::before {
    display: none;
  }

  .hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      var(--color-primary-deeper) 0%,
      rgba(42, 0, 57, 0) 15%,
      rgba(42, 0, 57, 0) 55%,
      rgba(42, 0, 57, 0.15) 65%,
      rgba(42, 0, 57, 0.4) 75%,
      rgba(42, 0, 57, 0.7) 85%,
      rgba(42, 0, 57, 0.92) 93%,
      var(--color-primary-deeper) 100%
    );
    z-index: 1;
  }

  .hero__img {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }

  .hero__content {
    order: 2;
    text-align: center;
    max-width: 100%;
    margin-top: -40vw;
    position: relative;
    z-index: 2;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__content .eyebrow,
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

/* === 1.6 SERVICOS === */

.servicos__cat-title {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.servicos__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.servicos__grid .card h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-semi);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xs);
}

.servicos__grid .card p {
  font-size: var(--text-sm);
  color: var(--color-gray-medium);
  line-height: var(--leading-card);
}

@media (min-width: 768px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .servicos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === 1.8 GALERIA === */

.galeria__carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.galeria__carousel::-webkit-scrollbar {
  display: none;
}

.galeria__item {
  flex: 0 0 80%;
  scroll-snap-align: center;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.galeria__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galeria__item:hover img {
  transform: scale(1.03);
}

.galeria__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(83, 0, 112, 0.8);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-label);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.galeria__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.galeria__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-base);
}

.galeria__arrow:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .galeria__item {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .galeria__item {
    flex: 0 0 33%;
  }

  .galeria__item img {
    height: 340px;
  }
}

/* === 1.9 SOBRE === */

.sobre__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.sobre__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.sobre__content p {
  color: var(--color-dark-soft);
  margin-bottom: var(--space-md);
}

.sobre__content .section-divider {
  margin-bottom: var(--space-lg);
}

.sobre__content .btn-secondary {
  margin-top: var(--space-md);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .sobre__inner {
    flex-direction: row;
    align-items: center;
  }

  .sobre__image {
    flex: 0 0 45%;
  }

  .sobre__content {
    flex: 0 0 55%;
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-xl);
  }
}

/* === 1.10 DEPOIMENTOS === */

.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.depoimentos__card {
  position: relative;
  text-align: left;
}

.depoimentos__quote {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-extra);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.1;
  position: absolute;
  top: 8px;
  left: 16px;
}

.depoimentos__text {
  font-style: italic;
  color: var(--color-dark-soft);
  line-height: var(--leading-body);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.depoimentos__stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  margin-bottom: var(--space-sm);
}

.depoimentos__name {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-semi);
  display: block;
  margin-bottom: 2px;
}

.depoimentos__pet {
  font-size: var(--text-sm);
  color: var(--color-gray-medium);
}

.depoimentos__cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .depoimentos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === 1.11 FAQ === */

.faq__list {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-gray-light);
}

.faq__question {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-semi);
  font-size: var(--text-lg);
  color: var(--color-dark);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq__item[open] .faq__icon::after {
  transform: rotate(90deg);
}

.faq__answer {
  padding-bottom: 1.25rem;
}

.faq__answer p {
  color: var(--color-dark-soft);
  line-height: var(--leading-body);
}

/* === 1.12 CONTATO === */

.contato__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contato__cta {
  text-decoration: none;
  margin-bottom: var(--space-xl);
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contato__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--color-dark-soft);
}

.contato__detail svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.contato__instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: var(--font-weight-body-semi);
}

.contato__horarios {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--text-sm);
}

.contato__mapa iframe {
  width: 100%;
  height: 300px;
}

@media (min-width: 1024px) {
  .contato__inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .contato__info {
    flex: 0 0 50%;
  }

  .contato__mapa {
    flex: 0 0 50%;
  }

  .contato__mapa iframe {
    height: 400px;
  }
}

/* === 1.13 FOOTER === */

.footer {
  background: var(--color-primary-deeper);
  color: var(--color-white);
  padding-top: var(--space-3xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  width: 96px;
  height: 96px;
  margin-bottom: var(--space-md);
  display: block;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.footer__social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--color-secondary);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading-semi);
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-sm);
  margin: 0;
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__credit:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__credit img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer__credit:hover img {
  opacity: 1;
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
    align-items: stretch;
  }

  .footer__brand {
    align-items: center;
    justify-content: flex-end;
    text-align: center;
  }

  .footer__desc {
    max-width: 320px;
  }

  .footer__logo {
    width: 90px;
    height: 90px;
  }

  .footer__social {
    justify-content: center;
  }
}
/* ============================================
   UTILITIES — Helper classes
   ============================================ */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-label);
  font-weight: var(--font-weight-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  line-height: var(--leading-label);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary-light));
  margin-top: var(--space-md);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
