/* ==========================================================================
   STUDIO 88 TATTOO & BODY PIERCING - DESIGN SYSTEM & STYLES
   Theme: Obsidian Dark Luxury & Cyan Electric (#00A0E3)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@600;700;720&family=Bebas+Neue&display=swap');

/* --- CSS Variables & Design Tokens --- */
/* Default: Light Theme (Tema Claro Principal) */
:root {
  /* Color Palette - Light Luxury & Cyan Electric */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f6fa;
  --bg-tertiary: #e9ecf3;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafd;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-ambient-glow: radial-gradient(circle, rgba(0, 160, 227, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
  --bg-hero-gradient: radial-gradient(circle at 75% 30%, rgba(0, 160, 227, 0.1) 0%, rgba(255, 255, 255, 0.96) 60%),
    radial-gradient(circle at 10% 80%, rgba(0, 160, 227, 0.05) 0%, rgba(244, 246, 250, 0.98) 50%);
  --bg-events-banner: radial-gradient(circle at 10% 20%, rgba(0, 160, 227, 0.12) 0%, rgba(244, 246, 250, 0.96) 70%);

  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-bluetattoo: rgba(0, 160, 227, 0.3);
  --border-bluetattoo-bright: #00A0E3;

  /* Bluetattoo Brand Accent */
  --bluetattoo-primary: #00A0E3;
  --bluetattoo-light: #0284c7;
  --bluetattoo-dark: #0077b6;
  --bluetattoo-glow: rgba(0, 160, 227, 0.25);
  --bluetattoo-gradient: linear-gradient(135deg, #0284c7 0%, #00A0E3 50%, #0077b6 100%);

  --accent-cyan: #00A0E3;
  --accent-neon: #ff0055;
  --accent-blue: #00d2ff;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-bluetattoo: #0284c7;

  /* Typography */
  --font-display: 'Syne', 'Bebas Neue', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-bebas: 'Bebas Neue', cursive, sans-serif;

  /* Shadows & Glass */
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-bluetattoo: 0 4px 20px rgba(0, 160, 227, 0.25);
  --shadow-bluetattoo-lg: 0 8px 30px rgba(0, 160, 227, 0.35);

  --backdrop-blur: blur(16px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Element Specific Theming */
  --logo-filter: brightness(0);
  --footer-dev-filter: brightness(0) opacity(0.75);
  --map-filter: none;
  --nav-mobile-bg: rgba(255, 255, 255, 0.98);
  --input-bg: #ffffff;
  --sim-preview-bg: rgba(0, 160, 227, 0.05);
  --lightbox-bg: #ffffff;
  --lightbox-frame-bg: #0b0f17;

  /* Backwards-compatibility aliases for gold/dourado */
  --border-gold: var(--border-bluetattoo);
  --border-gold-bright: var(--border-bluetattoo-bright);
  --gold-primary: var(--bluetattoo-primary);
  --gold-light: var(--bluetattoo-light);
  --gold-dark: var(--bluetattoo-dark);
  --gold-glow: var(--bluetattoo-glow);
  --gold-gradient: var(--bluetattoo-gradient);
  --text-gold: var(--text-bluetattoo);
  --shadow-gold: var(--shadow-bluetattoo);
  --shadow-gold-lg: var(--shadow-bluetattoo-lg);
  --border-Bluetattoo: var(--border-bluetattoo);
  --border-Bluetattoo-bright: var(--border-bluetattoo-bright);
  --Bluetattoo-primary: var(--bluetattoo-primary);
  --Bluetattoo-light: var(--bluetattoo-light);
  --Bluetattoo-dark: var(--bluetattoo-dark);
  --Bluetattoo-glow: var(--bluetattoo-glow);
  --Bluetattoo-gradient: var(--bluetattoo-gradient);
  --text-Bluetattoo: var(--text-bluetattoo);
}

/* --- Dark Theme (Tema Escuro Opcional) --- */
[data-theme="dark"] {
  --bg-primary: #030303;
  --bg-secondary: #0d0f14;
  --bg-tertiary: #141720;
  --bg-card: rgba(18, 21, 28, 0.75);
  --bg-card-hover: rgba(26, 30, 40, 0.85);
  --bg-glass: rgba(12, 14, 18, 0.75);
  --bg-ambient-glow: radial-gradient(circle, rgba(0, 160, 227, 0.08) 0%, rgba(3, 3, 3, 0) 70%);
  --bg-hero-gradient: radial-gradient(circle at 75% 30%, rgba(0, 160, 227, 0.12) 0%, rgba(3, 3, 3, 0.95) 60%),
    radial-gradient(circle at 10% 80%, rgba(0, 160, 227, 0.05) 0%, rgba(3, 3, 3, 0.98) 50%);
  --bg-events-banner: radial-gradient(circle at 10% 20%, rgba(0, 160, 227, 0.15) 0%, rgba(18, 20, 26, 0.95) 70%);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-bluetattoo: rgba(0, 160, 227, 0.3);
  --border-bluetattoo-bright: #00A0E3;

  --bluetattoo-primary: #00A0E3;
  --bluetattoo-light: #38bdf8;
  --bluetattoo-dark: #0077b6;
  --bluetattoo-glow: rgba(0, 160, 227, 0.35);
  --bluetattoo-gradient: linear-gradient(135deg, #38bdf8 0%, #00A0E3 50%, #0077b6 100%);

  --text-primary: #f8f9fa;
  --text-secondary: #a0a5b5;
  --text-muted: #6b7280;
  --text-bluetattoo: #38bdf8;

  --shadow-sm: 0 4px 12px rgba(3, 3, 3, 0.4);
  --shadow-md: 0 10px 30px rgba(3, 3, 3, 0.6);
  --shadow-lg: 0 20px 50px rgba(3, 3, 3, 0.8);
  --shadow-bluetattoo: 0 0 25px rgba(0, 160, 227, 0.25);
  --shadow-bluetattoo-lg: 0 0 45px rgba(0, 160, 227, 0.4);

  --logo-filter: none;
  --footer-dev-filter: none;
  --map-filter: var(--map-filter);
  --nav-mobile-bg: rgba(10, 10, 10, 0.98);
  --input-bg: rgba(3, 3, 3, 0.8);
  --sim-preview-bg: rgba(3, 3, 3, 0.6);
  --lightbox-bg: var(--bg-secondary);
  --lightbox-frame-bg: #030303;
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-size: 1.05rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Ambient Background Glows */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: var(--bg-ambient-glow);
  pointer-events: none;
  z-index: 0;
}

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

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- Typography Helpers --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 720;
  line-height: 1.15;
  color: var(--text-primary);
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.font-bebas {
  font-family: var(--font-bebas);
  letter-spacing: 0.04em;
}

.text-bluetattoo,
.text-gold {
  color: var(--bluetattoo-light);
}

.text-gradient {
  background: var(--bluetattoo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 160, 227, 0.1);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bluetattoo-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

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

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-bluetattoo,
.btn-gold {
  background: var(--bluetattoo-gradient);
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-bluetattoo);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-bluetattoo:hover,
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-bluetattoo-lg);
  color: #ffffff;
}

.btn-outline-bluetattoo,
.btn-outline-gold {
  background: rgba(0, 160, 227, 0.06);
  border: 1px solid var(--border-bluetattoo-bright);
  color: var(--text-bluetattoo);
}

.btn-outline-bluetattoo:hover,
.btn-outline-gold:hover {
  background: var(--bluetattoo-gradient);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-bluetattoo);
}

.btn-glass {
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(15, 23, 42, 0.1);
  border-color: var(--border-bluetattoo);
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
}

[data-theme="dark"] .btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 100px;
  width: auto;
  border-radius: var(--radius-sm);
  filter: var(--logo-filter);
  transition: var(--transition-normal);
}

.site-header .brand-logo img {
  height: 100px;
}

.site-footer .brand-logo img {
  height: 80px;
}

.brand-logo:hover img {
  transform: scale(1.05);
  filter: var(--logo-filter) drop-shadow(0 0 10px var(--bluetattoo-glow));
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--bluetattoo-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--bluetattoo-gradient);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- Theme Toggle Switch Button --- */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 160, 227, 0.08);
  border: 1px solid var(--border-bluetattoo);
  color: var(--bluetattoo-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--bluetattoo-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: var(--shadow-bluetattoo);
}

.theme-toggle .theme-icon-light,
.theme-toggle .theme-icon-dark {
  position: absolute;
  font-size: 1.05rem;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Light Theme: show dark moon */
:root:not([data-theme="dark"]) .theme-toggle .theme-icon-dark {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
:root:not([data-theme="dark"]) .theme-toggle .theme-icon-light {
  transform: rotate(90deg) scale(0);
  opacity: 0;
}

/* Dark Theme: show bright sun */
[data-theme="dark"] .theme-toggle .theme-icon-dark {
  transform: rotate(-90deg) scale(0);
  opacity: 0;
}
[data-theme="dark"] .theme-toggle .theme-icon-light {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  color: #ffb703;
}
[data-theme="dark"] .theme-toggle:hover .theme-icon-light {
  color: #ffffff;
}


.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

[data-theme="dark"] .social-icon-link {
  background: rgba(255, 255, 255, 0.05);
}

.social-icon-link:hover {
  background: var(--bluetattoo-primary);
  color: #ffffff;
  border-color: var(--bluetattoo-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-bluetattoo);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--bg-hero-gradient);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bluetattoo-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--bluetattoo-light);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-family: var(--font-display);
  font-weight: 720;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  line-height: 1.8;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

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

.stat-item h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bluetattoo-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: var(--bg-card);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bluetattoo-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  box-shadow: var(--shadow-bluetattoo);
  flex-shrink: 0;
}

.floating-text h5 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.floating-text p {
  font-size: 0.8rem;
  color: var(--bluetattoo-light);
}

/* --- Section Global Layouts --- */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-dark {
  background-color: var(--bg-secondary);
}

.section-bg-gradient {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-bluetattoo);
  box-shadow: var(--shadow-bluetattoo);
  background: var(--bg-card-hover);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-bluetattoo);
  color: var(--bluetattoo-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 160, 227, 0.1);
  border: 1px solid var(--border-bluetattoo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bluetattoo-light);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.service-features li i {
  color: var(--bluetattoo-light);
  font-size: 0.85rem;
}

/* --- Paulo Augusto (Resident Artist & Master) Section --- */
.artist-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--backdrop-blur);
}

.artist-feature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 160, 227, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.artist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.artist-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-bluetattoo);
  box-shadow: var(--shadow-bluetattoo);
}

.artist-image-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.artist-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.95), transparent);
}

.artist-badge-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.artist-badge-overlay p {
  color: var(--bluetattoo-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.artist-bio h3 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.artist-role {
  color: var(--bluetattoo-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.artist-bio p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.specialties-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.tag-pill {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tag-pill.bluetattoo,
.tag-pill.gold {
  border-color: var(--border-bluetattoo);
  color: var(--text-bluetattoo);
  background: rgba(0, 160, 227, 0.08);
}

/* --- Interactive Portfolio Filter & Gallery --- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--bluetattoo-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-bluetattoo);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-bluetattoo);
  box-shadow: var(--shadow-md);
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-style {
  font-size: 0.8rem;
  color: var(--bluetattoo-light);
  font-weight: 600;
  text-transform: uppercase;
}

/* --- Interactive Budget Simulator (WhatsApp Lead Funnel) --- */
.simulator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-bluetattoo);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--backdrop-blur);
}

.simulator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sim-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.sim-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.sim-select,
.sim-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--input-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.sim-select:focus,
.sim-input:focus {
  border-color: var(--bluetattoo-primary);
  box-shadow: 0 0 12px var(--bluetattoo-glow);
}

.sim-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.sim-preview-box {
  background: var(--sim-preview-bg);
  border: 1px dashed var(--border-bluetattoo);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.preview-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.preview-text strong {
  color: var(--bluetattoo-light);
}

/* --- Events & Flash Tattoo Section --- */
.events-banner {
  background: var(--bg-events-banner);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.events-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.events-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.events-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.perk-item i {
  color: var(--bluetattoo-light);
  font-size: 1.1rem;
}

.events-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.events-img-box img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bluetattoo);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.events-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.events-img-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

/* --- Studio Biosafety & Quality --- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.quality-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition-normal);
}

.quality-card:hover {
  border-color: var(--border-bluetattoo);
  transform: translateY(-5px);
  box-shadow: var(--shadow-bluetattoo);
}

.quality-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(0, 160, 227, 0.1);
  border: 1px solid var(--border-bluetattoo);
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bluetattoo-light);
  font-size: 1.6rem;
}

.quality-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.quality-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Guest Artists / Partners --- */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.guest-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-normal);
}

.guest-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bluetattoo);
}

.guest-img {
  height: 280px;
  width: 100%;
  overflow: hidden;
}

.guest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-slow);
}

.guest-card:hover .guest-img img {
  transform: scale(1.06);
}

.guest-body {
  padding: 1.8rem;
}

.guest-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.guest-body p {
  color: var(--bluetattoo-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* --- Reviews & Testimonials Slider (Scroll Lateral + Autoplay) --- */
.reviews-slider-container {
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
}

.reviews-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0.25rem 1.8rem;
  cursor: grab;
}

.reviews-wrapper:active {
  cursor: grabbing;
}

.reviews-wrapper::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.review-card {
  flex: 0 0 360px;
  max-width: 85vw;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  user-select: none;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bluetattoo);
  box-shadow: var(--shadow-md);
}

.reviews-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-bluetattoo);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.reviews-nav-btn:hover {
  background: var(--bluetattoo-primary);
  color: #ffffff;
  box-shadow: var(--shadow-bluetattoo);
  transform: translateY(-50%) scale(1.08);
}

.reviews-nav-btn.prev {
  left: -20px;
}

.reviews-nav-btn.next {
  right: -20px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-dot.active {
  background: var(--bluetattoo-primary);
  width: 26px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 160, 227, 0.4);
}

.review-stars {
  color: var(--bluetattoo-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bluetattoo-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
}

.author-info h5 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-bluetattoo);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-question i {
  color: var(--bluetattoo-light);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* --- Contact & Location Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  backdrop-filter: var(--backdrop-blur);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 160, 227, 0.1);
  border: 1px solid var(--border-bluetattoo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bluetattoo-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--bluetattoo-light);
}

.map-card {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: var(--map-filter);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin: 1.2rem 0 1.8rem;
  max-width: 340px;
  line-height: 1.75;
}

.footer-col h5 {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--bluetattoo-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.98rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links a i {
  color: var(--bluetattoo-primary);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--bluetattoo-light);
  transform: translateX(4px);
}

.footer-links a:hover i {
  color: var(--bluetattoo-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--bluetattoo-light);
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--text-muted);
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.footer-dev-logo {
  height: 24px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  filter: var(--footer-dev-filter);
  opacity: 0.9;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
}

.footer-dev-link:hover .footer-dev-logo,
.footer-dev-logo:hover {
  opacity: 1;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.whatsapp-bubble {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  animation: pulseBubble 3s infinite;
  display: none;
}

@keyframes pulseBubble {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.whatsapp-circle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition-normal);
}

.whatsapp-circle:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 3, 0.94);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-bluetattoo);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: var(--shadow-lg);
}

.lightbox-img-box {
  background: var(--lightbox-frame-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.lightbox-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--bluetattoo-primary);
  color: #ffffff;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {

  .hero-grid,
  .artist-grid,
  .events-banner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-card {
    max-width: 360px;
  }

  .hero-image-card img {
    height: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .lightbox-img-box {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.25rem;
    transition: right var(--transition-normal);
    z-index: 1005;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-stats {
    gap: 1rem;
    padding-top: 1.5rem;
  }

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

  .stat-item p {
    font-size: 0.78rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artist-feature {
    padding: 2rem 1.25rem;
  }

  .simulator-box {
    padding: 2rem 1.25rem;
  }

  .events-banner {
    padding: 2.5rem 1.25rem;
  }

  .events-perks {
    grid-template-columns: 1fr;
  }

  .guest-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .review-card {
    flex: 0 0 82vw;
    max-width: 340px;
    padding: 1.8rem 1.4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .site-header {
    padding: 0.6rem 0;
  }

  .brand-logo img {
    height: 36px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-socials {
    gap: 0.35rem;
  }

  .nav-socials .social-icon-link {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 6.5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-item {
    border-radius: var(--radius-sm);
  }

  .gallery-overlay h4 {
    font-size: 0.9rem;
  }

  .gallery-overlay p {
    font-size: 0.75rem;
  }

  .events-content h3 {
    font-size: 1.7rem;
  }

  .events-img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .events-img-grid img {
    height: 130px;
    border-radius: var(--radius-sm);
  }

  .review-card {
    flex: 0 0 88vw;
    min-width: 260px;
    padding: 1.5rem 1.2rem;
  }

  .review-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .review-author {
    gap: 0.75rem;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .author-info h5 {
    font-size: 0.88rem;
  }

  .author-info span {
    font-size: 0.72rem;
  }

  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-circle {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1.5rem;
  }

  .footer-dev {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .whatsapp-bubble {
    display: block;
  }
}