/* 
  impulsionar.online - Premium Landing Page Stylesheet
  High-Fidelity, Ultra-Modern Dark Theme with Neon Glows
*/

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

:root {
  /* Core Colors */
  --bg-dark: #06090a;
  --bg-dark-accent: #0b0f12;
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  
  /* Theme Accents */
  --color-green: #22c55e;
  --color-green-glow: rgba(34, 197, 94, 0.4);
  --color-blue: #3b82f6;
  --color-blue-glow: rgba(59, 130, 246, 0.4);
  --color-gold: #f59e0b;
  --color-gold-glow: rgba(245, 158, 11, 0.55);
  --color-purple: #a855f7;
  --color-purple-glow: rgba(168, 85, 247, 0.4);
  
  --color-lime: #a3e635;
  --color-lime-dark: #65a30d;

  /* Font Families */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Layout Spacing */
  --container-width: 1280px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Logo */
header {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.logo span {
  background: linear-gradient(135deg, var(--color-gold), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 950;
  font-size: 1.15em;
  line-height: 1;
}



/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 60px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.hero-left {
  z-index: 2;
}

.badge-tag {
  display: inline-block;
  background-color: var(--color-lime);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: skewX(-6deg);
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(163, 230, 53, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .white-text {
  display: block;
  color: var(--text-light);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-title .green-text {
  display: block;
  color: var(--color-lime);
  background: linear-gradient(135deg, var(--color-lime), #84cc16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 20px rgba(163, 230, 53, 0.2));
}

.hero-subtitles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
}

.hero-subtitles p {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-subtitles .highlight {
  color: var(--color-lime);
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Social Icon Badges Row */
.social-icons-row {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  align-items: center;
}

.social-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
  cursor: pointer;
}

.social-icon-wrapper:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.social-icon-wrapper.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
}

.social-icon-wrapper.tiktok:hover {
  background: #000;
  border-color: #25f4ee;
  box-shadow: 0 0 15px rgba(37, 244, 238, 0.4);
}

.social-icon-wrapper.youtube:hover {
  background: #ff0000;
  border-color: transparent;
}

.social-icon-wrapper.reels:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.social-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/* Limited Access Glowing Badge */
.limit-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.limit-badge {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #0b0f12 60%, #000000 100%);
  border: 4px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 30px var(--color-gold-glow);
  animation: glowPulse 2.5s infinite alternate;
}

.limit-badge::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 158, 11, 0.4);
  animation: rotateClockwise 20s linear infinite;
}

.limit-badge .badge-top {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.limit-badge .badge-top svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
}

.limit-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.limit-badge .badge-bottom {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Hero Right Side - Support Specialist Portrait & floating assets */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.agent-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--border-radius-lg);
  overflow: visible;
}

.agent-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  border-radius: 50%;
}

.agent-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  display: block;
}

/* Floating Badges on Portrait */
.floating-stat-card {
  position: absolute;
  top: 15%;
  right: -25px;
  background: rgba(11, 15, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: floatEffect 4s ease-in-out infinite alternate;
}

.floating-stat-card .stat-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.floating-stat-card .stat-header .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
}

.floating-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--color-lime);
}

.floating-stat-card .stat-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.floating-support-badge {
  position: absolute;
  bottom: 12%;
  right: -30px;
  background: rgba(11, 15, 18, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatEffect 4s ease-in-out infinite alternate-reverse;
}

.floating-support-badge .badge-icon {
  background: linear-gradient(135deg, var(--color-lime), var(--color-green));
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-support-badge .badge-icon svg {
  width: 16px;
  height: 16px;
  fill: #000;
}

.floating-support-badge .badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.floating-support-badge .badge-text span {
  display: block;
  color: var(--color-lime);
}

/* Floating interactive items */
.floating-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatEffect 5s ease-in-out infinite alternate;
}

.floating-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-lime);
}

.floating-item.heart {
  top: 35%;
  left: -20px;
  width: 44px;
  height: 44px;
  animation-delay: 0.5s;
}

.floating-item.chat {
  bottom: 25%;
  left: -10px;
  width: 40px;
  height: 40px;
  animation-delay: 1.2s;
}

/* Central Section Banner Header */
.section-banner-container {
  display: flex;
  justify-content: center;
  margin: 40px 0 50px 0;
  position: relative;
  z-index: 3;
}

.section-banner {
  background: rgba(11, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 14px 34px;
  border-radius: 50px;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.1);
  text-align: center;
}

.section-banner h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.95rem, 3vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.section-banner h2 span.ideal {
  color: var(--color-green);
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.section-banner h2 span.crescimento {
  color: var(--color-lime);
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.3);
}

/* Pricing Grid Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
  position: relative;
  z-index: 3;
}

/* Plan Card Base Styles */
.plan-card {
  background: rgba(11, 15, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 30px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
  z-index: -1;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-8px);
  background: rgba(11, 15, 18, 0.85);
}

/* Featured / Most Sold Ribbon Badge */
.plan-card.featured {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  z-index: 10;
  white-space: nowrap;
}

/* Card Header */
.card-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.plan-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* Glowing Circle Icon */
.plan-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 16px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.plan-icon-wrapper svg {
  width: 32px;
  height: 32px;
  z-index: 2;
}

.plan-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
  z-index: 1;
}

/* Theme variations for header & icon */
/* START PLAN - GREEN */
.plan-card.start-plan {
  border-color: rgba(34, 197, 94, 0.2);
}
.plan-card.start-plan:hover {
  border-color: var(--color-green);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.15);
}
.plan-card.start-plan .plan-name {
  color: var(--color-green);
}
.plan-card.start-plan .plan-icon-wrapper {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.4);
}
.plan-card.start-plan .plan-icon-wrapper svg {
  fill: var(--color-green);
  filter: drop-shadow(0 0 6px var(--color-green));
}
.plan-card.start-plan .plan-icon-wrapper::after {
  background: var(--color-green);
}

/* GROWTH PLAN - BLUE */
.plan-card.growth-plan {
  border-color: rgba(59, 130, 246, 0.2);
}
.plan-card.growth-plan:hover {
  border-color: var(--color-blue);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}
.plan-card.growth-plan .plan-name {
  color: var(--color-blue);
}
.plan-card.growth-plan .plan-icon-wrapper {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.plan-card.growth-plan .plan-icon-wrapper svg {
  fill: var(--color-blue);
  filter: drop-shadow(0 0 6px var(--color-blue));
}
.plan-card.growth-plan .plan-icon-wrapper::after {
  background: var(--color-blue);
}

/* PRO PLAN - GOLD */
.plan-card.pro-plan {
  border-color: rgba(245, 158, 11, 0.2);
}
.plan-card.pro-plan:hover {
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
}
.plan-card.pro-plan .plan-name {
  color: var(--color-gold);
}
.plan-card.pro-plan .plan-icon-wrapper {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.plan-card.pro-plan .plan-icon-wrapper svg {
  fill: var(--color-gold);
  filter: drop-shadow(0 0 6px var(--color-gold));
}
.plan-card.pro-plan .plan-icon-wrapper::after {
  background: var(--color-gold);
}

/* ELITE PLAN - PURPLE */
.plan-card.elite-plan {
  border-color: rgba(168, 85, 247, 0.2);
}
.plan-card.elite-plan:hover {
  border-color: var(--color-purple);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
}
.plan-card.elite-plan .plan-name {
  color: var(--color-purple);
}
.plan-card.elite-plan .plan-icon-wrapper {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
}
.plan-card.elite-plan .plan-icon-wrapper svg {
  fill: var(--color-purple);
  filter: drop-shadow(0 0 6px var(--color-purple));
}
.plan-card.elite-plan .plan-icon-wrapper::after {
  background: var(--color-purple);
}

/* Plan Features List */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.3;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Feature Item SVG Color Overrides based on plan card parent class */
.start-plan .feature-item svg { fill: var(--color-green); }
.growth-plan .feature-item svg { fill: var(--color-blue); }
.pro-plan .feature-item svg { fill: var(--color-gold); }
.elite-plan .feature-item svg { fill: var(--color-purple); }

/* Card Price Section */
.price-container {
  margin-top: auto;
}

.price-button {
  width: 100%;
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: none;
  font-family: var(--font-heading);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-button .value {
  font-size: 1.8rem;
  font-weight: 900;
}

.price-button .period {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* Price button background variants */
.start-plan .price-button {
  background: linear-gradient(135deg, #15803d, #22c55e);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
}
.start-plan .price-button:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.growth-plan .price-button {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}
.growth-plan .price-button:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.pro-plan .price-button {
  background: linear-gradient(135deg, #b45309, #f59e0b);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}
.pro-plan .price-button:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.elite-plan .price-button {
  background: linear-gradient(135deg, #7e22ce, #a855f7);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.2);
}
.elite-plan .price-button:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

/* Trust Badges Grid */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(11, 15, 18, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-bottom: 60px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge-item .icon-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-item .icon-box svg {
  width: 22px;
  height: 22px;
}

/* SVG colors based on nth trust badge to replicate styling colors */
.trust-badge-item:nth-child(1) svg { fill: var(--color-green); }
.trust-badge-item:nth-child(2) svg { fill: var(--color-gold); }
.trust-badge-item:nth-child(3) svg { fill: var(--color-lime); }
.trust-badge-item:nth-child(4) svg { fill: var(--color-blue); }

.trust-badge-item .badge-content {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* Bottom CTA & Pitch Section */
.bottom-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 30px;
  align-items: center;
  background: radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
  padding: 40px 0 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-pitch h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}

.bottom-pitch h3 span.action-text {
  color: var(--color-lime);
  display: block;
}

.bottom-pitch p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Glowing Pulsing WhatsApp Button (REPLACES raw WhatsApp number) */
.whatsapp-cta-container {
  display: flex;
  justify-content: center;
}

.whatsapp-cta-button {
  background: linear-gradient(135deg, #128c7e, #25d366);
  border: none;
  border-radius: var(--border-radius-md);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  animation: buttonPulse 2s infinite alternate;
}

.whatsapp-cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta-button .btn-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-cta-button .btn-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.whatsapp-cta-button .btn-text-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.whatsapp-cta-button .btn-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.whatsapp-cta-button .btn-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* Bottom limit badge card */
.bottom-limit-card {
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-md);
  background: rgba(11, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.bottom-limit-card .card-top {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.bottom-limit-card .card-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 950;
  color: var(--color-gold);
  line-height: 1;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.bottom-limit-card .card-bottom {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bottom-limit-card .card-bottom span {
  color: var(--color-gold);
  display: block;
}

/* Footer Section */
footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer a {
  color: var(--color-lime);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Keyframes Animations */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3), inset 0 0 15px rgba(245, 158, 11, 0.1);
  }
  100% {
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.65), inset 0 0 25px rgba(245, 158, 11, 0.2);
  }
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
    transform: scale(1.02);
  }
}

@keyframes floatEffect {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-12px);
  }
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Entry Transitions */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-item-delay-1 {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.reveal-item-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bottom-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .whatsapp-cta-button {
    margin: 0 auto;
  }
  .bottom-limit-card {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 10px;
    gap: 50px;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subtitles {
    align-items: center;
  }
  .social-icons-row {
    justify-content: center;
  }
  .limit-badge-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 15px !important;
    width: 100% !important;
  }
  .limit-badge {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
  .limit-badge::before {
    top: -6px; left: -6px; right: -6px; bottom: -6px;
  }
  .limit-badge .badge-top {
    font-size: 0.55rem;
    gap: 1px;
  }
  .limit-badge .badge-top svg {
    width: 11px;
    height: 11px;
  }
  .limit-badge .badge-number {
    font-size: 1.8rem;
  }
  .limit-badge .badge-bottom {
    font-size: 0.5rem;
    line-height: 1;
  }
  .floating-stat-card {
    right: 10px;
  }
  .floating-support-badge {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 380px;
    margin: 0 auto 50px auto;
  }
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .section-banner {
    padding: 12px 20px;
  }
}

/* Announcement Banner for PT Region */
.announcement-banner {
  background: linear-gradient(90deg, rgba(6, 9, 10, 0.98) 0%, rgba(13, 27, 18, 0.98) 50%, rgba(6, 9, 10, 0.98) 100%);
  border-bottom: 1.5px solid rgba(34, 197, 94, 0.25);
  padding: 10px 16px;
  text-align: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.banner-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: var(--container-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.mixed-flags {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 44px;
  height: 24px;
}

.flag-badge {
  font-size: 1.25rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.pt-flag {
  left: 0;
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.4));
}

.br-flag {
  right: 0;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(22, 163, 74, 0.4));
}

.banner-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .announcement-banner {
    padding: 12px 14px;
  }
  .banner-text {
    font-size: 0.72rem;
    line-height: 1.3;
  }
}

/* Footer disclaimer */
.footer-disclaimer-text {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.45;
  text-align: center;
  margin: 0 auto 12px auto;
  max-width: 720px;
  line-height: 1.5;
  padding: 0 24px;
  letter-spacing: 0.01em;
  font-family: var(--font-primary);
  font-weight: 400;
}

