/* ========== CSS Variables ========== */
:root {
  --primary: #ff6b6b;
  --primary-dark: #ee5a5a;
  --secondary: #4ecdc4;
  --accent: #ffe66d;
  --purple: #a855f7;
  --blue: #3b82f6;
  --success: #22c55e;
  --danger: #ef4444;
  --dark: #1e1e2e;
  --dark-light: #2d2d44;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --white: #ffffff;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 50%, #f0fdf4 100%);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-size: 28px;
}
.logo-text {
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s;
}
.nav a:hover {
  color: var(--primary);
}
.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: 0.3s;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8e53 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}
.btn-large {
  padding: 20px 40px;
  font-size: 20px;
}
.btn-block {
  width: 100%;
}
.btn-icon {
  font-size: 20px;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f5 0%, #fff0eb 50%, #f0fdf9 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  font-size: 40px;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}
.shape-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.shape-2 {
  top: 25%;
  right: 10%;
  animation-delay: 1s;
}
.shape-3 {
  bottom: 30%;
  left: 8%;
  animation-delay: 2s;
}
.shape-4 {
  top: 60%;
  right: 5%;
  animation-delay: 3s;
}
.shape-5 {
  bottom: 15%;
  right: 15%;
  animation-delay: 4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 600px;
}
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd93d 100%);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.hero h1 {
  font-size: 58px;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.15;
}
.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 22px;
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  transition: transform 0.5s;
}
.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.music-player {
  text-align: center;
}
.player-art {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}
.player-art-emoji {
  font-size: 80px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.player-info {
  margin-bottom: 20px;
}
.player-title {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}
.player-artist {
  display: block;
  font-size: 14px;
  color: var(--gray);
}
.player-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.player-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}
.player-btn:hover {
  transform: scale(1.2);
}
.play-btn {
  font-size: 36px;
}

/* ========== Trust Bar ========== */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
}
.trust-icon {
  font-size: 24px;
}

/* ========== Problem Section ========== */
.problem-section {
  padding: 100px 0;
  background: white;
}
.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.text-danger {
  color: var(--danger);
}
.text-success {
  color: var(--success);
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  padding: 15px;
  background: #fef2f2;
  border-radius: var(--radius);
}
.problem-icon {
  font-size: 24px;
}
.solution-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--success);
}
.solution-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.solution-card p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 20px;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}

/* ========== Benefits Section ========== */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-top: 10px;
}

/* ========== Section CTA ========== */
.section-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 2px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}
.benefit-icon {
  font-size: 50px;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}
.benefit-card p {
  font-size: 16px;
  color: var(--gray);
}

/* ========== Music Section ========== */
.music-section {
  padding: 100px 0;
  background: white;
}
.music-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.music-category {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}
.music-category:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}
.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #e5e7eb;
}
.category-icon {
  font-size: 36px;
}
.category-header h3 {
  font-size: 20px;
  color: var(--dark);
}
.category-benefit {
  padding: 10px 0;
}
.category-benefit p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}
.category-benefit strong {
  color: var(--dark);
}
.result-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.total-songs-badge {
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd93d 100%);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 40px;
  display: inline-block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(255, 230, 109, 0.3);
}
.category-songs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.song-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: white;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.song-item:hover {
  background: var(--accent);
}
.song-item span:first-child {
  font-weight: 700;
  color: var(--primary);
  min-width: 30px;
}
.song-item span:last-child {
  font-weight: 600;
  color: var(--dark);
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-stars {
  font-size: 20px;
  margin-bottom: 15px;
}
.testimonial-card > p {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  font-size: 40px;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-weight: 700;
  color: var(--dark);
}
.author-info span:last-child {
  font-size: 14px;
  color: var(--gray);
}

/* ========== Pricing Section ========== */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(1);
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: scale(1.02);
}
.pricing-header {
  background: var(--dark);
  color: white;
  padding: 30px;
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  background: var(--primary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-header h2 {
  font-size: 32px;
  margin-bottom: 5px;
}
.pricing-header p {
  color: var(--gray-light);
}
.pricing-content {
  padding: 40px;
}
.pricing-includes ul {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-includes li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-price {
  text-align: center;
  margin-bottom: 30px;
}
.price-old {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 5px;
}
.price-old s {
  color: var(--danger);
}
.price-current {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  position: relative;
}
.currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 12px;
}
.amount {
  font-size: 80px;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  color: var(--success);
  line-height: 1;
  text-shadow: 2px 2px 0px rgba(34, 197, 94, 0.2);
}
.cents {
  font-size: 28px;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  color: var(--success);
  margin-top: 12px;
}
.price-installment {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
}
.price-discount {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd93d 100%);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin-top: 12px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4);
}
.pricing-guarantee {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: #ecfdf5;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--success);
  font-weight: 600;
}
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
}

/* ========== FAQ Section ========== */
.faq-section {
  padding: 100px 0;
  background: white;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: #f8fafc;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #f1f5f9;
}
.faq-icon {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}
.faq-answer p {
  color: var(--gray);
  line-height: 1.8;
}

/* ========== Final CTA ========== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd93d 100%);
  text-align: center;
}
.final-cta h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}
.final-cta p {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 30px;
  opacity: 0.8;
}
.cta-note {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--dark);
  opacity: 0.7;
}

/* ========== Footer ========== */
.footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  gap: 30px;
}
.footer-links a {
  color: var(--gray-light);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: white;
}
.footer p {
  color: var(--gray-light);
  font-size: 14px;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-cta {
    align-items: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .problem-content {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Header Mobile - Compacto */
  .nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .header .container {
    height: 56px;
  }
  .header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .logo-icon {
    font-size: 22px;
  }
  .logo-text {
    font-size: 16px;
  }

  /* Container Mobile */
  .container {
    padding: 0 16px;
  }

  /* Hero Mobile - Compacto e Direto */
  .hero {
    padding: 40px 0 40px;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .badge {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 16px;
  }
  .hero-cta {
    align-items: center;
    gap: 12px;
  }
  .hero-guarantee {
    font-size: 12px;
    text-align: center;
  }

  /* Esconder player no mobile para ser mais direto */
  .hero-visual {
    display: none;
  }

  /* Buttons Mobile - Touch Optimized */
  .btn {
    min-height: 54px;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 30px;
    -webkit-tap-highlight-color: transparent;
  }
  .btn-large {
    padding: 18px 28px;
    font-size: 17px;
    width: 100%;
    justify-content: center;
    font-weight: 700;
  }
  .btn-primary {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  }
  .btn-primary:active {
    transform: scale(0.98);
  }

  /* Sections Mobile - Mais Compactas */
  .music-section,
  .testimonials-section,
  .faq-section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-top: 8px;
  }

  /* Section CTA Mobile */
  .section-cta {
    margin-top: 30px;
    padding-top: 20px;
  }

  /* Music Section Mobile - Lista Compacta */
  .music-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .music-category {
    padding: 16px;
  }
  .category-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .category-icon {
    font-size: 24px;
  }
  .category-header h3 {
    font-size: 15px;
  }
  .category-songs {
    gap: 6px;
  }
  .song-item {
    padding: 8px 10px;
    font-size: 13px;
    gap: 10px;
  }
  .song-item span:first-child {
    min-width: 24px;
    font-size: 12px;
  }

  /* Testimonials Mobile - Cards Menores */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card {
    padding: 16px;
  }
  .testimonial-stars {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .testimonial-card > p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .testimonial-author {
    gap: 10px;
  }
  .author-avatar {
    font-size: 28px;
  }
  .author-name {
    font-size: 13px;
  }
  .author-info span:last-child {
    font-size: 11px;
  }

  /* Pricing Section Mobile - Destaque */
  .pricing-section {
    padding: 50px 0;
  }
  .pricing-card {
    margin: 0;
    border-radius: 20px;
  }
  .pricing-header {
    padding: 20px 16px;
  }
  .pricing-badge {
    font-size: 12px;
    padding: 4px 12px;
  }
  .pricing-header h2 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .pricing-header p {
    font-size: 14px;
  }
  .pricing-content {
    padding: 20px 16px;
  }
  .pricing-includes ul {
    margin-bottom: 20px;
    gap: 10px;
  }
  .pricing-includes li {
    font-size: 14px;
    gap: 8px;
  }
  .pricing-price {
    margin-bottom: 20px;
  }
  .price-old {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .currency {
    font-size: 18px;
    margin-top: 8px;
  }
  .amount {
    font-size: 60px;
  }
  .cents {
    font-size: 20px;
    margin-top: 8px;
  }
  .price-installment {
    font-size: 12px;
    margin-top: 6px;
  }
  .price-discount {
    font-size: 12px;
    padding: 6px 14px;
    margin-top: 10px;
  }
  .pricing-guarantee {
    font-size: 11px;
    padding: 10px;
    margin-top: 16px;
  }
  .payment-methods {
    gap: 12px;
    font-size: 12px;
    margin-top: 16px;
  }

  /* FAQ Mobile - Compacto */
  .faq-list {
    gap: 10px;
  }
  .faq-item {
    border-radius: 12px;
  }
  .faq-question {
    padding: 14px;
    font-size: 14px;
  }
  .faq-icon {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .faq-item.active .faq-answer {
    padding: 0 14px 14px;
  }

  /* Footer Mobile */
  .footer {
    padding: 24px 0;
  }
  .footer .container {
    gap: 16px;
  }
  .footer-brand {
    font-size: 14px;
    gap: 8px;
  }
  .footer-links {
    gap: 16px;
    font-size: 12px;
  }
  .footer p {
    font-size: 11px;
  }
}

/* Extra small mobile */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 22px;
  }
  .hero-description {
    font-size: 14px;
  }
  .amount {
    font-size: 52px;
  }
  .btn-large {
    font-size: 15px;
    padding: 16px 20px;
  }
  .section-header h2 {
    font-size: 20px;
  }
}
