/* ═══════════════════════════════════════════════
   TAISELIMA NAIL DESIGN — Design System
   Estética: Luxury Feminine Editorial
   Fontes: Cormorant Garamond + DM Sans
═══════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────── */
:root {
  --rose:      #c97fa8;
  --rose-deep: #a85c88;
  --rose-pale: #f8eef4;
  --rose-soft: #fce4ec;
  --mauve:     #9b6b9b;
  --gold:      #c9a96e;
  --gold-pale: #fdf6e8;
  --dark:      #1a1016;
  --dark-mid:  #2d1f28;
  --text:      #3d2638;
  --text-muted:#8a6880;
  --white:     #ffffff;
  --off-white: #fdf8fb;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 24px rgba(180, 80, 130, 0.08);
  --shadow-rose: 0 8px 32px rgba(201, 127, 168, 0.25);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06), 0 8px 40px rgba(180,80,130,0.08);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Navbar ───────────────────────────────────── */
.tsl-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.tsl-navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(180,80,130,0.1);
}

.tsl-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tsl-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
}
/* Navbar transparente sobre hero escuro — textos brancos */
.tsl-brand .brand-icon { font-size: 1.2rem; color: rgba(255,255,255,0.9); }
.tsl-brand .brand-text { font-size: 1.5rem; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.tsl-brand .brand-sub  { font-size: 0.75rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.12em; align-self: flex-end; padding-bottom: 4px; }

/* Navbar com fundo (após scroll) — textos escuros */
.tsl-navbar.scrolled .tsl-brand .brand-icon { color: var(--rose); }
.tsl-navbar.scrolled .tsl-brand .brand-text { color: var(--dark); }
.tsl-navbar.scrolled .tsl-brand .brand-sub  { color: var(--rose); }

.tsl-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tsl-nav-links > a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.tsl-nav-links > a:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* Após scroll — links escuros */
.tsl-navbar.scrolled .tsl-nav-links > a { color: var(--text); }
.tsl-navbar.scrolled .tsl-nav-links > a:hover { color: var(--rose); background: var(--rose-pale); }

/* Pill sobre hero transparente — branco */
.tsl-nav-pill {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 100px !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  backdrop-filter: blur(4px);
}
.tsl-nav-pill:hover { background: rgba(255,255,255,0.32) !important; }
.tsl-nav-pill.admin { background: rgba(255,255,255,0.2) !important; color: #fff !important; }

/* Pill após scroll — rose */
.tsl-navbar.scrolled .tsl-nav-pill {
  background: var(--rose-pale) !important;
  color: var(--rose-deep) !important;
  border-color: transparent !important;
  backdrop-filter: none;
}
.tsl-navbar.scrolled .tsl-nav-pill.admin { background: var(--gold-pale) !important; color: var(--gold) !important; }
.tsl-navbar.scrolled .tsl-nav-pill:hover { background: var(--rose-soft) !important; }

/* Botão Sair */
.tsl-nav-link-btn {
  border: none; background: none; cursor: pointer;
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  padding: 6px 14px; border-radius: 100px;
  transition: var(--transition); font-family: var(--font-sans);
}
.tsl-nav-link-btn:hover { color: #fff; background: rgba(255,255,255,0.15); }
.tsl-navbar.scrolled .tsl-nav-link-btn { color: var(--text-muted); }
.tsl-navbar.scrolled .tsl-nav-link-btn:hover { color: var(--rose); background: var(--rose-pale); }

/* Hamburger */
.tsl-hamburger {
  display: flex; flex-direction: column;
  gap: 5px; border: none; background: none; cursor: pointer; padding: 8px;
}
.tsl-hamburger span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: var(--transition);
}

/* ── Buttons ──────────────────────────────────── */
.tsl-btn-primary {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  border: none; border-radius: 100px;
  padding: 12px 28px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,127,168,0.35);
  font-family: var(--font-sans);
}
.tsl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,127,168,0.45);
  color: var(--white);
}

.tsl-btn-hero {
  display: inline-flex; align-items: center;
  background: var(--white);
  color: var(--rose-deep);
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 16px 36px; font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  font-family: var(--font-sans);
}
.tsl-btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  color: var(--rose-deep);
}

.tsl-btn-ghost {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  padding: 15px 32px; font-size: 1rem; font-weight: 400;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
}
.tsl-btn-ghost:hover { background: rgba(255,255,255,0.25); color: white; border-color: rgba(255,255,255,0.6); }

.tsl-btn-card {
  display: inline-flex; align-items: center;
  background: none; color: var(--rose);
  border: 1.5px solid var(--rose);
  border-radius: 100px;
  padding: 8px 20px; font-size: 0.85rem; font-weight: 500;
  transition: var(--transition); font-family: var(--font-sans);
}
.tsl-btn-card:hover { background: var(--rose); color: var(--white); }

/* ── Hero ─────────────────────────────────────── */
.tsl-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #2d1428 0%, #4a1f3d 40%, #6b2a56 100%);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.4;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c97fa8, transparent);
  top: -100px; right: -100px; animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #9b6b9b, transparent);
  bottom: -50px; left: -100px; animation: floatOrb 10s ease-in-out infinite 2s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #c9a96e, transparent);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: floatOrb 12s ease-in-out infinite 4s; opacity: 0.2;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 20px; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: #e8b4cc;
}

.hero-subtitle {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Section Common ───────────────────────────── */
.tsl-section { padding: 100px 0; }

.section-label {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--rose); margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--dark);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--rose); }

.section-subtitle {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 500px; margin: 0 auto;
}

.section-header { margin-bottom: 60px; }

.section-text {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.8; margin-bottom: 16px;
}

/* ── Sobre ────────────────────────────────────── */
.tsl-sobre { background: var(--white); }

.sobre-image-grid {
  position: relative; height: 460px;
}
.sobre-img { position: absolute; border-radius: var(--radius-lg); overflow: hidden; }
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-1 { width: 75%; height: 320px; top: 0; left: 0; box-shadow: var(--shadow-card); }
.sobre-img-2 { width: 55%; height: 220px; bottom: 0; right: 0; box-shadow: var(--shadow-rose); border: 4px solid var(--white); }

.sobre-badge-float {
  position: absolute; top: 50%; left: 60%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white); border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: var(--shadow-rose); z-index: 2;
}
.sobre-badge-float i { font-size: 1.5rem; }
.sobre-badge-float span { font-size: 0.75rem; font-weight: 500; white-space: nowrap; }

.sobre-features { display: grid; gap: 12px; margin-top: 28px; }
.sobre-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-muted);
}
.sobre-feature i { color: var(--rose); font-size: 1rem; flex-shrink: 0; }

/* ── Serviços ─────────────────────────────────── */
.tsl-servicos { position: relative; }
.tsl-section-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--rose-pale) 0%, var(--white) 100%);
  pointer-events: none;
}

.tsl-card-servico {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.tsl-card-servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(180,80,130,0.18);
}

.card-img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.tsl-card-servico:hover .card-img-wrap img { transform: scale(1.06); }

.card-duration {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  color: var(--white); border-radius: 100px;
  padding: 4px 12px; font-size: 0.78rem; font-weight: 400;
  display: flex; align-items: center; gap: 5px;
}

.card-body-tsl { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-title-tsl {
  font-family: var(--font-serif); font-size: 1.35rem;
  font-weight: 600; color: var(--dark); margin-bottom: 10px;
}
.card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }

.card-footer-tsl { display: flex; align-items: center; justify-content: space-between; }
.price-from { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.price-value { display: block; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--rose-deep); }

/* ── Galeria ──────────────────────────────────── */
.tsl-galeria { background: var(--dark); }
.tsl-galeria .section-label { color: var(--gold); }
.tsl-galeria .section-title { color: var(--white); }
.tsl-galeria .section-subtitle { color: rgba(255,255,255,0.5); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.galeria-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; aspect-ratio: 1;
}
.galeria-item.galeria-item-destaque:nth-child(1) {
  grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9;
}
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.galeria-item:hover img { transform: scale(1.08); }

.galeria-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,10,20,0.85) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-info h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.galeria-info p  { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── CTA Section ──────────────────────────────── */
.tsl-cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 50%, var(--mauve) 100%);
  padding: 100px 0; text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.1); filter: blur(40px);
}
.cta-orb-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-orb-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }

.cta-icon { font-size: 3rem; margin-bottom: 20px; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 300; margin-bottom: 16px; }
.cta-subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; }

/* ── Contato ──────────────────────────────────── */
.tsl-contato { background: var(--white); }

.contato-items { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contato-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--rose-pale); transition: var(--transition);
}
.contato-item:hover { background: var(--rose-soft); transform: translateX(4px); }
.contato-item strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 0.05em; }
.contato-item span  { font-size: 0.95rem; color: var(--text-muted); }

.contato-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contato-icon.whatsapp { background: #dcfce7; color: #16a34a; }
.contato-icon.instagram { background: linear-gradient(135deg,#fce4ec,#e8d5f5); color: var(--rose-deep); }
.contato-icon.endereco { background: var(--gold-pale); color: var(--gold); }

.horario-card {
  background: var(--dark);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.horario-header {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  padding: 24px 32px;
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.horario-header i { font-size: 1.4rem; }
.horario-header h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; margin: 0; }

.horario-body { padding: 8px 0; }
.horario-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.horario-row .dia { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.horario-row .hora { font-size: 0.9rem; color: var(--white); font-weight: 500; text-align: right; }
.horario-row.closed .hora { color: var(--text-muted); }
.horario-footer { padding: 20px 24px; }

/* ── Footer ───────────────────────────────────── */
.tsl-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.tsl-footer .tsl-brand { color: var(--white); }
.tsl-footer .brand-text { color: var(--white); }

.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 8px; }

.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--rose); }

.footer-social { display: flex; gap: 12px; justify-content: flex-end; margin-bottom: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--rose); color: var(--white); }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── Toast Notifications ──────────────────────── */
.tsl-toast-container {
  position: fixed; top: 90px; right: 20px;
  z-index: 9999; display: flex; flex-direction: column; gap: 10px;
}

.tsl-toast {
  min-width: 280px; max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border-left: 4px solid var(--rose);
  animation: slideInRight 0.3s ease;
  cursor: pointer;
}
.tsl-toast.success { border-color: #10b981; }
.tsl-toast.error   { border-color: #ef4444; }
.tsl-toast.warning { border-color: #f59e0b; }

.tsl-toast .toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.tsl-toast.success .toast-icon { color: #10b981; }
.tsl-toast.error   .toast-icon { color: #ef4444; }
.tsl-toast.warning .toast-icon { color: #f59e0b; }

.tsl-toast .toast-msg { font-size: 0.9rem; color: var(--text); flex: 1; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(110%); opacity: 0; }
}

/* ── Animations ───────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Forms ────────────────────────────────────── */
.tsl-form-control {
  border: 1.5px solid #e8d5e5; border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.95rem; font-family: var(--font-sans);
  color: var(--text); background: var(--white);
  transition: var(--transition); width: 100%;
}
.tsl-form-control:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,127,168,0.15);
}

.tsl-form-label {
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  margin-bottom: 6px; display: block;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 992px) {
  .tsl-nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 280px; background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right 0.3s ease; z-index: 999;
  }
  .tsl-nav-links.open { right: 0; }
  .tsl-nav-links > a { width: 100%; }

  .sobre-image-grid { height: 300px; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-item.galeria-item-destaque:nth-child(1) { grid-column: span 2; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .tsl-section { padding: 60px 0; }
  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stats { gap: 20px; }
  .footer-social { justify-content: center; }
}
