/* =================================================================
   NEXRUMO - HOME PAGE STYLES
   Estilos específicos para index.html
   ================================================================= */

/* ============================================
   HEADER GLOBAL
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: var(--bg-white);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-2) 0;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  height: 55px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-nav-link {
  font-size: var(--font-body);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  transition: color var(--transition-fast);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) 0;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.header-nav-link:hover {
  color: var(--primary);
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

/* Mobile Menu */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
}

.header-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.header-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.header-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .header {
    height: var(--header-height-mobile);
  }

  .header-nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height-mobile));
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: var(--space-4);
    transition: left var(--transition-base);
    box-shadow: var(--shadow-xl);
  }

  .header-nav.active {
    left: 0;
  }

  .header-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .header-nav-link {
    width: 100%;
    padding: var(--space-3);
    border-bottom: 1px solid var(--border-light);
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-2);
  }

  .header-actions .btn {
    width: 100%;
  }

  .header-menu-toggle {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-top: calc(var(--header-height) + var(--space-15));
  padding-bottom: var(--space-15);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(15, 121, 135, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: var(--fw-semibold);
  color: var(--primary);
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.hero-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-cta-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.hero-cta-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero-cta-icon {
  font-size: 32px;
  margin-bottom: var(--space-2);
}

.hero-cta-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.hero-cta-subtitle {
  font-size: var(--font-small);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  flex-grow: 1;
}

.hero-cta-card .btn {
  margin-top: auto;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-small);
  color: var(--text-secondary);
}

.hero-feature i {
  color: var(--success);
}

.hero-image {
  position: relative;
  max-height: 600px;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height-mobile) + var(--space-8));
    padding-bottom: var(--space-8);
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-ctas {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    max-height: 400px;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--primary);
  color: var(--bg-white);
  padding: var(--space-3) 0;
}

.trust-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-body);
  font-weight: var(--fw-medium);
}

.trust-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

@media (max-width: 768px) {
  .trust-bar-content {
    gap: var(--space-3);
  }

  .trust-item {
    font-size: var(--font-small);
  }

  .trust-separator {
    display: none;
  }
}

/* ============================================
   WHAT IS NEXRUMO SECTION
   ============================================ */

.what-is {
  text-align: center;
}

.what-is h2 {
  margin-bottom: var(--space-2);
}

.what-is-intro {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.what-is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 900px;
  margin: 0 auto;
}

.what-is-card {
  background: var(--bg-white);
  border: 3px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  text-align: center;
}

.what-is-card.highlight {
  border-color: var(--primary);
  background: var(--primary-ultra-light);
}

.what-is-icon {
  font-size: 48px;
  margin-bottom: var(--space-3);
}

.what-is-title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.what-is-features {
  list-style: none;
  text-align: left;
}

.what-is-features li {
  padding: var(--space-1) 0;
  color: var(--text-secondary);
  font-size: var(--font-small);
}

.what-is-explanation {
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  font-size: 18px;
  color: var(--text-secondary);
  font-style: italic;
}

@media (max-width: 768px) {
  .what-is-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   APP FEATURES SECTION
   ============================================ */

.app-features {
  background: var(--bg-white);
}

.app-features h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.app-features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.app-screenshots {
  position: relative;
  max-height: 600px;
  display: flex;
  align-items: center;
}

.screenshot-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.screenshot-item {
  display: none;
  width: 100%;
}

.screenshot-item.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.screenshot-controls {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-1);
}

.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.screenshot-dot.active {
  background: var(--bg-white);
  width: 30px;
  border-radius: var(--radius-full);
}

.app-features-list {
  list-style: none;
}

.app-feature-item {
  display: flex;
  align-items: start;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: 18px;
}

.app-feature-item i {
  color: var(--success);
  font-size: 24px;
  flex-shrink: 0;
}

.app-demo-btn {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .app-features-container {
    grid-template-columns: 1fr;
  }

  .app-screenshots {
    order: -1;
    max-height: 400px;
  }
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */

.differentials {
  text-align: center;
}

.differentials h2 {
  margin-bottom: var(--space-2);
}

.differentials-intro {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto var(--space-8);
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row:first-child {
  background: var(--primary);
  color: var(--bg-white);
  font-weight: var(--fw-bold);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.comparison-cell:first-child {
  border-right: 1px solid var(--border);
}

.comparison-row:first-child .comparison-cell:first-child {
  border-right-color: rgba(255, 255, 255, 0.3);
}

.comparison-row:nth-child(even) {
  background: var(--bg-light);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.differential-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.differential-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.differential-icon {
  font-size: 48px;
  margin-bottom: var(--space-3);
}

.differential-title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.differential-description {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: var(--font-small);
  }

  .comparison-cell {
    padding: var(--space-2);
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */

.pain-points {
  background: var(--bg-white);
}

.pain-points h2 {
  text-align: center;
  margin-bottom: var(--space-6);
}

.persona-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.persona-toggle .btn {
  min-width: 200px;
}

.persona-toggle .btn.active {
  background: var(--primary);
  color: var(--bg-white);
}

.pain-content {
  display: none;
}

.pain-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.pain-list {
  max-width: 900px;
  margin: 0 auto;
}

.pain-item {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
}

.pain-problem {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--error);
  grid-column: 1 / -1;
}

.pain-solution {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 18px;
  color: var(--success);
  grid-column: 1 / -1;
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .persona-toggle .btn {
    min-width: auto;
    flex: 1;
  }
}

/* ============================================
   USE CASES SECTION
   ============================================ */

.use-cases {
  text-align: center;
}

.use-cases h2 {
  margin-bottom: var(--space-8);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.use-case-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.use-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.use-case-icon {
  font-size: 48px;
  margin-bottom: var(--space-3);
  color: var(--primary);
}

.use-case-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.use-case-description {
  font-size: var(--font-small);
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  background: var(--bg-white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.testimonials-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-3));
  scroll-snap-align: start;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-ultra-light);
}

.testimonial-quote {
  font-size: 18px;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-name {
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: var(--font-small);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.testimonial-rating {
  color: var(--warning);
  font-size: 18px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.testimonials-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testimonials-nav button:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* ============================================
   PLANS PREVIEW SECTION
   ============================================ */

.plans-preview {
  text-align: center;
}

.plans-preview h2 {
  margin-bottom: var(--space-8);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 1000px;
  margin: 0 auto var(--space-6);
}

.plan-card {
  background: var(--bg-white);
  border: 3px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  position: relative;
  transition: all var(--transition-base);
}

.plan-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured:hover {
  transform: translateY(-8px) scale(1.07);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-weight: var(--fw-semibold);
}

.plan-name {
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.plan-price {
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  margin-bottom: var(--space-1);
}

.plan-price-period {
  font-size: var(--font-small);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.plan-for {
  font-size: var(--font-small);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-4);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--font-small);
  color: var(--text-secondary);
}

.plan-features i {
  color: var(--success);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: scale(1);
  }
}

/* ============================================
   ROI CALCULATOR SECTION
   ============================================ */

.roi-calculator {
  background: var(--bg-white);
}

.roi-calculator h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.calculator-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.calculator-input-group {
  margin-bottom: var(--space-5);
}

.calculator-input-group label {
  display: block;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.calculator-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-lg);
}

.calculator-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.calculator-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-lg);
}

.calculator-value {
  text-align: center;
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  margin-top: var(--space-2);
}

.calculator-result {
  background: var(--bg-white);
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  margin-top: var(--space-5);
}

.calculator-result-title {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.calculator-result-value {
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--success);
  margin-bottom: var(--space-1);
}

.calculator-result-subtitle {
  font-size: var(--font-small);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background: var(--bg-light);
}

.faq h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-4);
  text-align: left;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question.active {
  background: var(--primary-ultra-light);
  color: var(--primary-dark);
}

.faq-icon {
  font-size: 24px;
  transition: transform var(--transition-base);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

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

.faq-answer-content {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-link {
  text-align: center;
  margin-top: var(--space-6);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
  background: var(--gradient-primary);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--bg-white);
  margin-bottom: var(--space-3);
}

.final-cta-description {
  font-size: 20px;
  margin-bottom: var(--space-6);
  color: var(--bg-white);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.final-cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-size: var(--font-small);
}

.final-cta-features p {
  color: var(--bg-white);
  margin: 0;
}

.final-cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--bg-white);
}

.final-cta-feature i {
  color: var(--bg-white);
}

@media (max-width: 768px) {
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-dark);
  color: var(--bg-white);
  padding: var(--space-10) 0 var(--space-4);
}

.footer a {
  color: var(--bg-white);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--bg-white);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-3);
}

.footer-description {
  font-size: var(--font-small);
  line-height: 1.8;
  margin-bottom: var(--space-3);
  color: var(--bg-white);
}

.footer-column h4 {
  color: var(--bg-white);
  font-size: 18px;
  margin-bottom: var(--space-3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  font-size: var(--font-small);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: var(--font-small);
  color: var(--bg-white);
}

.footer-contact i {
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-copyright {
  font-size: var(--font-small);
}

.footer-legal {
  display: flex;
  gap: var(--space-3);
  font-size: var(--font-small);
}

.footer-badges {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.footer-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: var(--font-tiny);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: var(--space-2);
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i,
.whatsapp-float svg {
  color: var(--bg-white) !important;
  fill: var(--bg-white) !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
}

/* ============================================
   EXCLUSIVE BENEFITS SECTION - LAYOUT VERTICAL
   Cards dispostos um abaixo do outro com bom espaçamento
   ============================================ */

.exclusive-benefits {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.exclusive-benefits::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 121, 135, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.exclusive-benefits::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.exclusive-benefits h2 {
  text-align: center;
  margin-bottom: var(--space-2);
}

.benefits-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* NOVO: Grid Vertical - Um card abaixo do outro */
.benefits-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}

/* ============================================
   BENEFIT CARDS - LAYOUT COMPACTO
   ============================================ */

.benefit-card {
  background: var(--bg-white);
  border: 3px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

/* Header do Card - Layout Horizontal Compacto */
.benefit-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: start;
  margin-bottom: var(--space-4);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.benefit-icon.clube {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}

.benefit-icon.indicacao {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(15, 121, 135, 0.25);
}

.benefit-header-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.benefit-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   CLUBE DE BENEFÍCIOS - ELEMENTOS ESPECÍFICOS
   ============================================ */

.benefit-highlight {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 152, 0, 0.04) 100%);
  border: 2px solid rgba(255, 193, 7, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  text-align: center;
  min-width: 140px;
}

.highlight-number {
  font-size: 32px;
  font-weight: var(--fw-bold);
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 2px;
}

.highlight-text {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  line-height: 1.2;
}

.benefit-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.category-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: var(--fw-medium);
  transition: all var(--transition-fast);
}

.category-item:hover {
  background: var(--primary-ultra-light);
  transform: translateX(2px);
}

.category-item i {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-impact {
  display: flex;
  align-items: start;
  gap: var(--space-2);
  padding: var(--space-2);
  background: rgba(76, 175, 80, 0.08);
  border-left: 3px solid var(--success);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.benefit-impact i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 18px;
}

/* ============================================
   PROGRAMA DE INDICAÇÃO - ELEMENTOS ESPECÍFICOS
   ============================================ */

/* Container Grid: Tiers e Examples lado a lado */
.indication-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.indication-tiers {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tier-item {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  transition: all var(--transition-base);
}

.tier-item.featured {
  border-color: var(--primary);
  background: var(--primary-ultra-light);
}

.tier-item:hover {
  box-shadow: var(--shadow-sm);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.tier-period {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-discount {
  font-size: 28px;
  font-weight: var(--fw-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tier-description {
  font-size: 12px;
  color: var(--text-muted);
}

.tier-divider {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.tier-divider i {
  color: var(--primary);
  font-size: 20px;
}

/* Exemplos de Indicação */
.indication-examples {
  background: linear-gradient(135deg, rgba(15, 121, 135, 0.05) 0%, rgba(15, 121, 135, 0.02) 100%);
  border: 2px solid rgba(15, 121, 135, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.example-title {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.example-title i {
  color: var(--primary);
  font-size: 16px;
}

.example-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px var(--space-2);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.example-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.example-item.highlight {
  border: 2px solid var(--primary);
  background: var(--primary-ultra-light);
}

.example-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.example-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.example-text strong {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

.example-text span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Processo de Indicação */
.indication-process {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
}

.process-title {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: var(--fw-bold);
}

.step-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.process-arrow {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 18px;
}

/* ============================================
   FOOTER DA SEÇÃO
   ============================================ */

.benefits-footer {
  text-align: center;
  padding: var(--space-5);
  background: var(--bg-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.benefits-footer .footer-icon {
  margin-bottom: var(--space-2);
}

.benefits-footer .footer-icon i {
  color: var(--success);
  font-size: 32px;
}

.benefits-footer p {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0;
}

.benefits-footer strong {
  color: var(--primary);
  font-weight: var(--fw-bold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .benefit-categories {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .benefits-grid-vertical {
    gap: var(--space-4);
  }

  .benefit-card {
    padding: var(--space-4);
  }

  .benefit-header {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .benefit-highlight {
    margin-top: var(--space-2);
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-description {
    font-size: 14px;
  }

  .highlight-number {
    font-size: 28px;
  }

  .tier-discount {
    font-size: 24px;
  }

  .example-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .benefits-intro {
    font-size: 16px;
  }

  .benefits-footer p {
    font-size: 14px;
  }

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

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

@media (max-width: 480px) {
  .benefit-categories {
    grid-template-columns: 1fr;
    font-size: 13px;
  }

  .category-item {
    padding: 8px var(--space-2);
  }

  .category-item i {
    font-size: 16px;
  }

  .example-list {
    gap: 8px;
  }

  .process-step {
    gap: 6px;
  }

  .step-text {
    font-size: 10px;
  }
}

/* ============================================
   REMOTE BLOCK SECTION - BLOQUEIO REMOTO
   ============================================ */

.remote-block-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.remote-block-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.remote-block-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-8);
    align-items: center;
    position: relative;
    z-index: 1;
}

.remote-block-text {
    padding-right: var(--space-4);
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: var(--font-small);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-4);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.security-badge i {
    width: 18px;
    height: 18px;
}

.remote-block-section h2 {
    color: var(--bg-white);
    margin-bottom: var(--space-3);
    font-size: 36px;
    line-height: 1.2;
}

.remote-block-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.remote-block-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.rb-feature {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.rb-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rb-feature:hover .rb-feature-icon {
    background: rgba(233, 69, 96, 0.3);
    border-color: #e94560;
    transform: scale(1.05);
}

.rb-feature-icon i {
    width: 22px;
    height: 22px;
    color: #e94560;
}

.rb-feature-content h4 {
    font-size: 15px;
    margin-bottom: var(--space-1);
    color: var(--bg-white);
    font-weight: var(--fw-semibold);
}

.rb-feature-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Stats do Bloqueio Remoto */
.remote-block-stats {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rb-stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex: 1;
}

.rb-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-stat-icon i {
    width: 20px;
    height: 20px;
    color: #e94560;
}

.rb-stat-info {
    display: flex;
    flex-direction: column;
}

.rb-stat-number {
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--bg-white);
    font-family: var(--font-heading);
}

.rb-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Mockup Visual */
.remote-block-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e3a5f 0%, #16213e 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.block-demo {
    width: 100%;
    text-align: center;
}

.block-demo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-demo-header i {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.block-demo-header span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--fw-medium);
}

.block-demo-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    animation: pulse-glow 2s infinite;
}

.block-demo-status.blocked {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
    border: 2px solid #e94560;
}

.block-demo-status i {
    width: 28px;
    height: 28px;
    color: #e94560;
}

.block-demo-status span {
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: #e94560;
    letter-spacing: 1px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
    }
}

.block-demo-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.block-demo-location i {
    width: 14px;
    height: 14px;
}

.block-demo-actions {
    display: flex;
    gap: var(--space-2);
}

.demo-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn i {
    width: 16px;
    height: 16px;
}

.demo-btn.unlock {
    background: #10b981;
    color: white;
}

.demo-btn.unlock:hover {
    background: #059669;
}

.demo-btn.history {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-btn.history:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Responsivo Bloqueio Remoto */
@media (max-width: 1024px) {
    .remote-block-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .remote-block-text {
        padding-right: 0;
        text-align: center;
    }
    
    .remote-block-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .rb-feature {
        text-align: left;
    }
    
    .remote-block-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .rb-stat {
        flex: 0 0 auto;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .remote-block-section h2 {
        font-size: 28px;
    }
    
    .remote-block-subtitle {
        font-size: 16px;
    }
    
    .remote-block-stats {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .rb-stat {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }
    
    .phone-screen {
        border-radius: 24px;
    }
}
/* ============================================
   PÁGINA SOBRE - AJUSTES
   ============================================ */

/* Wrapper responsivo para o iframe do mapa */
.map-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Aspect Ratio 16:9 */
    border-radius: var(--radius-lg);
    background: var(--border-light);
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ajuste específico para o layout de colunas da página Sobre */
@media (max-width: 992px) {
    /* Força quebra de linha nas colunas de texto/mapa */
    .row { 
        flex-direction: column;
    }
    
    .col {
        width: 100%;
        margin-bottom: var(--space-4);
    }
    
    /* Ajuste altura do mapa no mobile se não usar o wrapper */
    iframe {
        min-height: 300px;
    }
}
/* =================================================================
   ESTILOS PÁGINA OBRIGADO & AJUSTES GERAIS
   (Adicionar ao final do arquivo)
   ================================================================= */

/* 1. Página Obrigado - Ícone de Sucesso */
.success-icon {
    width: 120px;
    height: 120px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.success-icon svg {
    color: white;
    width: 64px;
    height: 64px;
}

/* 2. Página Obrigado - Card de Informações Importantes */
.transparency-info {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-top: var(--space-5);
    text-align: left;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.transparency-info h3 {
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.transparency-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
}

.transparency-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-small);
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
}

.transparency-item i {
    color: var(--success);
}

/* 3. Página Obrigado - Card de Redes Sociais (Fundo Colorido) */
.social-cta {
    margin-top: var(--space-6);
    padding: var(--space-6);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.social-cta h3 {
    color: white !important;
}

.social-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link-btn:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-footer-text {
    margin-top: var(--space-4);
    font-size: var(--font-small);
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0;
}
/* =================================================================
   ATUALIZAÇÃO: SEÇÃO TRANSPARÊNCIA (DESIGN PREMIUM)
   ================================================================= */

.transparencia-planos {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.transparencia-wrapper {
    background: var(--primary-dark); /* Fundo escuro institucional */
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.05) 0%, transparent 40%);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

/* Badge decorativa */
.transparencia-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--font-small);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-4);
    color: var(--success);
}

.transparencia-badge i {
    width: 16px;
    height: 16px;
}

.transparencia-header h2 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: var(--space-3);
}

.transparencia-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

/* Grid de Cards */
.transparencia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.transp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: all var(--transition-base);
    text-align: left;
}

.transp-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.transp-icon {
    width: 32px;
    height: 32px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 212, 170, 0.3);
}

.transp-icon i {
    color: var(--primary-dark);
    width: 18px;
    height: 18px;
    stroke-width: 3px;
}

.transp-card span {
    font-weight: var(--fw-medium);
    font-size: 16px;
    color: var(--bg-white);
}

/* Responsividade */
@media (max-width: 992px) {
    .transparencia-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .transparencia-grid {
        grid-template-columns: 1fr;
    }
    
    .transparencia-wrapper {
        padding: var(--space-6) var(--space-4);
    }
    
    .transparencia-header h2 {
        font-size: 26px;
    }
}