:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #1f1f1f;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --gradient-start: #f59e0b;
  --gradient-end: #ef4444;
  --success: #22c55e;
  --whatsapp: #25D366;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #888;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-btn-nav {
  width: 40px;
  height: 40px;
  background: var(--whatsapp);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-btn-nav:hover {
  background: #20BD5A;
  transform: translateY(-2px);
}

.whatsapp-btn-nav svg {
  width: 20px;
  height: 20px;
}

.cta-btn-nav {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  filter: blur(60px);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.9rem;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.hero-visual {
  position: relative;
}

.browser-mockup {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-bar {
  background: var(--bg-tertiary);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.browser-dots span:first-child {
  background: #ef4444;
}

.browser-dots span:nth-child(2) {
  background: #eab308;
}

.browser-dots span:nth-child(3) {
  background: #22c55e;
}

.browser-content {
  padding: 1.5rem;
}

.mock-nav {
  height: 8px;
  width: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.mock-hero-section {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.mock-headline {
  height: 24px;
  width: 70%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 6px;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.mock-subheadline {
  height: 12px;
  width: 50%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 0 auto 1.5rem;
}

.mock-cta {
  height: 40px;
  width: 180px;
  background: var(--accent);
  border-radius: 8px;
  margin: 0 auto;
}

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

.mock-card {
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.badge-1 {
  top: 20%;
  left: -20px;
  animation: float 3s ease-in-out infinite;
}

.badge-2 {
  bottom: 20%;
  right: -20px;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Problema Section */
.problema {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

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

.problema-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.problema-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.problema-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problema-icon svg {
  width: 24px;
  height: 24px;
  color: #ef4444;
}

.problema-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.problema-card p {
  color: #888;
  font-size: 0.95rem;
}

/* Solução Section */
.solucao {
  padding: 6rem 0;
}

.solucao-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.solucao-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.solucao-text p {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 2rem;
}

.solucao-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.solucao-list svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.solucao-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-illustration {
  position: relative;
  width: 300px;
  height: 300px;
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.ai-core svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.ai-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.ring-1 {
  width: 140px;
  height: 140px;
}

.ring-2 {
  width: 200px;
  height: 200px;
  animation-direction: reverse;
  animation-duration: 15s;
}

.ring-3 {
  width: 260px;
  height: 260px;
  animation-duration: 20s;
  opacity: 0.5;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Como Funciona */
.como-funciona {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  margin: 0 auto 1rem;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: #888;
}

.step-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 25px;
  opacity: 0.3;
}

/* Benefícios */
.beneficios {
  padding: 6rem 0;
}

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

.beneficio-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.beneficio-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.beneficio-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.beneficio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.beneficio-card p {
  color: #888;
  font-size: 0.9rem;
}

/* Comparação */
.comparacao {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.tabela-comparativa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.coluna {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.coluna.tradicional h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #888;
}

.coluna.nos h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.coluna ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.coluna ul li:last-child {
  border-bottom: none;
}

.coluna .item {
  color: #888;
  font-size: 0.95rem;
}

.coluna .valor {
  font-weight: 600;
  font-size: 0.95rem;
}

.coluna .valor.highlight {
  color: var(--accent);
}

.badge-melhor {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* Oferta */
.oferta {
  padding: 6rem 0;
}

.oferta-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.1);
}

.oferta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.oferta-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.preco {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.preco .moeda {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.preco .valor {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preco .centavos {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.oferta-subtitle {
  color: #888;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.oferta-includes {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.oferta-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.oferta-includes svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.garantia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--success);
}

.garantia svg {
  width: 20px;
  height: 20px;
}

.cta-btn-oferta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.cta-btn-oferta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.oferta-urgencia {
  margin-top: 1.5rem;
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ */
.faq {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  color: #888;
  padding-bottom: 1.5rem;
  line-height: 1.7;
}

/* CTA Final */
.cta-final {
  padding: 6rem 0;
  text-align: center;
}

.cta-final h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 2rem;
}

.cta-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Footer */
.footer {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #888;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-contact a {
  color: var(--accent);
  font-size: 0.9rem;
}

.footer-bottom {
  color: #666;
  font-size: 0.8rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* Animações */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.fade-in-delay-1 {
  animation: fadeIn 0.6s ease 0.1s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 0.6s ease 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn 0.6s ease 0.3s forwards;
  opacity: 0;
}

.fade-in-delay-4 {
  animation: fadeIn 0.6s ease 0.4s forwards;
  opacity: 0;
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }
.scroll-reveal-delay-5 { transition-delay: 0.5s; }

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

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

  .hero-visual {
    display: none;
  }

  .solucao-content {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .problema-grid,
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabela-comparativa {
    grid-template-columns: 1fr;
  }
}

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

  .navbar-buttons .cta-btn-nav {
    display: flex;
  }
  
  .cta-btn-nav {
    display: none !important;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
  }

  .problema-grid,
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .oferta-includes {
    grid-template-columns: 1fr;
  }

  .oferta-card {
    padding: 2rem;
  }

  .preco .valor {
    font-size: 3rem;
  }
  .cta-btn-oferta{
    padding: 1rem;
    gap: .5rem;
  }
  .footer-contact{
    gap: 1rem;
  }
}