@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

:root {
  --bg-main: #050816;
  --border-radius: 24px;
  
  --glow-blue: rgba(0, 216, 255, 0.15);
  --glow-purple: rgba(99, 57, 255, 0.15);
  
  --ph-color-dark: rgba(255, 255, 255, 0.03);
  --ph-color-light: rgba(255, 255, 255, 0.08);
  --ph-color-highlight: rgba(255, 255, 255, 0.15);
}

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

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

body {
  background-color: var(--bg-main);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* =========================================
   BACKGROUND ELEMENTS
   ========================================= */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--glow-blue);
}

.orb-2 {
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--glow-purple);
}

.bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}
.p-1 { width: 4px; height: 4px; top: 20%; left: 10%; }
.p-2 { width: 6px; height: 6px; top: 15%; right: 40%; background: var(--glow-blue); box-shadow: 0 0 15px var(--glow-blue); }
.p-3 { width: 3px; height: 3px; bottom: 30%; left: 50%; }
.p-4 { width: 8px; height: 8px; bottom: 20%; right: 15%; background: var(--glow-purple); box-shadow: 0 0 20px var(--glow-purple); }
.p-5 { width: 5px; height: 5px; top: 50%; left: 5%; }

/* =========================================
   LAYOUT & GRID
   ========================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 10;
}

.section-spacing {
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section-spacing {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Logo */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.logo-bar {
  width: 4px;
  border-radius: 2px;
  background: #FF5722;
}
.logo-bar.b1 { height: 12px; background: rgba(255, 87, 34, 0.6); }
.logo-bar.b2 { height: 18px; background: rgba(255, 87, 34, 0.8); }
.logo-bar.b3 { height: 24px; background: #FF5722; }
.logo-bar.b4 { height: 14px; background: rgba(255, 87, 34, 0.7); }

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}

/* Navigation */
.nav-box {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #FF5722;
}

/* Button */
.header-btn {
  padding: 12px 28px;
  background: #111;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.header-btn:hover {
  background: #FF5722;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .nav-box { display: none; }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-col {
  flex: 1;
  width: 50%;
}

@media (max-width: 992px) {
  .hero-container { flex-direction: column; }
  .hero-col { width: 100%; }
}

/* --- Left Column (Typography) --- */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-title .highlight {
  color: #FF5722;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  width: 280px;
  height: 60px;
  border: none;
  cursor: pointer;
  overflow: hidden !important;
  transition: all 0.3s;
}

.cta-text {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  text-align: center !important;
  width: 100% !important;
  flex: none !important;
  padding-left: 20px !important;
  padding-right: 80px !important;
  margin: 0 !important;
  display: block !important;
}

.cta-icon-box {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(#050816, #050816) padding-box, 
              linear-gradient(to right, #00d2ff, #9c27b0, #ff4b69) border-box;
  border: 2px solid transparent;
  color: #fff;
  border-radius: 0 12px 12px 0;
  font-size: 20px;
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08), 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* --- Right Column (Visual Grid) --- */
.hero-right {
  position: relative;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-right { height: 500px; margin-top: 40px; }
}

/* Background Audio Waves */
.audio-bg {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 90%;
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  z-index: 0;
}

.audio-bg-bar {
  flex: 1;
  background: var(--ph-color-light);
  border-radius: 8px 8px 0 0;
}

/* Grid Wrapper */
.grid-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Base Card Style */
.card {
  position: absolute;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specific Cards */
.card-main {
  width: 260px;
  height: 340px;
  bottom: 0;
  left: 5%;
  z-index: 3;
}

.card-small-red {
  width: 130px;
  height: 170px;
  top: 15%;
  left: 20%;
  background: #ff4d4d;
  z-index: 2;
}
.card-small-red img { opacity: 0.9; }

.card-blue {
  width: 180px;
  height: 240px;
  top: 5%;
  right: 15%;
  background: #64b5f6;
  z-index: 1;
}

.card-yellow {
  width: 150px;
  height: 190px;
  bottom: 10%;
  right: 20%;
  background: #ffd54f;
  z-index: 2;
}

.card-bottom-right-circle {
  width: 130px;
  height: 130px;
  bottom: 8%;
  right: 8%;
  border-radius: 50%;
  background: #C6FF00;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(198, 255, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.circle-content strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Floating Elements */
.badge-float {
  position: absolute;
  top: 45%;
  right: 8%;
  background: #ffffff;
  border-radius: 12px;
  z-index: 6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 10px 16px;
  gap: 12px;
}

.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text-content {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.audio-controls {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  z-index: 10;
}

.audio-wave-bars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.audio-line {
  width: 3px;
  background: #111;
  border-radius: 2px;
}
.audio-line:nth-child(1) { height: 12px; }
.audio-line:nth-child(2) { height: 20px; }
.audio-line:nth-child(3) { height: 10px; }
.audio-line:nth-child(4) { height: 24px; }
.audio-line:nth-child(5) { height: 14px; }
.audio-line:nth-child(6) { height: 18px; }
.audio-line:nth-child(7) { height: 12px; }
.audio-line:nth-child(8) { height: 20px; }

.audio-play-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-play-circle::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-left: 6px solid #111;
  border-bottom: 4px solid transparent;
  margin-left: 3px;
}

.floating-triangle {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(0, 216, 255, 0.4);
  transform: rotate(15deg);
  filter: drop-shadow(0 4px 10px rgba(0, 216, 255, 0.15));
  z-index: 1;
}

/* =========================================
   CHARGE SECTION (SECOND SECTION)
   ========================================= */
.charge-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.charge-container {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 2;
  position: relative;
}

.charge-col {
  flex: 1;
  width: 50%;
}

@media (max-width: 992px) {
  .charge-container {
    flex-direction: column;
  }
  .charge-col {
    width: 100%;
  }
}

/* Left Column - Mic Visual */
.mic-visual-wrapper {
  position: relative;
  width: 400px;
  height: 500px;
  margin: 0 auto;
}

.floating-triangle-cyan {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #00E676;
  transform: rotate(25deg);
  z-index: 4;
  filter: drop-shadow(0 6px 12px rgba(0, 230, 118, 0.15));
}

.mic-image-mask {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 320px;
  border-radius: 110px;
  border: 4px solid #fff;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mic-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mic-bracket {
  position: absolute;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 190px;
  border: 4px solid #fff;
  border-top: none;
  border-radius: 0 0 140px 140px;
  z-index: 1;
}

.mic-bracket::before, .mic-bracket::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--bg-main);
  box-sizing: border-box;
}

.mic-bracket::before {
  left: -6px;
}

.mic-bracket::after {
  right: -6px;
}

.mic-stand {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: #fff;
  z-index: 1;
}

.mic-base {
  position: absolute;
  top: 430px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  border: 4px solid #fff;
  border-radius: 20px;
  background: transparent;
  z-index: 1;
}

/* Chat Bubble */
.chat-bubble-float {
  position: absolute;
  top: 45%;
  left: -15%;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px 16px 36px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 5;
  width: 250px;
}

.chat-avatar {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #00D8FF;
  background: #111;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-content {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

.chat-content .highlight-red {
  color: #FF4B69;
}

/* Right Column - Content */
.charge-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title-large {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-title-large .highlight {
  color: #FF5722;
}

.section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.listen-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bomb-icon {
  position: relative;
  width: 80px;
  height: 80px;
}

.bomb-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}

.play-btn-overlay {
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s;
}

.play-btn-overlay:hover {
  transform: scale(1.1);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 10px solid #111;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.listen-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.listen-text:hover {
  color: #FF5722;
}

/* Background Mic Decor */
.bg-mic-decor {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 350px;
  height: 350px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* =========================================
   EXPLORE SECTION (THIRD SECTION)
   ========================================= */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.podcast-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.podcast-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Green Cover */
.cover-green {
  background: #00E676;
  color: #fff;
  padding: 24px;
}
.cover-green .cover-top-text { font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.cover-green .cover-title { font-size: 40px; font-weight: 800; line-height: 1; margin-bottom: 24px; letter-spacing: -1px; }
.cover-lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: auto; }
.cover-lines .line { width: 80%; height: 10px; background: #fff; }
.cover-lines .line:nth-child(2) { width: 90%; }
.cover-green .cover-bottom-text { font-size: 13px; font-weight: 700; }

/* Red Cover */
.cover-red {
  background: #FF5252;
  color: #111;
  padding: 24px;
}
.cover-icon-right { position: absolute; top: 20px; right: 20px; font-size: 24px; }
.cover-red .cover-title-dark { font-size: 32px; font-weight: 800; line-height: 1.1; margin-top: auto; margin-bottom: 16px; letter-spacing: -1px; }
.cover-red .cover-bottom-text-dark { font-size: 13px; font-weight: 800; letter-spacing: 2px; }
.cover-icon-bottom { position: absolute; bottom: 20px; right: 20px; font-size: 24px; }

/* Split Cover */
.cover-split {
  padding: 0;
  flex-direction: row;
  background: #111;
}
.split-left { flex: 1; background: #4DB6AC; padding: 20px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.yellow-box { background: #FFD54F; color: #111; padding: 12px; font-size: 18px; font-weight: 800; line-height: 1.1; border: 2px solid #111; position: relative; margin-top: auto; margin-bottom: auto; }
.split-bottom { font-size: 11px; font-weight: 700; color: #fff; margin-top: auto; letter-spacing: 1px; }
.split-right { width: 40%; height: 100%; }
.split-right img { width: 100%; height: 100%; object-fit: cover; }

/* Orange Cover */
.cover-orange {
  padding: 0;
  background: #FF7043;
}
.cover-orange img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.8; }
.orange-overlay-text { position: absolute; top: 20px; left: 20px; color: #fff; }
.cn-logo { display: inline-block; background: #fff; color: #FF7043; font-size: 11px; font-weight: 800; padding: 2px 6px; border-radius: 4px; margin-bottom: 6px; }
.orange-overlay-text h3 { font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.play-circle-center { position: absolute; bottom: 20px; right: 20px; width: 48px; height: 48px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #111; font-size: 24px; z-index: 2; box-shadow: 0 2px 6px rgba(0,0,0,0.15); cursor: pointer; transition: transform 0.3s; }
.play-circle-center:hover { transform: scale(1.1); }

/* Podcast Names & Links */
.podcast-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.play-episode-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FF7043;
  font-size: 14px;
  font-weight: 600;
  margin-top: -8px;
  transition: opacity 0.3s;
}
.play-episode-link:hover { opacity: 0.8; }

/* Sticker */
.novo-sticker {
  position: absolute;
  top: -40px;
  right: -20px;
  color: #C6FF00;
  font-weight: 800;
  font-size: 18px;
  transform: rotate(15deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.novo-sticker svg { width: 32px; height: 32px; stroke: #C6FF00; margin-top: 2px; }

@media (max-width: 992px) {
  .podcasts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .podcasts-grid { grid-template-columns: 1fr; }
}

/* =========================================
   QUESTIONS SECTION (FOURTH SECTION)
   ========================================= */
.questions-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.questions-container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.questions-left {
  flex: 1;
}

.questions-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.arch-wrapper {
  position: relative;
  width: 320px;
  height: 400px;
}

.arch-image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 160px 160px;
  overflow: hidden;
  border: 2px solid #fff;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  background: #333;
}
.arch-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Orbits */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.orbit-blue {
  width: 480px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  border-color: rgba(0, 216, 255, 0.8);
  border-bottom-color: transparent;
  z-index: 3;
}

.orbit-red {
  width: 440px;
  height: 120px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  border-color: rgba(255, 75, 105, 0.8);
  border-bottom-color: transparent;
  z-index: 3;
}

/* Floating Audio Wave */
.float-audio-wave {
  position: absolute;
  left: -40px;
  top: 40%;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 4;
}
.float-audio-wave .wave-line {
  width: 4px;
  background: #fff;
  border-radius: 2px;
}
.float-audio-wave .wave-line:nth-child(1) { height: 16px; }
.float-audio-wave .wave-line:nth-child(2) { height: 28px; }
.float-audio-wave .wave-line:nth-child(3) { height: 12px; }

/* Floating Vintage Mic */
.float-vintage-mic {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  z-index: 4;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.float-vintage-mic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CD Decor */
.floating-cd {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 20px, rgba(255,255,255,0.9) 22px, #f0f0f0 35px, #d0d0d0 100%);
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0,216,255,0.08);
}
.floating-cd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,0,0,0.3), rgba(0,255,0,0.3), rgba(0,0,255,0.3), rgba(255,0,0,0.3));
  mix-blend-mode: color-burn;
}

@media (max-width: 992px) {
  .questions-container { flex-direction: column; text-align: center; }
  .arch-wrapper { margin: 40px auto 0; }
  .hero-cta-group { justify-content: center; }
  .section-subtitle { margin: 0 auto 40px; }
}

.bg-mic-decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
}

/* =========================================
   CATEGORIES SECTION (FIFTH SECTION)
   ========================================= */
.categories-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cat-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cat-pill {
  background: #ffffff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cat-pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(#0b0f19, #0b0f19) padding-box, 
              linear-gradient(to right, #00d2ff, #9c27b0, #ff4b69) border-box;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.15), 0 1px 3px rgba(0,0,0,0.1);
  color: #fff;
}

/* =========================================
   PRICING SECTION (SIXTH SECTION)
   ========================================= */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.pricing-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 10% 50%, rgba(180, 25, 70, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(80, 20, 120, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(15, 60, 160, 0.35) 0%, transparent 55%);
  z-index: 0;
  filter: blur(70px);
  pointer-events: none;
}
.pricing-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
}
.floating-yellow-star {
  position: absolute;
  left: -80px;
  top: 10px;
  width: 60px;
  height: 60px;
  animation: spin 10s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.pricing-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 4px;
}
.toggle-btn {
  background: transparent;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.toggle-btn.active {
  background: #fff;
  color: #111;
}

.pricing-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.price-card {
  position: relative;
  width: 360px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(black, black), linear-gradient(black, black), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='80'%3E%3Cpath d='M 0 0 L 50 0 Q 55 0 61 6 L 74 32 Q 79 44 85 44 L 184 44 A 16 16 0 0 1 200 60 L 0 80 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: calc(100% - 198px) 100%, 200px calc(100% - 60px), 200px 80px;
  -webkit-mask-position: left top, right bottom, right top;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(black, black), linear-gradient(black, black), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='80'%3E%3Cpath d='M 0 0 L 50 0 Q 55 0 61 6 L 74 32 Q 79 44 85 44 L 184 44 A 16 16 0 0 1 200 60 L 0 80 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: calc(100% - 198px) 100%, 200px calc(100% - 60px), 200px 80px;
  mask-position: left top, right bottom, right top;
  mask-repeat: no-repeat;
  z-index: -1;
}
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='80' viewBox='0 0 360 80'%3E%3Cdefs%3E%3ClinearGradient id='edge-grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(255,255,255,0.15)' /%3E%3Cstop offset='10%25' stop-color='rgba(156,39,176,0.6)' /%3E%3Cstop offset='50%25' stop-color='rgba(156,39,176,0.9)' /%3E%3Cstop offset='90%25' stop-color='rgba(156,39,176,0.6)' /%3E%3Cstop offset='100%25' stop-color='rgba(255,255,255,0.15)' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 210 0 Q 215 0 221 6 L 234 32 Q 239 44 245 44 L 344 44 A 16 16 0 0 1 360 60' fill='none' stroke='url(%23edge-grad)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}
.price-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 148px;
  height: 38px;
  color: #050816;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='148' height='38'%3E%3Cpath d='M 20 0 L 136 0 A 12 12 0 0 1 148 12 L 148 26 A 12 12 0 0 1 136 38 L 36 38 Q 31 38 29 33 L 16 7 Q 14 0 20 0 Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.plan-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
  align-items: flex-start;
}
.plan-features i {
  color: #FF5722;
  font-size: 20px;
  margin-top: 2px;
}
.terms-link {
  color: #64b5f6;
  text-decoration: underline;
}
.plan-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 12px;
  padding: 0;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden !important;
  transition: all 0.3s;
}
.plan-btn span {
  font-size: 14px !important;
  text-align: center !important;
  width: 100% !important;
  flex: none !important;
  padding-left: 20px !important;
  padding-right: 80px !important;
  margin: 0 !important;
  display: block !important;
}
.plan-btn i {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  background: linear-gradient(#050816, #050816) padding-box, 
              linear-gradient(to right, #00d2ff, #9c27b0, #ff4b69) border-box;
  border: 2px solid transparent;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 12px 12px 0;
}
.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.03), 0 2px 4px rgba(0,0,0,0.2);
}

/* =========================================
   CONTACT SECTION (SEVENTH SECTION)
   ========================================= */
.contact-section {
  position: relative;
  padding: 80px 0 160px;
  overflow: hidden;
}
.contact-container {
  position: relative;
}

/* Background Waves */
.contact-bg-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.contact-bg-waves .bg-wave {
  width: 6px;
  background: #fff;
  border-radius: 3px;
  height: 30px;
}
.contact-bg-waves .bg-wave:nth-child(even) { height: 70px; }
.contact-bg-waves .bg-wave:nth-child(3n) { height: 110px; }
.contact-bg-waves .bg-wave:nth-child(5n) { height: 50px; }
.contact-bg-waves .bg-wave:nth-child(7n) { height: 130px; }

/* Main Box */
.contact-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 30, 0.8);
  border: 1px solid rgba(255,75,105,0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 75, 105, 0.04), inset 0 0 15px rgba(100, 181, 246, 0.03);
  border-radius: 24px;
  padding: 60px 80px;
  z-index: 2;
  backdrop-filter: blur(15px);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
}
.contact-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-center-mic {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 140px;
  height: 240px;
  z-index: 5;
}
.contact-center-mic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.community-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.community-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  height: 60px;
  width: 100%;
  max-width: 340px;
}
.community-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  background: transparent;
}
.community-form button {
  width: 60px;
  height: 60px;
  background: linear-gradient(#050816, #050816) padding-box, 
              linear-gradient(to right, #00d2ff, #9c27b0, #ff4b69) border-box;
  border: 2px solid transparent;
  color: #fff;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}
.community-form button:hover {
  transform: scale(1.05);
}

/* Floating Avatars */
.float-avatar {
  position: absolute;
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.float-avatar img { width: 100%; height: 100%; object-fit: cover; }

.av-1 { top: -20px; left: 5%; width: 64px; height: 64px; }
.av-2 { top: 40px; right: 10%; width: 48px; height: 48px; }
.av-3 { bottom: -40px; left: 15%; width: 56px; height: 56px; }
.av-4 { bottom: -80px; right: 30%; width: 72px; height: 72px; }
.av-5 { bottom: 40px; right: 5%; width: 60px; height: 60px; }

@media (max-width: 992px) {
  .contact-box { flex-direction: column; gap: 40px; text-align: center; padding: 40px 20px; }
  .contact-right { align-items: center; }
  .contact-center-mic { position: relative !important; left: 0 !important; transform: none !important; margin: 0 auto !important; width: 100px !important; height: 100px !important; }
  .float-avatar { display: none; }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
  background: transparent;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-col {
  flex: 2;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-wave-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 32px;
}
.audio-wave-logo span {
  width: 4px;
  background: #FF5722;
  border-radius: 2px;
}
.audio-wave-logo span:nth-child(1) { height: 16px; }
.audio-wave-logo span:nth-child(2) { height: 32px; background: #FF7043; }
.audio-wave-logo span:nth-child(3) { height: 24px; }
.audio-wave-logo span:nth-child(4) { height: 12px; }

.footer-logo h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s;
  text-decoration: none;
}
.social-circle:hover {
  transform: translateY(-2px);
}
.fb { background: #3b5998; }
.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tw { background: #00acee; }

.footer-links-col {
  flex: 1;
  min-width: 140px;
}
.footer-links-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.highlight-text {
  color: #FF5722;
  font-weight: 600;
}

.listen-on {
  display: flex;
  align-items: center;
  gap: 16px;
}
.listen-on span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.platform-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.platform-icons img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: transform 0.3s;
  cursor: pointer;
}
.platform-icons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-brand-col {
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================
   MOBILE MENU & ENHANCED RESPONSIVENESS
   ========================================= */

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #111;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(5, 8, 22, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: #FF5722;
}

.mobile-btn {
  background: #fff;
  color: #111;
  padding: 14px 32px;
  font-size: 16px;
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .desktop-only { display: none !important; }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-title { font-size: 52px; }
  .section-title-large { font-size: 46px; }
  .contact-title { font-size: 40px; }
  
  /* Centering content on mobile */
  .hero-left { align-items: center; text-align: center; }
  .hero-cta-group { justify-content: center; }
  .hero-subtitle { text-align: center; max-width: 600px; margin: 0 auto 40px; }
  
  .charge-right { align-items: center; text-align: center; }
  .listen-action { justify-content: center; width: 100%; }
  .section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 40px; }
  
  /* Scale complex graphic components instead of breaking them */
  .grid-wrapper { transform: scale(0.85); transform-origin: center top; margin-top: 0; }
  .hero-right { height: auto; padding-top: 40px; min-height: 500px; }
  
  .mic-visual-wrapper { transform: scale(0.85); transform-origin: center top; margin-bottom: -20px; }
  .arch-wrapper { transform: scale(0.85); transform-origin: center top; margin-bottom: -20px; }
  
  .pricing-cards { flex-direction: column; align-items: center; }
  .price-card { width: 360px; margin: 0 auto; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .header { padding: 14px 0; }
  .hero.section-spacing { margin-top: 100px; }

  .hero-title { font-size: 40px; margin-bottom: 12px; line-height: 1.1; }
  .section-title-large { font-size: 34px; margin-bottom: 12px; line-height: 1.1; }
  .hero-subtitle { font-size: 16px; margin-bottom: 24px; }
  .section-subtitle { font-size: 15px; margin-bottom: 24px; }
  .contact-title { font-size: 32px; }
  
  /* Centralizando e modernizando o botão Hero */
  .hero-cta-btn { width: 100%; max-width: 340px; margin: 0 auto; height: 60px; }
  .cta-text { font-size: 17px !important; }
  
  /* Grid de Imagens Harmônico (App Like) */
  .hero-right { height: auto; min-height: auto; padding-top: 20px; padding-bottom: 20px; }
  .grid-wrapper { transform: none !important; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 10px; margin-top: 10px; }
  .grid-wrapper .card { position: relative !important; width: 100% !important; height: 160px !important; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; }
  .grid-wrapper .card-main { grid-column: 1 / -1; height: 240px !important; }
  .grid-wrapper .card-yellow { display: none !important; } /* Esconde o excesso para caber bem */
  .audio-controls { bottom: 12px; padding: 8px 12px; gap: 8px; }
  .badge-float { position: relative !important; grid-column: 1 / -1; top: auto !important; right: auto !important; bottom: auto !important; left: auto !important; margin: 0 auto; margin-top: -10px; z-index: 5; }
  .card-bottom-right-circle { position: absolute !important; bottom: -15px !important; right: 5px !important; width: 90px !important; height: 90px !important; z-index: 10; }
  .floating-triangle { display: none; }
  
  .audio-bg { height: 120px; bottom: 20px; width: 100%; right: auto; left: 0; }
  
  .mic-visual-wrapper { transform: scale(0.7); margin-bottom: -60px; }
  .arch-wrapper { transform: scale(0.7); margin-bottom: -40px; }
  
  .pricing-header { flex-direction: column; gap: 16px; text-align: center; margin-bottom: 30px; }
  .floating-yellow-star { position: static; margin-bottom: -10px; width: 40px; height: 40px; }
  
  .price-card {
    width: 360px;
    max-width: none !important;
    padding: 48px 40px 40px;
    margin: 0 auto;
  }
  .plan-name { font-size: 28px; margin-bottom: 24px; }
  
  .contact-box { padding: 30px 16px; gap: 30px; }
  .community-form { max-width: 100%; }
  .contact-center-mic { position: relative !important; left: 0 !important; transform: none !important; margin: 0 auto !important; width: 100px !important; height: 100px !important; }
  
  .categories-wrapper .cat-row { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .cat-pill { padding: 8px 16px; font-size: 13px; }
  
  .header-container { padding: 0 10px; }
  .logo-text { font-size: 20px; }
  
  /* Guarantee no overflow e compacta margem lateral */
  .container { overflow: visible; padding: 0 16px; }
  body { overflow-x: hidden; }
  
  .footer-logo h2 { font-size: 24px; }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .header { padding: 10px 0; }
  .hero.section-spacing { margin-top: 90px; }

  .hero-title { font-size: 32px; }
  .section-title-large { font-size: 28px; }
  .contact-title { font-size: 28px; }
  
  .hero-cta-btn { max-width: 100%; }
  
  .grid-wrapper .card { height: 140px !important; }
  .grid-wrapper .card-main { height: 200px !important; }
  .card-bottom-right-circle { width: 80px !important; height: 80px !important; right: -5px !important; }
  
  .mic-visual-wrapper { transform: scale(0.65); margin-bottom: -100px; }
  .arch-wrapper { transform: scale(0.65); margin-bottom: -100px; }
  
  .container { padding: 0 16px; }
  .section-spacing { margin-top: 50px; margin-bottom: 50px; }
  
  /* .price-card { padding: 20px; } */
  .plan-features { max-height: 200px !important; margin-bottom: 24px; gap: 12px; }
  
  .podcasts-grid { gap: 16px; }
  .podcast-cover { padding: 16px; }
  .cover-green .cover-title { font-size: 28px; margin-bottom: 16px; }
  .cover-red .cover-title-dark { font-size: 24px; margin-bottom: 12px; }
  
  .chat-bubble-float { transform: scale(0.8); left: -10%; }
  .floating-triangle-cyan { transform: scale(0.8); }
  
  /* Make sure toggle button for pricing looks good */
  .pricing-toggle { flex-wrap: wrap; justify-content: center; border-radius: 20px; padding: 6px; }
  .toggle-btn { padding: 8px 16px; font-size: 13px; }
}

/* =========================================
   NICHE MODAL
   ========================================= */
.niche-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 8, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.niche-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.niche-modal-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.niche-modal-overlay.active .niche-modal-box {
  transform: translateY(0) scale(1);
}

.niche-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 18px;
  transition: all 0.3s;
}

.niche-modal-close:hover {
  background: #FF5722;
  transform: rotate(90deg);
}

.niche-modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.niche-icon-large {
  font-size: 48px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.niche-modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.niche-modal-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 30px;
}

.niche-needs-list {
  list-style: none;
  margin-bottom: 30px;
}

.niche-needs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  line-height: 1.4;
  background: rgba(255,255,255,0.03);
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 3px solid #00D8FF;
}

.niche-needs-list i {
  color: #00D8FF;
  font-size: 20px;
  margin-top: 0;
}

.niche-rec-box {
  background: linear-gradient(135deg, rgba(99, 57, 255, 0.3), rgba(0, 216, 255, 0.2));
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 216, 255, 0.3);
}

.niche-rec-info span {
  display: block;
  font-size: 12px;
  color: #00D8FF;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 6px;
}

.niche-rec-info strong {
  font-size: 22px;
  color: #fff;
  font-weight: 800;
}

.niche-rec-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.niche-rec-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.05), 0 2px 4px rgba(0,0,0,0.15);
}

@media (max-width: 576px) {
  .niche-modal-box { padding: 30px 20px; }
  .niche-modal-header { flex-direction: column; text-align: center; gap: 12px; }
  .niche-modal-title { font-size: 24px; }
  .niche-modal-desc { text-align: center; }
  .niche-rec-box { flex-direction: column; text-align: center; gap: 16px; }
  .niche-rec-btn { width: 100%; }
}

@media (max-width: 395px) {
  .price-card {
    transform: scale(0.94);
    transform-origin: center top;
    margin-bottom: -30px !important;
  }
}

@media (max-width: 375px) {
  .price-card {
    transform: scale(0.88);
    transform-origin: center top;
    margin-bottom: -55px !important;
  }
}

@media (max-width: 350px) {
  .price-card {
    transform: scale(0.82);
    transform-origin: center top;
    margin-bottom: -80px !important;
  }
}

@media (max-width: 330px) {
  .price-card {
    transform: scale(0.76);
    transform-origin: center top;
    margin-bottom: -105px !important;
  }
}

/* =========================================
   CINEMATIC VIDEO HOVER EFFECT ON IMAGES
   ========================================= */
@keyframes hoverVideoEffect {
  0% {
    transform: scale(1.02) translate(0, 0) rotate(0deg);
  }
  20% {
    transform: scale(1.06) translate(-1%, 0.5%) rotate(0.2deg);
  }
  40% {
    transform: scale(1.08) translate(0.5%, -0.8%) rotate(-0.15deg);
  }
  60% {
    transform: scale(1.05) translate(-0.8%, -0.4%) rotate(0.1deg);
  }
  80% {
    transform: scale(1.07) translate(0.8%, 0.6%) rotate(-0.1deg);
  }
  100% {
    transform: scale(1.02) translate(0, 0) rotate(0deg);
  }
}

.card img,
.mic-image-mask img,
.arch-image-mask img,
.podcast-cover img,
.split-right img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.50, 1), opacity 0.5s ease;
  transform-origin: center center;
}

/* Garante que o contêiner da imagem no split do card 3 não transborde */
.split-right {
  overflow: hidden !important;
}

/* Ativação do efeito de câmera fluida (estilo vídeo) em hover */
.card:hover img,
.mic-visual-wrapper:hover .mic-image-mask img,
.arch-wrapper:hover .arch-image-mask img,
.podcast-item:hover .podcast-cover img {
  animation: hoverVideoEffect 8s ease-in-out infinite alternate;
}

