/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Easy to modify */
  --color-primary: #16C64F;
  --color-primary-dark: #008440;
  --color-secondary: #2F473F;
  --color-accent: #FBF7EA;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-light: #F8F9FA;
  --color-gray: #6C757D;
  --color-gray-dark: #343A40;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --gradient-text: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.grid {
  display: grid;
  gap: var(--spacing-xl);
}

.section {
  padding: var(--spacing-4xl) 0;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

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

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(22, 198, 79, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(22, 198, 79, 0.2);
}

.btn--ghost:hover {
  background: rgba(22, 198, 79, 0.2);
  transform: translateY(-2px);
}

.btn--large {
  padding: clamp(0.9rem, 2vh, 1.2rem) clamp(1.8rem, 3.5vw, 2.5rem);
  font-size: clamp(0.95rem, 1.8vh, 1.125rem);
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 198, 79, 0.1);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__brand {
  max-height: 50px;
  width: auto;
}

.nav__logo-icon {
  font-size: var(--font-size-2xl);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  list-style: none;
}

.nav__link {
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: color var(--transition-normal);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--color-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: var(--font-size-xl);
  cursor: pointer;
  color: var(--color-primary);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: clamp(1.5rem, 3vh, 2rem);
  background: linear-gradient(180deg, #FAFFFE 0%, rgba(22, 198, 79, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(22, 198, 79, 0.08) 0%, transparent 70%);
  animation: gradientMove 20s ease infinite;
  z-index: 1;
}

@keyframes gradientMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

.hero__container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: clamp(2.5rem, 6vw, 5rem);
  height: auto;
  max-height: none;
  padding-bottom: 0;
}

.hero__content {
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: clamp(2rem, 4vh, 3rem) 0;
}

/* Enhanced Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.6rem);
  padding: clamp(0.5rem, 1.3vh, 0.65rem) clamp(1.2rem, 2.8vw, 2rem);
  background: linear-gradient(135deg, rgba(22, 198, 79, 0.1) 0%, rgba(22, 198, 79, 0.05) 100%);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: clamp(0.7rem, 1.4vh, 0.813rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: clamp(1.5rem, 3vh, 2.2rem);
  border: 1px solid rgba(22, 198, 79, 0.3);
  backdrop-filter: blur(10px);
  animation: badge-pulse 3s ease-in-out infinite;
  white-space: nowrap;
  max-width: fit-content;
}

.badge__dot {
  width: 7px;
  height: 7px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(22, 198, 79, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(22, 198, 79, 0);
  }
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Enhanced Title */
.hero__title {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vh, 2.2rem);
  color: var(--color-secondary);
  letter-spacing: -0.02em;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__title .text-gradient {
  white-space: normal;
}

.hero__description {
  font-size: clamp(0.95rem, 1.7vh, 1.05rem);
  color: #4A5568;
  margin-bottom: clamp(2rem, 3.5vh, 2.5rem);
  line-height: 1.7;
  max-width: 100%;
}

/* Launch Badge Section */
.hero__launch-badge {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  padding: clamp(1.2rem, 2.5vh, 1.8rem) clamp(1.8rem, 3.5vw, 2.5rem);
  background: linear-gradient(135deg, rgba(22, 198, 79, 0.08) 0%, rgba(22, 198, 79, 0.03) 100%);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(22, 198, 79, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero__launch-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(22, 198, 79, 0.08) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.launch-badge__icon {
  width: clamp(48px, 8vh, 60px);
  height: clamp(48px, 8vh, 60px);
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(22, 198, 79, 0.25);
}

.launch-badge__icon i {
  font-size: clamp(1.5rem, 3vh, 1.85rem);
  color: white;
}

.launch-badge__content {
  flex: 1;
}

.launch-badge__title {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 4px;
}

.launch-badge__title i {
  font-size: clamp(0.6rem, 1.2vh, 0.7rem);
  color: #FFB800;
}

.launch-badge__heading {
  font-size: clamp(1rem, 2vh, 1.2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: 2px;
  line-height: 1.2;
}

.launch-badge__text {
  font-size: clamp(0.813rem, 1.6vh, 0.938rem);
  color: var(--color-gray);
  margin: 0;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

/* Enhanced Actions */
.hero__actions {
  display: flex;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: clamp(2.5rem, 4.5vh, 3.5rem);
  flex-wrap: wrap;
}

.btn--pulse {
  position: relative;
  overflow: visible;
}

.btn--pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  background: inherit;
  opacity: 0;
  animation: button-pulse 2s ease-in-out infinite;
}

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

/* Trust Badges */
.hero__trust-badges {
  display: flex;
  gap: clamp(2rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.85rem);
  font-size: clamp(0.75rem, 1.4vh, 0.875rem);
  color: var(--color-gray);
  font-weight: var(--font-weight-medium);
}

.trust-badge i {
  color: var(--color-primary);
  font-size: clamp(1rem, 1.9vh, 1.2rem);
}

/* Enhanced Image Section */
.hero__image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vh, 3rem) 0;
}

.hero__image-container {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 300px);
}

.image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 198, 79, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 300px);
  object-fit: contain;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Enhanced Floating Cards */
.hero__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1rem);
  padding: clamp(0.8rem, 1.5vh, 1.2rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 4s ease-in-out infinite;
  min-width: clamp(180px, 20vw, 220px);
}

.hero__floating-card--1 {
  top: 20%;
  left: -8%;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  bottom: 25%;
  right: -8%;
  animation-delay: 2s;
}

.floating-card__icon {
  width: clamp(36px, 6vh, 48px);
  height: clamp(36px, 6vh, 48px);
  background: linear-gradient(135deg, #16C64F 0%, #12A642 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card__icon.warning {
  background: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
}

.floating-card__icon i {
  font-size: clamp(1rem, 2vh, 1.25rem);
  color: white;
}

.floating-card__content {
  flex: 1;
}

.card__title {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  font-size: clamp(0.85rem, 1.6vh, 1rem);
  margin-bottom: 2px;
}

.card__subtitle {
  display: block;
  font-size: clamp(0.7rem, 1.3vh, 0.875rem);
  color: var(--color-gray);
}

.floating-card__status {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card__status.success {
  background: rgba(22, 198, 79, 0.1);
  color: var(--color-primary);
}

/* Mini Stats Card */
.stats-mini {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  width: 100%;
}

.stat-item {
  flex: 1;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-gray);
}

.stat-chart {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.3;
}

/* Stats Bar */
.hero__stats-bar {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: auto;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(22, 198, 79, 0.1);
  align-self: stretch;
}

.stats-bar__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  padding: clamp(1.5rem, 3vh, 2rem) clamp(2rem, 4vw, 3rem);
}

.stats-bar__content .stat-item {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  padding: clamp(0.8rem, 1.8vh, 1.2rem);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}

.stats-bar__content .stat-item:hover {
  background: rgba(22, 198, 79, 0.05);
  transform: translateY(-2px);
}

.stat-icon {
  width: clamp(48px, 8vh, 64px);
  height: clamp(48px, 8vh, 64px);
  background: linear-gradient(135deg, rgba(22, 198, 79, 0.1) 0%, rgba(22, 198, 79, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: clamp(1.3rem, 2.5vh, 1.65rem);
  color: var(--color-primary);
}

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

.stat-number {
  font-size: clamp(1.3rem, 2.8vh, 1.9rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-text {
  font-size: clamp(0.813rem, 1.6vh, 0.938rem);
  color: var(--color-gray);
}

/* ===== SECTION HEADERS ===== */
.section__header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section__subtitle {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(22, 198, 79, 0.1);
  color: var(--color-primary);
  border-radius: var(--border-radius-xl);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(22, 198, 79, 0.2);
}

.section__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  color: var(--color-secondary);
}

.section__description {
  font-size: var(--font-size-lg);
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURES SECTION ===== */
.features {
  background: white;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(22, 198, 79, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.features__grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

/* Grid específico para 3 colunas */
.features__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto;
}

.feature__card {
  padding: var(--spacing-3xl);
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(22, 198, 79, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(22, 198, 79, 0.15);
  border-color: rgba(22, 198, 79, 0.2);
}

.feature__card:hover::before {
  transform: scaleX(1);
}

/* Highlight card */
.feature__card--highlight {
  background: linear-gradient(135deg, rgba(22, 198, 79, 0.03) 0%, white 100%);
  border: 2px solid rgba(22, 198, 79, 0.2);
}

.feature__badge {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  background: var(--gradient-primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature__icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-xl);
}

.feature__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature__card:hover .feature__icon {
  transform: scale(1.05) rotate(-3deg);
}

.feature__icon-bg {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(22, 198, 79, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature__card:hover .feature__icon-bg {
  opacity: 1;
}

.feature__icon i {
  font-size: 2rem;
  color: white;
}

.feature__title {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  min-height: 70px;
}

.feature__description {
  color: #4A5568;
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.feature__list {
  list-style: none;
  margin-bottom: var(--spacing-xl);
}

.feature__list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-base);
  color: var(--color-gray-dark);
  line-height: 1.5;
}

.list-icon {
  width: 24px;
  height: 24px;
  background: rgba(22, 198, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature__card:hover .list-icon {
  background: rgba(22, 198, 79, 0.2);
  transform: scale(1.1);
}

.list-icon i {
  color: var(--color-primary);
  font-size: 0.75rem;
}

.feature__link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  padding: var(--spacing-sm) 0;
  margin-top: auto;
}

.feature__link:hover {
  gap: var(--spacing-md);
}

.feature__link i {
  transition: transform 0.3s ease;
}

.feature__link:hover i {
  transform: translateX(4px);
}

/* Features CTA */
.features__cta {
  margin-top: var(--spacing-4xl);
}

.cta-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 24px;
  padding: var(--spacing-4xl) var(--spacing-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(22, 198, 79, 0.3);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card__content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.cta-card h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.cta-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.cta-card .btn {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--color-primary);
  flex-shrink: 0;
}

.cta-card .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  background: linear-gradient(180deg, rgba(22, 198, 79, 0.02) 0%, white 50%, rgba(22, 198, 79, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 198, 79, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.workflow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-2xl) 0;
}

.workflow__line {
  position: absolute;
  left: 60px;
  top: 80px;
  bottom: 80px;
  width: 3px;
  background: linear-gradient(180deg, 
    var(--color-primary) 0%, 
    var(--color-primary) 20%,
    rgba(22, 198, 79, 0.3) 50%,
    var(--color-primary) 80%,
    var(--color-primary) 100%
  );
  z-index: 1;
}

.workflow__line::before,
.workflow__line::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 198, 79, 0.2);
}

.workflow__line::before {
  top: -6px;
}

.workflow__line::after {
  bottom: -6px;
}

.workflow__step {
  position: relative;
  display: flex;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-4xl);
  z-index: 2;
}

.workflow__step:last-child {
  margin-bottom: 0;
}

.step__marker {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.marker__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: rgba(22, 198, 79, 0.1);
  z-index: 1;
  line-height: 1;
}

.marker__icon {
  position: relative;
  width: 120px;
  height: 120px;
  background: white;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(22, 198, 79, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow__step:hover .marker__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(22, 198, 79, 0.3);
}

.marker__icon i {
  font-size: 2.5rem;
  color: var(--color-primary);
  transition: transform 0.4s ease;
}

.workflow__step:hover .marker__icon i {
  transform: scale(1.1);
}

.step__content {
  flex: 1;
  padding: var(--spacing-xl) 0;
  animation: fadeInRight 0.6s ease-out both;
}

.workflow__step:nth-child(1) .step__content { animation-delay: 0.1s; }
.workflow__step:nth-child(2) .step__content { animation-delay: 0.2s; }
.workflow__step:nth-child(3) .step__content { animation-delay: 0.3s; }
.workflow__step:nth-child(4) .step__content { animation-delay: 0.4s; }
.workflow__step:nth-child(5) .step__content { animation-delay: 0.5s; }

.step__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.step__description {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-size: 1.063rem;
}

.step__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(135deg, rgba(22, 198, 79, 0.1) 0%, rgba(22, 198, 79, 0.05) 100%);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border: 1px solid rgba(22, 198, 79, 0.2);
}

.step__badge.success {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(22, 198, 79, 0.3);
}

.step__badge i {
  font-size: 0.875rem;
}

/* Security Highlight */
.security-highlight {
  margin-top: var(--spacing-4xl);
  padding: var(--spacing-3xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(22, 198, 79, 0.3);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--spacing-3xl);
}

.security-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.security-highlight__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;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.security-highlight__icon i {
  font-size: 2.5rem;
  color: white;
  display: block;
}

.security-highlight__content {
  position: relative;
  z-index: 2;
}

.security-highlight__content h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.security-highlight__content p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-size: 1.063rem;
  margin: 0;
}

.security-highlight__content strong {
  color: white;
  font-weight: var(--font-weight-bold);
}

.security-highlight__features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: white;
  font-weight: var(--font-weight-medium);
  font-size: 0.938rem;
  white-space: nowrap;
}

.security-feature i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(180deg, white 0%, rgba(22, 198, 79, 0.02) 100%);
  position: relative;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: var(--spacing-4xl);
  align-items: start;
}

.contact__hero .section__header {
  text-align: left;
  margin-bottom: var(--spacing-3xl);
}

/* Contact Info Cards */
.contact__info-cards {
  display: grid;
  gap: var(--spacing-md);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(22, 198, 79, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(22, 198, 79, 0.3);
  transform: translateX(4px);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(22, 198, 79, 0.1) 0%, rgba(22, 198, 79, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card__icon i {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.info-card__content {
  flex: 1;
}

.info-card h4 {
  font-size: 0.938rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  font-size: 1rem;
  color: var(--color-gray-dark);
  margin: 0;
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.info-card a:hover {
  color: var(--color-primary);
}

.info-card__meta {
  display: block;
  font-size: 0.813rem;
  color: var(--color-gray);
  margin-top: 2px;
}

/* Contact Form Wrapper */
.contact__form-wrapper {
  background: white;
  border-radius: 24px;
  padding: var(--spacing-2xl) var(--spacing-3xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(22, 198, 79, 0.1);
}

.contact__form-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.contact__form-header h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.contact__form-header p {
  color: var(--color-gray);
  font-size: 0.938rem;
}

/* Form Styles */
.contact__form {
  margin-bottom: var(--spacing-xl);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
}

.form__label i {
  color: var(--color-primary);
  width: 14px;
  font-size: 0.813rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid rgba(22, 198, 79, 0.15);
  border-radius: 12px;
  font-family: var(--font-family);
  font-size: 0.938rem;
  transition: all var(--transition-normal);
  background: rgba(22, 198, 79, 0.02);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(22, 198, 79, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__privacy {
  text-align: center;
  font-size: 0.813rem;
  color: var(--color-gray);
  margin-top: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.form__privacy i {
  color: var(--color-primary);
}

/* Contact Trust Indicators */
.contact__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(22, 198, 79, 0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.813rem;
  color: var(--color-gray-dark);
  font-weight: var(--font-weight-medium);
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer__container {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-lg);
}

.footer__logo-icon {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--spacing-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(22, 198, 79, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--spacing-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-xl);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vh, 3rem);
    max-height: none;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .hero__image {
    order: -1;
    height: auto;
  }
  
  .hero__stats-bar {
    margin-top: clamp(2rem, 4vh, 3rem);
  }
  
  .stats-bar__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
  
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }
  
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
  
  /* How It Works */
  .security-highlight {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-2xl);
  }
  
  .security-highlight__icon {
    margin: 0 auto;
  }
  
  .security-highlight__features {
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
  }
  
  /* Navigation */
  .nav {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .nav__brand {
    order: 1;
  }
  
  .nav__toggle {
    order: 2;
    margin-left: auto;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-normal);
    z-index: var(--z-modal);
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--spacing-2xl);
  }
  
  .nav__link {
    font-size: var(--font-size-lg);
  }
  
  .nav__actions .btn.btn--primary {
    display: none;
  }

  .footer__brand {
    display: flex;
    justify-content: center;
  }

  .contact__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav__close {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
  }
  
  .nav__toggle,
  .nav__close {
    display: block;
  }
  
  /* Hero */
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: calc(70px + var(--spacing-2xl));
  }
  
  .hero__content {
    text-align: center;
    align-items: center;
    padding: clamp(1.5rem, 3vh, 2rem) 0;
  }
  
  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    text-align: center;
  }
  
  .hero__description {
    font-size: clamp(0.95rem, 3vw, 1.125rem);
    text-align: center;
  }
  
  .hero__launch-badge {
    flex-direction: row;
    text-align: left;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 100%;
  }
  
  .launch-badge__icon {
    width: 48px;
    height: 48px;
  }
  
  .launch-badge__icon i {
    font-size: 1.5rem;
  }
  
  .launch-badge__heading {
    font-size: 1rem;
  }
  
  .launch-badge__text {
    font-size: 0.813rem;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  
  .hero__actions .btn {
    width: 100%;
    max-width: 400px;
  }
  
  .hero__trust-badges {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
  }
  
  .stats-bar__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  /* Hide image on mobile */
  .hero__image {
    display: none;
  }
  
  /* Features */
  .features__grid,
  .features__grid--three {
    grid-template-columns: 1fr;
  }
  
  .feature__title {
    min-height: auto;
  }
  
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }
  
  .cta-card h3 {
    font-size: 1.5rem;
  }
  
  .cta-card .btn {
    width: 100%;
  }
  
  /* How It Works - Mobile */
  .workflow__line {
    left: 40px;
  }
  
  .workflow__step {
    flex-direction: row;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    align-items: flex-start;
  }
  
  .step__marker {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .marker__icon {
    width: 80px;
    height: 80px;
  }
  
  .marker__icon i {
    font-size: 1.75rem;
  }
  
  .marker__number {
    font-size: 2rem;
  }
  
  .step__content {
    padding: var(--spacing-md) 0;
    flex: 1;
  }
  
  .step__title {
    font-size: 1.25rem;
  }
  
  .step__description {
    font-size: 0.938rem;
  }
  
  .security-highlight {
    padding: var(--spacing-2xl);
  }
  
  .security-highlight__content h3 {
    font-size: 1.375rem;
  }
  
  .security-highlight__content p {
    font-size: 0.938rem;
  }
  
  .security-feature {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  
  /* Contact - Mobile */
  .contact__hero .section__header {
    text-align: center;
  }
  
  /* Contact */
  .whatsapp-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-cta__content {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-cta .btn {
    width: 100%;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
  
  .contact__trust {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  /* Footer */
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .section {
    padding: var(--spacing-3xl) 0;
  }
  
  .hero {
    padding-top: calc(70px + var(--spacing-3xl));
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .section__title {
    font-size: 1.75rem;
  }
  
  .btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
  }
  
  .feature__card {
    padding: var(--spacing-2xl);
  }
  
  .contact__form-wrapper {
    padding: var(--spacing-2xl);
  }
  
  .slide__image {
    height: 350px;
  }
  
  .slide__content {
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  }
  
  .slide__title {
    font-size: 1.5rem;
  }
  
  .slide__description {
    font-size: 0.938rem;
  }
  
  .slider__btn {
    width: 48px;
    height: 48px;
  }
  
  .slider__btn i {
    font-size: 1.125rem;
  }
  
  .indicator {
    width: 28px;
    height: 4px;
  }
  
  .whatsapp-number {
    font-size: 1.25rem;
  }
  
  .info-card {
    padding: var(--spacing-lg);
  }
  
  .cta-card h3 {
    font-size: 1.25rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
.nav__link:focus,
.form__input:focus,
.form__textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-gray: #000000;
    --color-gray-dark: #000000;
  }
}

/* ===== SCROLL BEHAVIOR ===== */
.header.scroll-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--color-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}