:root {
  --bg: #0b0b0c;
  --card: #111114;
  --muted: #b6b8bf;
  --text: #f4f5f7;
  --red: #e1192d;
  --red-700: #b01322;
  --border: #22232a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --gradient-red: linear-gradient(135deg, #19e1a6 0%, #15c895 50%, #10b981 100%);
  --gradient-card: linear-gradient(180deg, #1a1a1f 0%, #0f0f12 100%);
  --gradient-hero: linear-gradient(135deg, #0b0b0c 0%, #1a1a1f 50%, #0b0b0c 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Container específico para a seção de problema com menos padding */
.problem-section .container {
  padding: 0 16px;
}

.header {
  position: relative;
  background: #000;
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand img {
  height: 44px;
  width: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-red);
  border: 0;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(52, 225, 25, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta:hover::before {
  left: 100%;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(35, 225, 25, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.cta:active {
  transform: translateY(0);
  transition: transform 0.1s;
}

.cta--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta--ghost:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  padding: 80px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(1400px 800px at 15% -15%, rgba(225, 25, 45, 0.25), transparent 60%),
    radial-gradient(1200px 600px at 85% 10%, rgba(225, 25, 45, 0.15), transparent 65%),
    radial-gradient(800px 400px at 50% 50%, rgba(25, 225, 166, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.eyebrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.eyebrow::before {
  content: '🚀';
  font-size: 14px;
}

h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e9eaf0 50%, #b6b8bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h1 span {
    background: linear-gradient(135deg, #19e1a6 0%, #15c895 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.sub {
  font-size: 20px;
  color: #d9dbe2;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 225, 25, 0.5), transparent);
}

.bullet {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 6px 0;
  color: #e9eaf0;
  padding: 4px 0;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 6px;
}

.bullet:hover {
  transform: translateX(4px);
  color: #fff;
}

.bullet span {
  line-height: 1.5;
}

.bullet::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--gradient-red);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.bullet:hover::before {
  height: 20px;
}

.bullets {
 display: flex;
 flex-direction: column;
 margin: 16px 0 24px;
}

.hero-card .cta {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 14px 24px;
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.hero-grid > div:first-child {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-card {
  animation: fadeInRight 0.8s ease-out 0.2s both, float 6s ease-in-out infinite;
}

.eyebrow {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

h1 {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.sub {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-cta {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Efeito de flutuação sutil no card */
.hero-card {
  animation: fadeInRight 0.8s ease-out 0.2s both, float 6s ease-in-out infinite;
}

/* Melhorias nos bullets */
.bullet {
  position: relative;
  padding-left: 8px;
}

.bullet::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--gradient-red);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.bullet:hover::before {
  height: 20px;
}

.bullet span {
  line-height: 1.5;
}

.bullets {
  display: grid;
  gap: 8px;
  margin: 24px 0 32px;
}

.hero-card .cta {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 14px 24px;
}

section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Grid específico para a seção de problema com gap otimizado */
.problem-section .grid-2 {
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 25, 45, 0.12);
  color: #fff;
  border: 1px solid rgba(225, 25, 45, 0.35);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* Problem Section Styles */
.problem-section {
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(25, 225, 166, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.section-title .highlight {
  background: linear-gradient(135deg, #19e1a6 0%, #15c895 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section-title .highlight::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -4px;
  right: -4px;
  bottom: -2px;
  background: linear-gradient(135deg, #19e1a6 0%, #15c895 50%, #10b981 100%);
  opacity: 0.15;
  filter: blur(8px);
  z-index: -1;
  border-radius: 8px;
}

.section-title .highlightRed {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section-title .highlightRed::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -4px;
  right: -4px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff4757 100%);
  opacity: 0.15;
  filter: blur(8px);
  z-index: -1;
  border-radius: 8px;
}

.target-audience {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.target-audience li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.target-audience li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(25, 225, 166, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.target-audience li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
}

.target-audience li:hover::before {
  opacity: 1;
}

.target-audience .icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.target-audience .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.target-audience li:hover .icon::before {
  opacity: 1;
}

.target-audience li > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.target-audience strong {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.target-audience .subtitle {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

/* Enhanced card styling for problem section */
.problem-section .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 107, 107, 0.1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 107, 107, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.problem-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.02) 0%, rgba(25, 225, 166, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.problem-section .card:hover::before {
  opacity: 1;
}

.problem-section .badge {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 71, 87, 0.15) 100%);
  border: 1px solid rgba(255, 107, 107, 0.4);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  animation: float 3s ease-in-out infinite;
}

/* Benefits Section */
.benefits-section {
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(25, 225, 166, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.benefits-section .section-title .highlight {
  background: linear-gradient(135deg, #19e1a6 0%, #15c895 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.benefits-section .section-title .highlight::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.3) 0%, rgba(21, 200, 149, 0.3) 50%, rgba(16, 185, 129, 0.3) 100%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 225, 166, 0.4);
  box-shadow: 0 8px 25px rgba(25, 225, 166, 0.15);
}

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

.benefit-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.2) 0%, rgba(21, 200, 149, 0.2) 100%);
  border: 1px solid rgba(25, 225, 166, 0.3);
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.05);
  border-color: rgba(25, 225, 166, 0.6);
  box-shadow: 0 4px 15px rgba(25, 225, 166, 0.3);
}

.benefit-card:hover .benefit-icon::before {
  opacity: 1;
}

.benefit-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.benefits-cta {
  text-align: center;
  margin-top: 40px;
}

.benefits-cta .cta {
  font-size: 18px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #19e1a6 0%, #15c895 50%, #10b981 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(25, 225, 166, 0.3);
}

.benefits-cta .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 225, 166, 0.4);
}

/* Removed old proof styles - replaced with new proof-section */

/* Removed old offer styles - replaced with new offer-section */

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.footer {
  padding: 40px 0;
  color: #8d9099;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.96);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: none;
}

.mobile-cta .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-cta .price-mini {
  font-weight: 900;
}

/* Offer Section */
.offer-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(25, 225, 166, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.offer-header {
  text-align: center;
  margin-bottom: 48px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fde047 0%, #f59e0b 50%, #f59e0b 100%);
  color: #fff;
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
  animation: pulse 2s ease-in-out infinite;
}

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

.offer-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.offer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(25, 225, 166, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(25, 225, 166, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gradient-red), transparent);
}

.offer-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-old {
  font-size: 24px;
  color: #9aa0ac;
  text-decoration: line-through;
  font-weight: 700;
}

.price-new {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.installment-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.installment-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.installment-subtitle {
  font-size: 14px;
  color: var(--muted);
}

.offer-features h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.offer-list li:hover {
  transform: translateX(4px);
  background: rgba(25, 225, 166, 0.05);
  border-color: rgba(25, 225, 166, 0.2);
}

.feature-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.2) 0%, rgba(21, 200, 149, 0.2) 100%);
  border: 1px solid rgba(25, 225, 166, 0.3);
  border-radius: 12px;
  flex-shrink: 0;
}

.offer-list li > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-list strong {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.offer-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.offer-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta--primary {
  background: var(--gradient-red);
  border: none;
  padding: 20px 32px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 35px rgba(25, 225, 166, 0.4);
}

.cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(25, 225, 166, 0.5);
}

.cta-text {
  font-size: 18px;
  font-weight: 800;
}

.cta-subtitle {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

.offer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-card,
.urgency-card,
.security-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.guarantee-card:hover,
.urgency-card:hover,
.security-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 225, 166, 0.3);
  box-shadow: 0 12px 30px rgba(25, 225, 166, 0.15);
}

.guarantee-icon,
.urgency-icon,
.security-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.15) 0%, rgba(21, 200, 149, 0.15) 100%);
  border: 1px solid rgba(25, 225, 166, 0.25);
  border-radius: 16px;
  margin-bottom: 16px;
}

.guarantee-card h3,
.urgency-card h3,
.security-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.guarantee-card p,
.urgency-card p,
.security-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Responsive adjustments for offer section */
@media (max-width: 980px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .header-inner {
    gap: 10px;
  }

  .hero {
    padding: 60px 0 60px;
  }
  
  .hero-grid {
    gap: 32px;
  }
  
  .hero-card {
    padding: 24px;
  }
  
  /* Problem section responsive */
  .problem-section .grid-2 {
    gap: 20px;
  }
  
  .target-audience li {
    padding: 12px;
    gap: 12px;
  }
  
  .target-audience .icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  
  /* Benefits section tablet responsive */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  /* Offer section responsive */
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .offer-card {
    padding: 24px;
  }
  
  .price-new {
    font-size: 42px;
  }
  
  .offer-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .guarantee-card,
  .urgency-card,
  .security-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 560px) {
  .mobile-cta {
    display: block;
  }
  
  .hero {
    padding: 40px 0 40px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .eyebrow {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  h1 {
    font-size: clamp(28px, 8vw, 40px);
  }
  
  .sub {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta {
    width: 100%;
    justify-content: center;
  }
  
  /* Problem section mobile responsive */
  .problem-section .grid-2 {
    gap: 16px;
  }
  
  .target-audience li {
    padding: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .target-audience .icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  
  .target-audience li > div {
    align-items: center;
  }
  
  .section-title {
    font-size: 24px;
    text-align: center;
  }
  
  /* Benefits section mobile responsive */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px 0;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .benefit-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .benefits-cta {
    margin-top: 32px;
  }
  
  .benefits-cta .cta {
    font-size: 16px;
    padding: 14px 28px;
  }
  
  /* Offer section mobile responsive */
  .offer-section {
    padding: 48px 0;
  }
  
  .offer-header {
    margin-bottom: 32px;
  }
  
  .offer-badge {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  .offer-subtitle {
    font-size: 16px;
  }
  
  .offer-card {
    padding: 20px;
  }
  
  .price-new {
    font-size: 36px;
  }
  
  .installment-text {
    font-size: 16px;
  }
  
  .offer-list li {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .cta--primary {
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .cta-text {
    font-size: 16px;
  }
  
  .offer-sidebar {
    flex-direction: column;
  }
  
  .guarantee-card,
  .urgency-card,
  .security-card {
    min-width: auto;
  }
}

/* Proof Section */
.proof-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(25, 225, 166, 0.05) 100%);
}

.proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(25, 225, 166, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.proof-header {
  text-align: center;
  margin-bottom: 48px;
}

.proof-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.proof-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.proof-card:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 225, 166, 0.3);
  box-shadow: 0 20px 40px rgba(25, 225, 166, 0.15);
}

.proof-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.proof-card:hover .proof-image img {
  transform: scale(1.05);
}

.proof-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.proof-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #ff6b35;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.proof-content {
  padding: 20px 24px 24px 24px;
  position: relative;
}

/* Avatar removido */

.proof-info {
  margin: 0 0 12px 0;
}

.proof-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.proof-location {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-location::before {
  content: '📍';
  font-size: 12px;
}

.proof-comment {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  backdrop-filter: blur(10px);
}

.proof-comment::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 48px;
  color: rgba(25, 225, 166, 0.3);
  font-family: serif;
  line-height: 1;
}

.proof-comment p {
  margin: 0;
  color: #e9eaf0;
  line-height: 1.6;
  font-size: 15px;
  font-style: italic;
}

.proof-cta {
  text-align: center;
  margin-top: 48px;
}

.proof-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive adjustments for proof section */
@media (max-width: 980px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
  }
  
  .proof-card {
    padding: 0;
  }
  
  .proof-content {
    padding: 16px 20px 20px 20px;
  }
}

@media (max-width: 560px) {
  .proof-section {
    padding: 48px 0;
  }
  
  .proof-header {
    margin-bottom: 32px;
  }
  
  .proof-subtitle {
    font-size: 16px;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px 0;
  }
  
  .proof-image {
    height: 200px;
  }
  
  .proof-content {
    padding: 14px 16px 16px 16px;
  }
  
  .proof-name {
    font-size: 16px;
  }
  
  .proof-comment {
    padding: 16px;
  }
  
  .proof-comment p {
    font-size: 14px;
  }
  
  .proof-cta {
    margin-top: 32px;
  }
}

/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(25, 225, 166, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.faq-item:hover {
  border-color: rgba(25, 225, 166, 0.3);
  box-shadow: 0 8px 25px rgba(25, 225, 166, 0.1);
}

.faq-item.active {
  border-color: rgba(25, 225, 166, 0.5);
  box-shadow: 0 12px 35px rgba(25, 225, 166, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  color: #fff;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question:focus {
  outline: none;
  background: rgba(25, 225, 166, 0.1);
}

.faq-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 225, 166, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(25, 225, 166, 0.2);
}

.faq-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.faq-arrow {
  font-size: 14px;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

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

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

.faq-content {
  padding: 0 24px 24px 80px;
  color: #e9eaf0;
  line-height: 1.6;
}

.faq-content p {
  margin: 0 0 16px;
  font-size: 16px;
}

.faq-content strong {
  color: #fff;
  font-weight: 700;
}

.faq-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(25, 225, 166, 0.1);
  border: 1px solid rgba(25, 225, 166, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.tip-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-tip span:last-child {
  font-size: 14px;
  color: #d1d5db;
  font-style: italic;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(25, 225, 166, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  border: 1px solid rgba(25, 225, 166, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.faq-cta-text {
  font-size: 18px;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 600;
}

.faq-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments for FAQ section */
@media (max-width: 980px) {
  .faq-container {
    max-width: 100%;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-content {
    padding: 0 20px 20px 72px;
  }
  
  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .faq-text {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .faq-section {
    padding: 48px 0;
  }
  
  .faq-header {
    margin-bottom: 32px;
  }
  
  .faq-subtitle {
    font-size: 16px;
  }
  
  .faq-question {
    padding: 16px;
    gap: 12px;
  }
  
  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
  .faq-text {
    font-size: 15px;
  }
  
  .faq-content {
    padding: 0 16px 16px 60px;
  }
  
  .faq-content p {
    font-size: 15px;
  }
  
  .faq-tip {
    padding: 12px;
    margin-top: 12px;
  }
  
  .faq-cta {
    margin-top: 32px;
    padding: 24px 20px;
  }
  
  .faq-cta-text {
    font-size: 16px;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-cta-buttons .cta {
    width: 100%;
    max-width: 280px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  color: #fff;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(100, 100, 100, 0.368);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(0, 0, 0, 0.9);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

/* Pulse animation for WhatsApp button */
.whatsapp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon svg {
    width: 22px;
    height: 22px;
  }
}
