/* ==========================================================================
   Frog's House - Design System & Global Styles
   Confraria & Espaço de Eventos | Curitiba - PR
   ========================================================================== */

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

:root {
  /* Paleta Vibrante Frog's House */
  --primary-green: #22c55e;
  --primary-neon: #10b981;
  --primary-light: #4ade80;
  --primary-lime: #84cc16;
  --primary-glow: rgba(34, 197, 94, 0.45);
  --primary-glow-subtle: rgba(34, 197, 94, 0.15);

  --amber-beer: #f59e0b;
  --amber-light: #fbbf24;
  --amber-glow: rgba(245, 158, 11, 0.45);
  --sand-beach: #e0a96d;
  --sand-light: #fef3c7;
  --coral-accent: #f43f5e;

  /* Superfícies & Glassmorphism */
  --bg-deep: #080d0a;
  --bg-surface: #0f1712;
  --bg-card: rgba(17, 27, 21, 0.72);
  --bg-card-hover: rgba(23, 38, 29, 0.88);
  --bg-glass: rgba(14, 22, 17, 0.65);
  --bg-glass-strong: rgba(14, 22, 17, 0.85);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.14);
  --border-neon: rgba(34, 197, 94, 0.35);
  --border-amber: rgba(245, 158, 11, 0.35);

  /* Tipografia & Textos */
  --text-white: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-brand: 'Fredoka', 'Outfit', cursive, sans-serif;
  --font-heading: 'Outfit', 'Fredoka', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sombras & Efeitos */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.7);
  --shadow-neon-green: 0 0 30px rgba(34, 197, 94, 0.35);
  --shadow-neon-amber: 0 0 30px rgba(245, 158, 11, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Fundo Dinâmico com Luzes Ambientais */
body::before {
  content: '';
  position: fixed;
  top: -20vh;
  left: 10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -10vh;
  right: 5vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

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

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

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

/* Canvas de Partículas Mágicas */
#magic-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
}

/* ==========================================================================
   Tipografia & Utilitários
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.brand-font {
  font-family: var(--font-brand);
}

.text-gradient-green {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
  background: linear-gradient(135deg, #fde047 0%, #f59e0b 50%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-rainbow {
  background: linear-gradient(135deg, #4ade80, #fbbf24, #f43f5e, #38bdf8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGradient 8s ease infinite;
}

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

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

/* Badge de Seção */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--border-neon);
  color: var(--primary-light);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.15);
}

.badge-pill.amber {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--border-amber);
  color: var(--amber-light);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.badge-pill.beach {
  background: rgba(224, 169, 109, 0.15);
  border-color: rgba(224, 169, 109, 0.4);
  color: #fed7aa;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

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

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* ==========================================================================
   Header & Navbar Flutuante
   ========================================================================== */
.header-main {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: all var(--transition-smooth);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md), 0 0 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth);
}

.header-main.scrolled .nav-container {
  background: rgba(10, 16, 12, 0.94);
  border-color: rgba(34, 197, 94, 0.25);
  padding: 0.5rem 1.25rem;
  box-shadow: var(--shadow-lg), 0 0 25px rgba(34, 197, 94, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.nav-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-bounce);
}

.nav-brand:hover img {
  transform: rotate(-8deg) scale(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

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

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

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

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

/* Botões de Ação */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #062812;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
  color: #041c0c;
}

.btn-amber {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #2b1704;
  box-shadow: 0 4px 20px var(--amber-glow);
}

.btn-amber:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fde047 0%, #fbbf24 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  color: #1f0f02;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

/* Magic Sparks Toggle Button */
.btn-sparkle-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--amber-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-bounce);
  font-size: 1.1rem;
}

.btn-sparkle-toggle:hover {
  transform: scale(1.15) rotate(15deg);
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--amber-light);
}

.btn-sparkle-toggle.active {
  box-shadow: 0 0 15px var(--amber-glow);
}

/* Menu Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

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

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--border-neon);
  color: var(--primary-light);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary-light);
}

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

/* Card Visual do Hero */
.hero-visual {
  position: relative;
}

.hero-card-container {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(245, 158, 11, 0.3), rgba(255, 255, 255, 0.1));
  box-shadow: var(--shadow-lg), var(--shadow-neon-green);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition-smooth);
}

.hero-card-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-card-img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.25);
  animation: float 4s ease-in-out infinite;
}

.hero-badge-floating .icon-beer {
  font-size: 2.2rem;
}

.hero-badge-floating h5 {
  font-size: 1.05rem;
  color: var(--amber-light);
}

.hero-badge-floating p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Seção dos 3 Ambientes da Frog's House
   ========================================================================== */
.spaces-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a130e 50%, var(--bg-deep) 100%);
  position: relative;
}

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

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

.space-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-neon);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(34, 197, 94, 0.2);
}

.space-card.ilha-do-mel:hover {
  border-color: var(--border-amber);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 158, 11, 0.25);
}

.space-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-card:hover .space-media img {
  transform: scale(1.08);
}

.space-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 13, 10, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.space-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.space-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.space-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.space-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.space-features li i {
  color: var(--primary-light);
}

/* ==========================================================================
   Seção de Destaques do Cardápio (Mini-Menu na Home)
   ========================================================================== */
.menu-highlight-section {
  position: relative;
}

.menu-categories-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.category-pill {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-pill:hover,
.category-pill.active {
  background: var(--primary-green);
  border-color: var(--primary-light);
  color: #05260f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--primary-glow);
}

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

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-neon);
  box-shadow: var(--shadow-md), 0 0 20px rgba(34, 197, 94, 0.15);
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.dish-name {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 700;
}

.dish-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-light);
  border: 1px solid var(--border-amber);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.dish-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.dish-tags {
  display: flex;
  gap: 0.4rem;
}

.dish-tag {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Carrossel do Instagram (@frogs_housee)
   ========================================================================== */
.instagram-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d1912 50%, var(--bg-deep) 100%);
}

.insta-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insta-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.insta-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
}

.insta-card {
  flex: 0 0 290px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-smooth);
}

.insta-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(225, 48, 108, 0.25);
}

.insta-img-box {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.insta-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-caption {
  font-size: 0.85rem;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--amber-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.insta-controls {
  display: flex;
  gap: 0.75rem;
}

.insta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.insta-arrow:hover {
  background: var(--primary-green);
  color: #04200c;
  border-color: var(--primary-light);
  transform: scale(1.1);
}

/* ==========================================================================
   Mural de Depoimentos & Comunidade
   ========================================================================== */
.testimonials-section {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-amber);
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.15);
}

.test-stars {
  color: var(--amber-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.test-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.test-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--amber-beer));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #062812;
}

.test-author-name {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1rem;
}

.test-author-space {
  font-size: 0.8rem;
  color: var(--primary-light);
}

.mural-banner-cta {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Localização & Contato / Footer
   ========================================================================== */
.contact-section {
  background: #060a08;
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 3rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--border-neon);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-text p, .contact-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 380px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* ==========================================================================
   Botão Flutuante do WhatsApp
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all var(--transition-bounce);
  animation: pulseGreen 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
  color: white;
}

/* ==========================================================================
   Animações Globais
   ========================================================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   Responsividade Mobile
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(12, 19, 14, 0.98);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(25px);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ==========================================================================
   Toast Notification System
   ========================================================================== */
#frogs-toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 10005;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.frogs-toast {
  background: rgba(14, 25, 18, 0.95);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg), 0 0 25px rgba(34, 197, 94, 0.35);
  backdrop-filter: blur(20px);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  max-width: 420px;
}

.frogs-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-icon {
  font-size: 1.4rem;
}

/* ==========================================================================
   Universal Modal System (Fotos, Lâminas e Vídeos)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 8, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInModal 0.25s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(34, 197, 94, 0.25);
  animation: scaleUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUpModal {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-size: 1.8rem;
  line-height: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--coral-accent);
  border-color: var(--coral-accent);
  transform: rotate(90deg) scale(1.1);
}

.modal-img-preview {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  display: block;
  margin: 0 auto;
}

.modal-img-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber-light);
}

.modal-video-player {
  width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  outline: none;
}

