/* ============================================
   RESET & VARIÁVEIS
   ============================================ */

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

:root {
  /* Cores principais */
  --primary-color: #00a859;
  --primary-dark: #008a47;
  --secondary-color: #2c5f8d;
  --secondary-dark: #1e4266;

  /* Cores neutras */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Cores de status */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
}

.logo i {
  color: var(--primary-color);
  font-size: 28px;
}

.logo strong {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
}

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

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu-toggle span {
  width: 22px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 168, 89, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(44, 95, 141, 0.08) 0%,
      transparent 50%
    );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 89, 0.1);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn.large {
  padding: 18px 40px;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 8px;
}

/* Hero Mockup */
.hero-image {
  position: relative;
}

.mockup-container {
  position: relative;
  height: 500px;
}

.mockup-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.mockup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.mockup-card i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.mockup-card h4 {
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.card-1 {
  width: 280px;
  top: 0;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  width: 260px;
  top: 120px;
  right: 40px;
  animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
  width: 240px;
  bottom: 0;
  left: 40px;
  animation: float 6s ease-in-out infinite 4s;
}

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

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 10px;
  animation: fillBar 2s ease-out;
}

@keyframes fillBar {
  from {
    width: 0;
  }
}

.mockup-text-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-line {
  height: 10px;
  background: var(--gray-200);
  border-radius: 5px;
}

.text-line.short {
  width: 60%;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.calendar-dot {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 8px;
}

.calendar-dot.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gray-400);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--gray-400);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ============================================
   PROBLEMA + SOLUÇÃO
   ============================================ */

.problem-solution {
  padding: 120px 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-badge.green {
  background: rgba(0, 168, 89, 0.1);
  color: var(--primary-dark);
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.problem-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.problem-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

.problem-card h3 {
  font-size: 22px;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-text .lead {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 32px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 40px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--gray-700);
}

.benefits-list i {
  color: var(--success);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-mockup {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 24px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-mockup::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.solution-mockup i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.solution-mockup img {
  width: 105%;
  height: 105%;
  border-radius: 24px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* ============================================
   SERVIÇOS
   ============================================ */

.services {
  padding: 120px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  color: var(--white);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.95);
}

.service-card.featured .service-features i {
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 168, 89, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--gray-900);
  margin-bottom: 16px;
  font-weight: 700;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  margin-bottom: 12px;
  font-size: 14px;
}

.service-features i {
  color: var(--success);
  font-size: 16px;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.testimonials {
  padding: 120px 0;
  background: var(--white);
}

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

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-100);
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.stars i {
  color: #fcd34d;
  font-size: 20px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.author-info h4 {
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: var(--gray-600);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

/* ============================================
   AUTORIDADE
   ============================================ */

.authority {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.authority-card {
  text-align: center;
  color: var(--white);
}

.authority-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.authority-card:hover .authority-icon {
  transform: scale(1.1) rotate(5deg);
}

.authority-card h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.authority-card p {
  font-size: 16px;
  opacity: 0.95;
}

/* ============================================
   PROCESSO
   ============================================ */

.process {
  padding: 120px 0;
  background: var(--white);
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
}

.process-step:nth-child(even) .step-content:first-child {
  order: 3;
}

.process-step:nth-child(even) .step-number {
  order: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.step-content {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  min-width: 400px;
  max-width: 600px;
  flex: 1;
}

.step-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 168, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 24px;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

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

.final-cta {
  padding: 120px 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(0, 168, 89, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(44, 95, 141, 0.15) 0%,
      transparent 50%
    );
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 20px;
  color: var(--gray-300);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 14px;
}

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

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

.footer {
  background: var(--gray-900);
  padding: 80px 0 32px;
  color: var(--gray-400);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo i {
  color: var(--primary-color);
  font-size: 28px;
}

.footer-logo strong {
  color: var(--primary-color);
}

.footer-col p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-col ul li i {
  color: var(--primary-color);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
}

/* ============================================
   RESPONSIVIDADE GLOBAL - FIX PROCESSO
   ============================================ */

/* Força layout consistente do processo em todas as telas mobile/tablet */
@media (max-width: 1024px) {
  .process-step {
    grid-template-columns: auto 1fr !important;
  }

  /* Número sempre à esquerda */
  .process-step .step-number {
    order: 1 !important;
    grid-column: 1 !important;
  }

  /* Conteúdo sempre à direita */
  .process-step .step-content:last-child {
    order: 2 !important;
    grid-column: 2 !important;
  }

  /* Esconde o primeiro step-content vazio (coluna esquerda em desktop) */
  .process-step .step-content:first-child {
    display: none !important;
  }
}

/* Otimizações globais para todos os smartphones modernos */
@media (max-width: 480px) {
  /* Nav-links como dialog mobile */
  .nav-links {
    position: fixed;
    top: 600%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    flex-direction: column;
    padding: 40px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    min-width: 320px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex !important;
    justify-content: center;
    gap: 8px;
  }

  .nav-links.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    color: var(--gray-700);
  }

  .nav-links a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateX(4px);
  }

  .nav-links a.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    margin-top: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
  }

  .nav-links a.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 89, 0.4);
  }

  .nav-links a::after {
    display: none;
  }

  /* Mobile menu sempre visível */
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Garantir que nenhum conteúdo quebre horizontalmente */
  * {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Hero ocupa 100% da altura - layout vertical completo */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100%;
    min-height: calc(100vh - 120px);
    justify-content: space-evenly;
  }

  /* OCULTAR mockup cards em TODOS os dispositivos mobile */
  .mockup-container {
    display: none !important;
  }

  .mockup-card,
  .card-1,
  .card-2,
  .card-3 {
    display: none !important;
  }

  .hero-image {
    display: none !important;
  }

  /* Ocultar mockup da seção solução */
  .solution-image,
  .solution-mockup {
    display: none !important;
  }

  /* Hero text layout vertical - usa toda a tela */
  .hero-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
    gap: 0;
  }

  .hero-badge {
    margin: 0 0 20px 0;
    font-size: 13px;
    padding: 10px 18px;
  }

  .hero-title {
    margin: 0 0 18px 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-subtitle {
    margin: 0 0 24px 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 36px 0;
  }

  .hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 26px;
    margin: 0;
    padding: 0;
  }

  .stat {
    width: 100%;
    max-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
  }

  .stat-label {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
    font-weight: 500;
  }

  /* Botões sempre com largura total em mobile */
  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Problem-solution centralizado */
  .problem-solution {
    padding: 60px 0;
  }

  .section-header {
    text-align: center;
    padding: 0 16px;
  }

  .section-header h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .section-header p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Solution-text centralizado como hero */
  .solution-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .solution-text {
    text-align: center;
    padding: 0 16px;
    width: 100%;
  }

  .solution-text .section-badge {
    margin: 0 auto 16px;
    display: inline-block;
  }

  .solution-text h2 {
    font-size: 28px;
    line-height: 1.25;
    margin: 0 auto 20px;
    text-align: center;
  }

  .solution-text .lead {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 24px;
  }

  .benefits-list {
    text-align: left;
    margin: 0 auto 28px;
    max-width: 100%;
  }

  /* Grid de serviços sempre em coluna única */
  .services-grid,
  .problem-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer sempre em coluna única */
  .footer-content {
    grid-template-columns: 1fr !important;
  }

  /* Testemunhos com padding adequado */
  .testimonials-carousel {
    padding: 0 5px;
  }

  /* Authority cards responsivas */
  .authority-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

/* ============================================
   MOBILE: Cards ocultos em todos os dispositivos
   ============================================ */

/* ============================================
   RESPONSIVIDADE 2025/2026 - DISPOSITIVOS MAIS VENDIDOS
   ============================================ 
   
   📱 Breakpoints otimizados para os smartphones mais vendidos:
   
   • 440px → iPhone 16 Pro Max (Top 2 mais vendido globalmente)
   • 430px → iPhone 15 Plus (Muito popular)
   • 412px → Samsung Galaxy A55/A16 5G (Séries A mainstream)
   • 402px → iPhone 16 Pro (Top 3 mais vendido)
   • 393px → iPhone 16/15 + Xiaomi Redmi Note (Modelos principais)
   • 384px → Samsung Galaxy S24 Ultra (Top Samsung)
   • 360px → Samsung S24 / Redmi 14C (Padrão global)
   
   ✅ Todos os breakpoints garantem:
   - Layout do processo consistente (números à esquerda)
   - Hero mockup cards bem posicionados
   - Tipografia legível em qualquer tamanho
   - Sem quebras visuais ou sobreposições
*/

/* iPhone 16 Pro Max (440px) - Top 2 mais vendido */
@media (max-width: 440px) and (min-width: 431px) {
  .hero-title {
    font-size: 31px;
    line-height: 1.25;
  }

  /* Cards em coluna também para estes dispositivos */
  .mockup-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mockup-card {
    position: relative !important;
    width: 100% !important;
    max-width: 300px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .card-1,
  .card-2,
  .card-3 {
    display: block;
  }

  .step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }

  .process-timeline::before {
    left: 31px;
  }

  .process-step {
    grid-template-columns: 62px 1fr;
    gap: 16px;
  }
}

/* iPhone 15 Plus (430px) - Muito vendido */
@media (max-width: 430px) and (min-width: 413px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 30px;
  }

  /* Layout em coluna */
  .mockup-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mockup-card {
    position: relative !important;
    width: 100% !important;
    max-width: 300px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
}

/* Galaxy A55/A16 (412px) - Séries A muito populares */
@media (max-width: 412px) and (min-width: 403px) {
  .hero-title {
    font-size: 29px;
  }

  .mockup-container {
    height: 295px;
  }

  .card-1 {
    width: 185px;
  }

  .card-2 {
    width: 168px;
    top: 102px;
  }

  .card-3 {
    width: 158px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
}

/* iPhone 16 Pro (402px) - Top 3 mais vendido */
@media (max-width: 402px) and (min-width: 394px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 29px;
  }

  .mockup-container {
    height: 290px;
  }

  .card-1 {
    width: 182px;
  }

  .card-2 {
    width: 165px;
    top: 100px;
  }

  .card-3 {
    width: 155px;
  }
}

/* iPhone 16 / iPhone 15 / Xiaomi Redmi Note (393px) - Modelos principais */
@media (max-width: 393px) and (min-width: 385px) {
  .hero-title {
    font-size: 28px;
  }

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

  .mockup-container {
    height: 285px;
    max-width: 360px;
  }

  .card-1 {
    width: 178px;
    left: 4%;
  }

  .card-2 {
    width: 162px;
    top: 98px;
    right: 4%;
  }

  .card-3 {
    width: 152px;
    left: 12%;
  }

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

/* Samsung S24 Ultra (384px) - Top Samsung */
@media (max-width: 384px) and (min-width: 361px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 27px;
  }

  .mockup-container {
    height: 275px;
  }

  .card-1 {
    width: 172px;
    left: 3%;
  }

  .card-2 {
    width: 157px;
    top: 96px;
    right: 3%;
  }

  .card-3 {
    width: 147px;
    left: 10%;
  }

  .step-number {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }

  .process-timeline::before {
    left: 29px;
  }

  .process-step {
    grid-template-columns: 58px 1fr;
    gap: 15px;
  }

  .step-content {
    padding: 17px;
  }

  .step-content h3 {
    font-size: 17px;
  }
}

/* Samsung S24 / Redmi 14C (360px) - Padrão global mainstream */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 26px;
  }

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

  .mockup-container {
    height: 265px;
    max-width: 330px;
  }

  .card-1 {
    width: 165px;
    left: 2%;
  }

  .card-2 {
    width: 150px;
    top: 92px;
    right: 2%;
  }

  .card-3 {
    width: 140px;
    left: 8%;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

  .process-timeline::before {
    left: 28px;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .step-content {
    padding: 16px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .step-content h3 {
    font-size: 17px;
  }

  .step-content p {
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Desktop grande (1366px+) */
@media (min-width: 1367px) {
  .container {
    max-width: 1400px;
  }
}

/* Tablets grandes e iPad Pro (1024px - 1366px) */
@media (max-width: 1366px) and (min-width: 1025px) {
  .hero-title {
    font-size: 48px;
  }

  .mockup-container {
    height: 450px;
  }

  .process-timeline {
    max-width: 900px;
  }
}

/* Tablets médios e iPad (821px - 1024px) */
@media (max-width: 1024px) and (min-width: 821px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-content {
    gap: 48px;
  }

  .mockup-container {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-step {
    gap: 28px;
  }

  .step-content {
    min-width: 350px;
    max-width: 500px;
  }

  /* Remove alternância em telas menores */
  .process-step:nth-child(even) .step-content:first-child {
    order: 1;
  }

  .process-step:nth-child(even) .step-number {
    order: 1;
  }
}

/* Tablets pequenos e iPad Mini (768px - 820px) */
@media (max-width: 820px) and (min-width: 769px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-text {
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
  }

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

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

  .mockup-container {
    height: 380px;
    max-width: 600px;
    margin: 0 auto;
  }

  .card-1 {
    width: 260px;
    left: 8%;
  }

  .card-2 {
    width: 240px;
    right: 10%;
  }

  .card-3 {
    width: 220px;
    left: 15%;
  }

  .services-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .process-timeline::before {
    left: 38px;
  }

  .process-step {
    grid-template-columns: 76px 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

  .step-number {
    width: 76px;
    height: 76px;
    font-size: 23px;
  }

  /* Mantém layout consistente: número sempre à esquerda */
  .step-content:nth-child(1) {
    display: none;
  }

  .step-content:nth-child(3) {
    order: 3;
  }

  .step-content {
    min-width: auto;
    max-width: 100%;
    padding: 28px;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .step-content h3 {
    font-size: 22px;
  }

  .step-content p {
    font-size: 16px;
  }
}

/* Mobile grande e phablets (431px - 768px) */
@media (max-width: 768px) and (min-width: 431px) {
  .container {
    padding: 0 24px;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav-links {
    position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    flex-direction: column;
    padding: 40px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    min-width: 320px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex !important;
    justify-content: center;
    gap: 8px;
  }

  .nav-links.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    color: var(--gray-700);
  }

  .nav-links a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateX(4px);
  }

  .nav-links a.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    margin-top: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
  }

  .nav-links a.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 89, 0.4);
  }

  .nav-links a::after {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .stat {
    flex: 1;
    text-align: center;
  }

  .mockup-container {
    height: 320px;
  }

  .card-1 {
    width: 250px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-2 {
    width: 230px;
    top: 110px;
    right: 10px;
    left: auto;
  }

  .card-3 {
    display: none;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 16px;
  }

  .problem-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .problem-card {
    padding: 28px;
  }

  .solution-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-mockup {
    height: 280px;
  }

  .testimonials-carousel {
    padding: 0 10px;
  }

  .testimonial-card {
    padding: 32px 28px;
  }

  .testimonial-text {
    font-size: 17px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-btn.prev {
    left: -10px;
  }

  .carousel-btn.next {
    right: -10px;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-timeline::before {
    left: 40px;
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  /* Layout consistente em desktop pequeno */
  .step-content {
    padding: 24px;
    min-width: auto;
    max-width: 100%;
  }

  .step-content:nth-child(1) {
    display: none;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 17px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   BREAKPOINTS LEGADOS (MANTIDOS POR COMPATIBILIDADE)
   Os novos breakpoints 2025/2026 acima têm prioridade
   ============================================ */

/* Mobile médio - iPhone 14 e similares (415px - 430px) - LEGADO */
@media (max-width: 430px) and (min-width: 415px) {
  .container {
    padding: 0 20px;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a::after {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 0;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-size: 32px;
  }

  .mockup-container {
    height: 320px;
    max-width: 400px;
    margin: 0 auto;
  }

  .mockup-card {
    padding: 18px;
  }

  .mockup-card i {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .mockup-card h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .card-1 {
    width: 200px;
    top: 0;
    left: 5%;
    transform: none;
  }

  .card-2 {
    width: 180px;
    top: 110px;
    right: 5%;
    left: auto;
  }

  .card-3 {
    width: 170px;
    bottom: 10px;
    left: 15%;
    display: block;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
  }

  .problem-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .problem-card {
    padding: 24px;
  }

  .solution-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solution-mockup {
    height: 260px;
  }

  .testimonials-carousel {
    padding: 0 8px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .carousel-btn.prev {
    left: -8px;
  }

  .carousel-btn.next {
    right: -8px;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-timeline::before {
    left: 32px;
  }

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 20px;
    border-width: 3px;
  }

  /* Layout consistente em mobile: número sempre à esquerda, conteúdo à direita */
  .step-content:nth-child(1) {
    display: none;
  }

  .step-content {
    padding: 20px;
    min-width: auto;
    max-width: 100%;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .step-content h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .step-content:nth-child(1) {
    display: none;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn.large {
    padding: 16px 32px;
    font-size: 16px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Mobile médio-grande - iPhone 14 Pro Max, Galaxy S21+ (415px - 430px) */
@media (max-width: 430px) and (min-width: 415px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  .mockup-container {
    height: 300px;
    max-width: 380px;
    margin: 0 auto;
  }

  .mockup-card {
    padding: 16px;
  }

  .mockup-card i {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .mockup-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .card-1 {
    width: 190px;
    left: 5%;
    top: 0;
  }

  .card-2 {
    width: 170px;
    top: 105px;
    right: 5%;
  }

  .card-3 {
    width: 160px;
    bottom: 10px;
    left: 15%;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .service-card,
  .problem-card {
    padding: 22px;
  }

  .step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
    border-width: 3px;
  }

  .process-timeline::before {
    left: 31px;
  }

  .process-step {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .step-content {
    padding: 18px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }
}

/* Mobile médio - iPhone 12/13/14, Galaxy S (391px - 414px) */
@media (max-width: 414px) and (min-width: 391px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 29px;
    line-height: 1.25;
  }

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

  .mockup-container {
    height: 290px;
    max-width: 360px;
    margin: 0 auto;
  }

  .mockup-card {
    padding: 15px;
  }

  .mockup-card i {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .mockup-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .card-1 {
    width: 180px;
    left: 5%;
    top: 0;
  }

  .card-2 {
    width: 165px;
    top: 100px;
    right: 5%;
  }

  .card-3 {
    width: 155px;
    bottom: 10px;
    left: 12%;
  }

  .section-header h2 {
    font-size: 25px;
  }

  .service-card,
  .problem-card {
    padding: 20px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
    border-width: 3px;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .step-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .step-content {
    padding: 18px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }
}

/* Mobile pequeno - iPhone SE, Galaxy pequenos (361px - 390px) */
@media (max-width: 390px) and (min-width: 361px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 27px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn {
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 12px;
  }

  .mockup-container {
    height: 270px;
    max-width: 340px;
    margin: 0 auto;
  }

  .mockup-card {
    padding: 14px;
  }

  .mockup-card i {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .mockup-card h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .card-1 {
    width: 170px;
    left: 3%;
    top: 0;
  }

  .card-2 {
    width: 155px;
    top: 95px;
    right: 3%;
  }

  .card-3 {
    width: 145px;
    bottom: 10px;
    left: 10%;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .service-card,
  .problem-card {
    padding: 20px;
  }

  .service-card h3,
  .problem-card h3 {
    font-size: 20px;
  }

  .solution-mockup {
    height: 240px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .authority-card h3 {
    font-size: 32px;
  }

  .step-number {
    width: 58px;
    height: 58px;
    font-size: 17px;
    border-width: 3px;
  }

  .process-timeline::before {
    left: 29px;
  }

  .process-step {
    grid-template-columns: 58px 1fr;
    gap: 15px;
    margin-bottom: 28px;
  }

  .step-content {
    padding: 16px;
  }

  .step-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
    margin-bottom: 12px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .btn.large {
    padding: 15px 28px;
    font-size: 15px;
  }

  .footer-content {
    gap: 32px;
  }
}

/* Mobile extra pequeno - iPhone SE 1st gen, Galaxy mini (até 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .logo {
    font-size: 20px;
  }

  .logo i {
    font-size: 24px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-content {
    gap: 28px;
    padding: 28px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn {
    padding: 12px 18px;
    font-size: 14px;
    gap: 8px;
  }

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

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

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 13px;
  }

  .mockup-container {
    height: 260px;
    max-width: 320px;
    margin: 0 auto;
  }

  .mockup-card {
    padding: 12px;
  }

  .mockup-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .mockup-card h4 {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .card-1 {
    width: 160px;
    left: 2%;
    top: 0;
  }

  .card-2 {
    width: 145px;
    top: 90px;
    right: 2%;
  }

  .card-3 {
    width: 135px;
    bottom: 10px;
    left: 8%;
  }

  .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }

  .problem-grid,
  .services-grid {
    gap: 16px;
  }

  .service-card,
  .problem-card {
    padding: 18px;
  }

  .service-icon,
  .problem-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .service-card h3,
  .problem-card h3 {
    font-size: 18px;
  }

  .service-card p,
  .problem-card p {
    font-size: 14px;
  }

  .service-features li {
    font-size: 13px;
  }

  .solution-mockup {
    height: 220px;
  }

  .solution-mockup i {
    font-size: 80px;
  }

  .testimonials-carousel {
    padding: 0;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .author-avatar {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .author-info h4 {
    font-size: 16px;
  }

  .author-info p {
    font-size: 13px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .carousel-btn.prev {
    left: -5px;
  }

  .carousel-btn.next {
    right: -5px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .authority-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .authority-card h3 {
    font-size: 28px;
  }

  .authority-card p {
    font-size: 14px;
  }

  .process-timeline::before {
    left: 28px;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 16px;
    border-width: 3px;
  }

  .step-content {
    padding: 16px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .step-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 15px;
  }

  .btn.large {
    padding: 14px 24px;
    font-size: 14px;
  }

  .cta-trust {
    gap: 12px;
  }

  .trust-item {
    font-size: 13px;
  }

  .trust-item i {
    font-size: 18px;
  }

  .footer {
    padding: 60px 0 24px;
  }

  .footer-logo {
    font-size: 20px;
  }

  .footer-logo i {
    font-size: 24px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col ul li {
    font-size: 14px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   OTIMIZAÇÕES PARA TELAS RETINA/ALTA DENSIDADE
   ============================================ */

/* iPhone e Samsung flagship (2x, 3x pixel ratio) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Melhora qualidade de bordas e ícones */
  .mockup-card,
  .service-card,
  .problem-card,
  .testimonial-card {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Ícones mais nítidos */
  i.fas,
  i.fab {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }

  /* Linhas e bordas mais nítidas */
  .step-number,
  .btn {
    transform: translateZ(0);
  }
}

/* Otimizações específicas para iPhone 16 Pro/Max (3x pixel ratio) */
@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
  /* Aumenta sutilmente os tamanhos para melhor legibilidade */
  body {
    font-size: 16px;
  }

  .hero-title {
    letter-spacing: -0.02em;
  }

  /* Melhora sombras para telas de alta densidade */
  .mockup-card {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12),
      0 10px 10px -5px rgba(0, 0, 0, 0.06);
  }
}

/* ============================================
   OTIMIZAÇÕES PARA MODO ESCURO (OPCIONAL)
   ============================================ */

@media (prefers-color-scheme: dark) {
  /* Caso queira adicionar suporte a dark mode no futuro */
  /* Descomente as linhas abaixo quando implementar */

  /*
  :root {
    --primary-color: #00c46a;
    --background: #0f0f0f;
    --text-color: #f0f0f0;
  }
  */
}

/* ============================================
   ACESSIBILIDADE - REDUÇÃO DE MOVIMENTO
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .mockup-card {
    animation: none !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .scroll-indicator,
  .carousel-btn,
  .cta-buttons,
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============================================
   FIM DOS ESTILOS
   ============================================ */
