/* ============================================
   AMAPA HOMEPAGE REDESIGN - MODERN & PROFESSIONAL
   ============================================ */

/* Modern CSS Reset & Base */
*,::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --amapa-orange: #BA411A;
  --amapa-orange-light: #D65A33;
  --amapa-orange-dark: #9A3515;
  
  /* Neutral Colors */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #10B981;
  --info: #3B82F6;
  --warning: #F59E0B;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====================
   HERO SECTION - MODERN
   ==================== */

.hero-modern {
  position: relative;
  background: linear-gradient(135deg, #FFF 0%, var(--gray-50) 100%);
  padding: 140px 20px 80px;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amapa-orange);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: slideInLeft 0.6s ease-out;
}

.badge-icon {
  font-size: 1.125rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--gray-900);
  animation: slideInLeft 0.6s ease-out 0.1s backwards;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  animation: slideInLeft 0.6s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: slideInLeft 0.6s ease-out 0.3s backwards;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amapa-orange);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--gray-900);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--gray-200);
}

.btn-secondary-large:hover {
  border-color: var(--amapa-orange);
  color: var(--amapa-orange);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  animation: slideInLeft 0.6s ease-out 0.4s backwards;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amapa-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.hero-regions {
  animation: slideInLeft 0.6s ease-out 0.5s backwards;
}

.regions-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-weight: 500;
}

.regions-flags {
  display: flex;
  gap: 12px;
  align-items: center;
}

.regions-flags img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.regions-flags img:hover {
  transform: scale(1.1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease-out 0.3s backwards;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-mockup img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-1 {
  width: 400px;
  height: 400px;
  background: var(--amapa-orange);
  top: -100px;
  right: -100px;
}

.hero-decoration-2 {
  width: 300px;
  height: 300px;
  background: var(--info);
  bottom: -80px;
  left: -80px;
  animation-delay: -3s;
}

/* ====================
   SOCIAL PROOF SECTION
   ==================== */

.social-proof {
  background: white;
  padding: 48px 20px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

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

.social-proof-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.media-logos a {
  display: block;
  transition: transform var(--transition-base);
}

.media-logos a:hover {
  transform: scale(1.05);
}

.media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.media-logos a:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ====================
   HOW IT WORKS SECTION
   ==================== */

.how-it-works {
  padding: var(--space-3xl) 20px;
  background: white;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
}

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

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--amapa-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  line-height: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

.features-modern {
  padding: var(--space-3xl) 20px;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

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

.feature-card-highlight {
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-light) 100%);
  color: white;
  border: none;
}

.feature-card-highlight .feature-title,
.feature-card-highlight .feature-description,
.feature-card-highlight .feature-list {
  color: white;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.feature-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.125rem;
}

.feature-card-highlight .feature-list li::before {
  color: white;
}

/* ====================
   WHY CHOOSE US
   ==================== */

.why-choose-us {
  padding: var(--space-3xl) 20px;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: var(--space-2xl) auto 0;
}

.why-item {
  text-align: center;
  padding: 32px 24px;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  transition: all var(--transition-base);
}

.why-item:hover .why-icon {
  background: var(--amapa-orange);
  transform: scale(1.1);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.why-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ====================
   CATEGORIES SECTION
   ==================== */

.categories-section {
  padding: var(--space-3xl) 20px;
  background: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: var(--space-2xl) auto;
}

.category-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  border-color: var(--amapa-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.category-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.categories-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ====================
   CTA SECTIONS
   ==================== */

.cta-banner {
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-dark) 100%);
  padding: var(--space-2xl) 20px;
  text-align: center;
  color: white;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-text {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

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

.btn-cta-white {
  background: white;
  color: var(--amapa-orange);
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-outline:hover {
  background: white;
  color: var(--amapa-orange);
}

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

.testimonials-section {
  padding: var(--space-3xl) 20px;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: var(--space-2xl) auto 0;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amapa-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.125rem;
}

/* ====================
   APP DOWNLOAD SECTION
   ==================== */

.app-download-section {
  padding: var(--space-3xl) 20px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  color: white;
}

.app-download-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-download-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.app-download-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0.9;
}

.app-download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-button {
  display: inline-block;
  transition: transform var(--transition-base);
}

.app-store-button:hover {
  transform: scale(1.05);
}

.app-store-button img {
  height: 56px;
  width: auto;
}

.app-download-visual img {
  max-width: 100%;
  height: auto;
}

/* ====================
   ANIMATIONS
   ==================== */

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

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

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

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

@media (max-width: 1024px) {
  .hero-container,
  .app-download-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .phone-mockup img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-trust {
    gap: 16px;
    justify-content: space-between;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
  
  .trust-label {
    font-size: 0.75rem;
  }
  
  .trust-divider {
    height: 30px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }
  
  .media-logos {
    gap: 24px;
  }
  
  .media-logos img {
    height: 32px;
  }
  
  .steps-grid,
  .features-grid,
  .why-grid,
  .categories-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .cta-banner-buttons {
    flex-direction: column;
  }
  
  .btn-cta-white,
  .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-modern {
    padding: 80px 16px 40px;
  }
  
  .hero-badge {
    font-size: 0.8125rem;
    padding: 6px 12px;
  }
  
  .regions-flags img {
    width: 40px;
    height: 40px;
  }
  
  .step-card,
  .feature-card,
  .why-item {
    padding: 32px 24px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amapa-orange);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: slideInLeft 0.6s ease-out;
}

.badge-icon {
  font-size: 1.125rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--gray-900);
  animation: slideInLeft 0.6s ease-out 0.1s backwards;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  animation: slideInLeft 0.6s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: slideInLeft 0.6s ease-out 0.3s backwards;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amapa-orange);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--gray-900);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--gray-200);
}

.btn-secondary-large:hover {
  border-color: var(--amapa-orange);
  color: var(--amapa-orange);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  animation: slideInLeft 0.6s ease-out 0.4s backwards;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amapa-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.hero-regions {
  animation: slideInLeft 0.6s ease-out 0.5s backwards;
}

.regions-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-weight: 500;
}

.regions-flags {
  display: flex;
  gap: 12px;
  align-items: center;
}

.regions-flags img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.regions-flags img:hover {
  transform: scale(1.1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease-out 0.3s backwards;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-mockup img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-1 {
  width: 400px;
  height: 400px;
  background: var(--amapa-orange);
  top: -100px;
  right: -100px;
}

.hero-decoration-2 {
  width: 300px;
  height: 300px;
  background: var(--info);
  bottom: -80px;
  left: -80px;
  animation-delay: -3s;
}

/* ====================
   SOCIAL PROOF SECTION
   ==================== */

.social-proof {
  background: white;
  padding: 48px 20px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

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

.social-proof-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.media-logos a {
  display: block;
  transition: transform var(--transition-base);
}

.media-logos a:hover {
  transform: scale(1.05);
}

.media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.media-logos a:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ====================
   HOW IT WORKS SECTION
   ==================== */

.how-it-works {
  padding: var(--space-3xl) 20px;
  background: white;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
}

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

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--amapa-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  line-height: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

.features-modern {
  padding: var(--space-3xl) 20px;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

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

.feature-card-highlight {
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-light) 100%);
  color: white;
  border: none;
}

.feature-card-highlight .feature-title,
.feature-card-highlight .feature-description,
.feature-card-highlight .feature-list {
  color: white;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.feature-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.125rem;
}

.feature-card-highlight .feature-list li::before {
  color: white;
}

/* ====================
   ANIMATIONS
   ==================== */

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

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

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

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

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .phone-mockup img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 80px 20px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-trust {
    gap: 16px;
    justify-content: space-between;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
  
  .trust-label {
    font-size: 0.75rem;
  }
  
  .trust-divider {
    height: 30px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }
  
  .media-logos {
    gap: 24px;
  }
  
  .media-logos img {
    height: 32px;
  }
  
  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .hero-modern {
    padding: 60px 16px 40px;
  }
  
  .hero-badge {
    font-size: 0.8125rem;
    padding: 6px 12px;
  }
  
  .regions-flags img {
    width: 40px;
    height: 40px;
  }
  
  .step-card,
  .feature-card {
    padding: 32px 24px;
  }
}
