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

:root {
  --yellow-50: #eef5ff;
  --yellow-100: #ece8ff;
  --yellow-300: #a5d8ff;
  --yellow-400: #b197fc;
  --yellow-500: #4dabf7;
  --yellow-600: #845ef7;
  --yellow-700: #7048e8;
  --black-900: #0e0e10;
  --black-800: #141417;
  --gray-400: #5b6175;
  --gray-500: #495069;
  --white: #ffffff;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-xl: 0 25px 60px rgba(0,0,0,.35);
  --shadow-md: 0 12px 30px rgba(0,0,0,.25);
  --shadow-sm: 0 6px 18px rgba(0,0,0,.18);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(116, 192, 252, 0.1);

  --container: 1200px;

  --vermelho: var(--yellow-500);
  --vermelho-escuro: var(--yellow-700);
  --laranja: var(--yellow-400);
  --ouro: var(--yellow-600);
  --creme: var(--yellow-50);
  --creme-escuro: var(--yellow-100);
  --marrom-escuro: var(--black-900);
  --marrom: var(--black-800);
  --marrom-medio: #1a1a1e;
  --branco: var(--white);
  --sombra: rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--marrom-escuro);
  color: var(--creme);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1000;
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(14, 14, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--creme);
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span { color: var(--vermelho); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--creme-escuro);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--ouro); }
.nav-cta {
  background: var(--vermelho);
  color: var(--branco) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: background 0.3s !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--vermelho-escuro) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--ouro);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 1vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--creme);
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title .line-red { color: var(--vermelho); display: block; }
.hero-title .line-outline {
  -webkit-text-stroke: 1.5px var(--creme-escuro);
  color: transparent;
  display: block;
}
.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--creme-escuro);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--vermelho);
  color: var(--branco);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--laranja); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  color: var(--creme-escuro);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.btn-secondary .arrow {
  width: 28px; height: 28px;
  border: 1.5px solid var(--creme-escuro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color 0.3s, transform 0.3s;
}
.btn-secondary:hover { color: var(--ouro); }
.btn-secondary:hover .arrow { border-color: var(--ouro); transform: translateX(4px); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--marrom-escuro) 0%, transparent 40%);
  z-index: 1;
}
.drum-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drum-rings {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring:nth-child(1) { width: 200px; height: 200px; border-color: rgba(132, 94, 247, 0.8); }
.ring:nth-child(2) { width: 320px; height: 320px; border-color: rgba(132, 94, 247, 0.5); }
.ring:nth-child(3) { width: 450px; height: 450px; border-color: rgba(132, 94, 247, 0.25); }
.ring:nth-child(4) { width: 600px; height: 600px; border-color: rgba(132, 94, 247, 0.1); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ouro);
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creme-escuro);
  opacity: 0.6;
}

/* =====================
   TICKER
===================== */
.ticker-wrap {
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--branco);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* =====================
   ABOUT
===================== */
.about {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}
.about::before {
  content: 'RITMO';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem;
  color: rgba(255,255,255,0.015);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 1.5rem;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--creme);
  margin-bottom: 2rem;
}
.about-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--creme-escuro);
  opacity: 0.85;
}
.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-card {
  background: var(--marrom);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.about-card:hover {
  border-color: var(--ouro);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.about-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--creme);
  margin-bottom: 0.5rem;
}
.about-card-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--creme-escuro);
  opacity: 0.65;
}

/* =====================
   SPOTIFY PILL (nova seção compacta)
===================== */
.spotify-bar {
  background: var(--black-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.spotify-bar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.spotify-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1DB954;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(29,185,84,0.35);
}
.spotify-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1DB954;
  margin-bottom: 0.15rem;
}
.spotify-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--creme);
}
.spotify-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.spotify-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.spotify-dot {
  width: 3px;
  border-radius: 2px;
  background: #1DB954;
  animation: eq-bar 1.2s ease-in-out infinite;
}
.spotify-dot:nth-child(1) { height: 10px; animation-delay: 0s; }
.spotify-dot:nth-child(2) { height: 18px; animation-delay: 0.15s; }
.spotify-dot:nth-child(3) { height: 14px; animation-delay: 0.3s; }
.spotify-dot:nth-child(4) { height: 20px; animation-delay: 0.1s; }
.spotify-dot:nth-child(5) { height: 8px; animation-delay: 0.25s; }
@keyframes eq-bar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1DB954;
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.spotify-link:hover { background: #17a349; transform: scale(1.04); }
.spotify-link i { font-size: 0.9rem; }

/* =====================
   FOTOS / CAROUSEL
===================== */
.fotos-section {
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.fotos-header {
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  color: var(--creme);
}

/* Carousel wrapper */
.carousel-outer {
  position: relative;
}
.carousel-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--marrom);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.carousel-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-slide-body {
  padding: 1.4rem 1.6rem 1.6rem;
}
.carousel-slide-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--creme);
  margin-bottom: 0.3rem;
}
.carousel-slide-body p {
  font-size: 0.78rem;
  color: var(--creme-escuro);
  opacity: 0.55;
}

/* Carousel nav */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, width 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--ouro);
  width: 24px;
  border-radius: 4px;
}
.carousel-arrows {
  display: flex;
  gap: 0.75rem;
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--creme);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover {
  border-color: var(--ouro);
  background: rgba(132, 94, 247, 0.12);
  transform: scale(1.08);
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* =====================
   DEPOIMENTOS
===================== */
.testimonials {
  background: var(--vermelho-escuro);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: 'FAMÍLIA';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.testimonials::after {
  content: '"';
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-size: 30rem;
  color: rgba(255,255,255,0.04);
  top: -4rem;
  right: 2rem;
  line-height: 1;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  background: var(--glass-highlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1.5rem; }
.star {
  width: 12px; height: 12px;
  background: #d7da02;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--branco);
  margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vermelho);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--branco);
}
.author-name { font-weight: 700; font-size: 0.85rem; color: var(--branco); }
.author-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }

/* =====================
   CTA
===================== */
.cta-section {
  padding: 10rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,55,26,0.15), transparent 70%);
  pointer-events: none;
}
.cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.5rem;
  display: block;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  color: var(--creme);
  margin-bottom: 0.2em;
}
.cta-title .red { color: var(--vermelho); }
.cta-subtitle {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--creme-escuro);
  opacity: 0.7;
  margin: 2rem auto;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #0b0b0d;
  padding: 4rem;
  border-top: 1px solid var(--glass-border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--creme);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo span { color: var(--vermelho); }
.footer-copy { font-size: 0.7rem; color: var(--creme-escuro); opacity: 0.3; letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 1rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creme-escuro);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}
.social-btn:hover { 
  border-color: var(--vermelho); 
  color: var(--branco); 
  background: var(--vermelho);
  transform: translateY(-3px);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(14,14,16,0.97); backdrop-filter: blur(20px); align-items: center; justify-content: center; gap: 2.5rem; z-index: 800; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 901; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 7rem 1.5rem 4rem; }
  .hero-title { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero-stats { gap: 2rem; }

  .about { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .about::before { font-size: 8rem; }
  .about-card-grid { grid-template-columns: 1fr 1fr; }

  .spotify-bar { 
    padding: 1.5rem; 
    flex-direction: column; 
    text-align: center; 
    gap: 1.5rem; 
  }
  .spotify-bar-left { flex-direction: column; gap: 0.8rem; }
  .spotify-bar-right { width: 100%; justify-content: center; }
  .spotify-dots { display: none; }

  .fotos-section { padding: 5rem 1.5rem; }
  .carousel-slide { flex: 0 0 calc(100% - 0px); }
  .carousel-slide img { height: 220px; }

  .testimonials { padding: 5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 6rem 1.5rem; }
  .cta-title { font-size: clamp(3rem, 12vw, 5rem); }

  footer { padding: 3rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 600px) {
  .about-card-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .testimonials::after { font-size: 15rem; }
}
