/* Variáveis usadas pelo template da home */
:root {
  --text-white: #ffffff;
  --text-dark: #000000;
  --accent-green-bright: #00ff88;
  --accent-orange: #ffc107;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #000000;
}

/* Modern Header com Glassmorphism */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(82, 49, 185, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Container do header: igual ao CMS — centralizado, max 1200px, padding responsivo */
.header-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}
@media (min-width: 640px) {
  .header-container {
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }
}
@media (min-width: 768px) {
  .header-container {
    padding: 1rem 2rem;
    gap: 1rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  z-index: 2;
}

.header-logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 50px;
}

/* Mobile: ícone que leva à página de busca (desktop mantém busca inline) */
.search-link-mobile {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.search-link-mobile:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-white);
}

.search-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 3;
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-box-expandable {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  transform-origin: right center;
}

.search-box-expandable.active {
  width: auto;
  min-width: 300px;
  max-width: 500px;
  opacity: 1;
  visibility: visible;
  border-radius: 50px;
  padding: 0 1rem;
  right: 0;
  transform: translateY(-50%);
}

.search-box-expandable input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 1rem;
  padding: 0 1rem;
  font-family: 'Inter', sans-serif;
}

.search-box-expandable input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-close {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.btn-login {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
  width: 300px;
  height: 300px;
}

.btn-login:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-login span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .header-logo img {
    height: 35px;
  }
  
  /* Mobile: esconde busca inline, mostra só ícone para página de busca */
  .header-search-wrapper {
    display: none;
  }
  .search-link-mobile {
    display: flex;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .header-right-group {
    gap: 0.5rem;
  }
  
  .btn-login {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* WebGL Canvas Background */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Hero Moderno com Glassmorphism */
.modern-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  padding: 10rem 2rem 6rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero: usa Poppins (Google Fonts já carregado no LayoutHome). Para Mazegin/Nostromo, coloque os .woff2 em public/fonts/ e descomente o @font-face em index-home.css */
.hero-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #fce7f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  background-size: 200% 200%;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

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

.hero-subtitle {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 1.3rem 3rem;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
}

.btn-hero-primary span {
  position: relative;
  z-index: 1;
}

.btn-hero-secondary {
  padding: 1.3rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

/* Features Section com Glassmorphism */
.features-section {
  background: linear-gradient(135deg, rgba(82, 49, 185, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8rem 2rem;
  position: relative;
  color: var(--text-white);
}

.features-section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .features-section-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .features-section-container {
    padding: 0 2rem;
  }
}

.features-section-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.feature-card {
  text-align: center;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-white);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.3);
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.feature-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.features-cta {
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-section-title {
    font-size: 2.5rem;
  }
}

/* Featured Smartlinks Section - igual ao template */
.featured-smartlinks-section {
  position: relative;
  padding: 8rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.featured-smartlinks-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .featured-smartlinks-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .featured-smartlinks-container {
    padding: 0 2rem;
  }
}

.featured-smartlinks-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  background: linear-gradient(135deg, rgba(82, 49, 185, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
}

.featured-smartlinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.featured-smartlink-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-smartlink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.featured-smartlink-card:hover::before {
  opacity: 1;
}

.featured-smartlink-cover {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.featured-smartlink-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-smartlink-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2rem;
  z-index: 2;
}

.featured-smartlink-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-smartlink-artist {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Popular Smartlinks Section - igual ao template */
.popular-smartlinks-section {
  position: relative;
  padding: 8rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.popular-smartlinks-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .popular-smartlinks-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .popular-smartlinks-container {
    padding: 0 2rem;
  }
}

.popular-smartlinks-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  background: linear-gradient(135deg, rgba(82, 49, 185, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
}

.popular-smartlinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.popular-smartlink-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.popular-smartlink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.popular-smartlink-card:hover::before {
  opacity: 1;
}

.popular-smartlink-cover {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.popular-smartlink-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popular-smartlink-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2rem;
  z-index: 2;
}

.popular-smartlink-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.popular-smartlink-artist {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .featured-smartlinks-grid,
  .popular-smartlinks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .featured-smartlinks-title,
  .popular-smartlinks-title {
    font-size: 2.5rem;
  }
  
  .featured-smartlinks-grid,
  .popular-smartlinks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-smartlinks-section,
  .popular-smartlinks-section {
    padding: 4rem 1rem;
  }
}

/* CTA Final Section - Pronto para criar seu Smartlink? */
.cta-final-section {
  position: relative;
  padding: 8rem 2rem;
  background: transparent;
}

.cta-final-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-final-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-button {
  font-size: 1.2rem;
  padding: 1.5rem 3rem;
}

@media (max-width: 768px) {
  .cta-final-title {
    font-size: 2.5rem;
  }
  .cta-final-section {
    padding: 4rem 1rem;
  }
  .cta-final-description {
    font-size: 1.1rem;
  }
}

/* Página interna (Sobre Nós, etc.) - base index */
.page-content {
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .page-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .page-container {
    padding: 0 2rem;
  }
}

.page-breadcrumb {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.page-breadcrumb .breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.page-breadcrumb .breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb .breadcrumb-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb .breadcrumb-list a:hover {
  color: var(--text-white);
}

.page-breadcrumb .breadcrumb-list li[aria-current="page"] {
  color: var(--text-white);
  font-weight: 600;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* Blocos Sobre Nós: missão, o que fazemos, valores */
.about-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-section-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.35);
}

.about-section-body {
  flex: 1;
  min-width: 0;
}

.about-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-section-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

/* Nossos valores: título + grid de pilares */
.about-section-values {
  flex-direction: column;
  align-items: stretch;
}

.about-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-section-icon-sm {
  width: 48px;
  height: 48px;
  font-size: 1.35rem;
}

.about-section-values .about-section-title {
  margin-bottom: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.2);
  color: var(--accent-green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-value strong {
  font-size: 1.1rem;
  color: var(--text-white);
  font-weight: 700;
}

.about-value span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .about-section-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .about-section-header {
    flex-wrap: wrap;
  }
}

.about-cta {
  text-align: center;
  margin-top: 2rem;
}

.about-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.about-cta a:hover {
  box-shadow: 0 8px 28px rgba(0, 255, 136, 0.4);
}

/* Formulário Fale conosco - mesmo padrão da página */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 520px;
}
.contact-form-wrap .contact-form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form-wrap .contact-form-title i {
  color: var(--accent-green-bright);
}
.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}
.contact-form label .required {
  color: #f87171;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-green-bright);
  background: rgba(255, 255, 255, 0.12);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
  transition: box-shadow 0.2s ease;
}
.contact-form button[type="submit"]:hover {
  box-shadow: 0 8px 28px rgba(0, 255, 136, 0.4);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
  }
  .page-content {
    padding: 5rem 1rem 3rem;
  }
}

/* Página Busca – formulário em página + lista de resultados */
.search-form-in-page {
  margin-bottom: 1.5rem;
}
.search-form-in-page .search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.85rem 1.25rem 0.85rem 1.5rem;
  min-height: 52px;
  transition: all 0.3s ease;
}
.search-form-in-page .search-form:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-green-bright);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
}
.search-form-in-page .search-form i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-right: 0.75rem;
}
.search-form-in-page .search-form input {
  flex: 1;
  background: none;
  border: none;
  font-size: 1.05rem;
  color: var(--text-white);
  outline: none;
  min-height: 1.5em;
}
.search-form-in-page .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-result-row {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.search-result-row:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.search-result-cover {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.search-result-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result-info {
  flex: 1;
  min-width: 0;
}
.search-result-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}
.search-result-artist {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}
.search-result-actions {
  flex-shrink: 0;
}
.search-btn-acessar {
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}
.search-btn-acessar:hover {
  box-shadow: 0 6px 22px rgba(0, 255, 136, 0.4);
}
.search-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.search-empty i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  display: block;
}
.search-empty h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}
.search-empty p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}
.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
.search-loading[hidden] {
  display: none;
}
.search-loading i {
  font-size: 1.5rem;
  color: var(--accent-green-bright, #00FF88);
}
@media (max-width: 768px) {
  .search-result-row {
    flex-wrap: wrap;
    padding: 1rem;
  }
  .search-result-cover {
    width: 60px;
    height: 60px;
  }
  .search-result-actions {
    width: 100%;
    margin-top: 0.5rem;
  }
  .search-btn-acessar {
    width: 100%;
    justify-content: center;
  }
}

/* Cookie consent – banner no canto direito + modal personalizar */
.cookie-consent-root {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
}
.cookie-consent-root .cookie-banner,
.cookie-consent-root .cookie-modal {
  pointer-events: auto;
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.cookie-banner-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111;
}
.cookie-banner-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
  padding-right: 2rem;
}
.cookie-banner-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0 0 1.25rem;
}
.cookie-banner-link {
  color: #5231B9;
  text-decoration: underline;
}
.cookie-banner-link:hover {
  color: #3d2480;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-btn {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #00FF88, #00e677);
  color: #000;
}
.cookie-btn-accept:hover {
  filter: brightness(1.05);
}
.cookie-btn-reject {
  background: #f3f4f6;
  color: #374151;
}
.cookie-btn-reject:hover {
  background: #e5e7eb;
}
.cookie-btn-custom {
  background: transparent;
  color: #5231B9;
  border: 1px solid #5231B9;
}
.cookie-btn-custom:hover {
  background: rgba(82, 49, 185, 0.08);
}

/* Modal personalizar cookies */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.cookie-modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 2rem;
}
.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.cookie-modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111;
}
.cookie-modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1rem;
  padding-right: 2.5rem;
}
.cookie-modal-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 1.5rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.cookie-category-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
}
.cookie-category-badge {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d1d5db;
  border-radius: 26px;
  transition: 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: 0.25s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #5231B9;
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(22px);
}
.cookie-btn-save {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #00FF88, #00e677);
  color: #000;
  font-size: 1rem;
  border-radius: 50px;
}
.cookie-btn-save:hover {
  filter: brightness(1.05);
}
@media (max-width: 480px) {
  .cookie-banner {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    max-width: none;
  }
}

/* Modern Footer - igual ao template */
.modern-footer {
  background: rgba(82, 49, 185, 0.8);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 1.5rem;
  position: relative;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modern-footer:hover::before {
  opacity: 1;
}

.modern-footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .modern-footer-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .modern-footer-container {
    padding: 0 2rem;
  }
}

.modern-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-footer-logo .logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.modern-footer-logo .logo:hover img {
  transform: scale(1.05);
}

.modern-footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.modern-footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.modern-footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green-bright);
  transition: width 0.3s ease;
}

.modern-footer-link:hover {
  color: var(--text-white);
}

.modern-footer-link:hover::after {
  width: 100%;
}

.modern-footer-social {
  display: flex;
  gap: 1rem;
}

.modern-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modern-footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.modern-footer-copyright p {
  margin: 0;
}

.modern-footer-dev {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5);
}

.modern-footer-dev-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 0.35rem;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

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

.modern-footer-dev-logo {
  height: 20px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .modern-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .modern-footer-links {
    justify-content: center;
    gap: 1.5rem;
  }
  .modern-footer {
    padding: 2rem 1rem 1rem;
  }
}

/* Smartlink Cards Modernos com 3D */
.smartlink-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.smartlink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.smartlink-card:hover::before {
  opacity: 1;
}

.smartlink-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.smartlink-cover {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.smartlink-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smartlink-card:hover .smartlink-cover img {
  transform: scale(1.15) rotate(2deg);
}

.smartlink-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  color: var(--text-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.smartlink-info {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.smartlink-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.smartlink-artist {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500;
}

.smartlink-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.platform-badge {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-badge:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
}

.smartlink-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: #999;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Stats Section com Animação */
.stats-section {
  background: linear-gradient(135deg, rgba(82, 49, 185, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: countUp 2s ease;
}

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

.stat-label {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Seções com Background Blur */
.section {
  position: relative;
  padding: 6rem 2rem;
}

.section-white {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
}

.section-black {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  color: var(--text-white);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(135deg, var(--accent-green-bright) 0%, #00e677 100%);
  border-radius: 5px;
}

.section-title-orange {
  color: var(--accent-orange);
}

.section-title-white {
  color: var(--text-white);
