:root {
  --primary: #2462E9;
  --primary-light: #4E89FD;
  --primary-dark: #0D47A1;
  --secondary: #FFA94D;
  --accent: #4CAF50;
  --neutral-50: #F9FAFB;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --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);
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', sans-serif;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--neutral-50);
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-900);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.accent-text {
  color: var(--primary);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}

.section-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--neutral-600);
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-radius 0.3s;
  display: none;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
}

@media (min-width: 992px) {
  .cursor, .cursor-dot {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-sans);
}

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

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

.btn-secondary {
  background-color: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
}

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

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon i {
  font-size: 1.25rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neutral-900);
  font-size: 1.25rem;
}

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

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-700);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: white;
  z-index: 105;
  padding: 6rem 2rem;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--neutral-800);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 137, 253, 0.05) 0%, rgba(36, 98, 233, 0.1) 100%);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-tagline {
  display: inline-block;
  background-color: rgba(78, 137, 253, 0.1);
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  background-color: white;
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-innovation {
  bottom: 20%;
  left: 0;
  transform: translateX(-50%);
}

.badge-innovation .hero-badge-icon {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--accent);
}

.badge-connected {
  top: 15%;
  right: 0;
  transform: translateX(30%);
}

.badge-connected .hero-badge-icon {
  background-color: rgba(255, 169, 77, 0.1);
  color: var(--secondary);
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Vision Section */
.vision-section {
  padding: 6rem 0;
}

.vision-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.vision-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-title {
  margin-bottom: 1.5rem;
}

.vision-description {
  margin-bottom: 2rem;
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.vision-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/wave-bg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
}

.vision-image img {
  max-width: 80%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
  .vision-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Platform Section */
.platform-section {
  padding: 6rem 0;
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.platform-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-title {
  font-weight: 600;
  color: var(--neutral-700);
}

.platform-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--neutral-300);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--neutral-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* How Section */
.how-section {
  padding: 6rem 0;
}

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

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.step-item:hover {
  background-color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(78, 137, 253, 0.1);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.step-content h3 {
  margin-bottom: 0.75rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--neutral-50);
  position: relative;
  overflow: hidden;
}

.features-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.features-tabs .tabs-nav {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.features-tabs .tab-btn {
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  margin: 0 0.5rem;
}

.features-tabs .tab-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(78, 137, 253, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.feature-title {
  margin-bottom: 1rem;
}

/* Map Section */
.map-section {
  padding: 6rem 0;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.map-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-features {
  margin-top: 2rem;
}

.map-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.map-feature-icon {
  min-width: 40px;
  height: 40px;
  background-color: rgba(78, 137, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-feature-icon i {
  color: var(--primary);
}

.map-image {
  position: relative;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#map {
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .map-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .map-wrapper {
    height: 500px;
  }
}

/* Roadmap Section */
.roadmap-section {
  padding: 6rem 0;
  background-color: var(--neutral-100);
}

.roadmap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--neutral-300);
}

.roadmap-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding: 0 2rem;
}

.roadmap-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.roadmap-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.roadmap-dot {
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  z-index: 1;
}

.roadmap-item:nth-child(odd) .roadmap-dot {
  right: -10px;
}

.roadmap-item:nth-child(even) .roadmap-dot {
  left: -10px;
}

.roadmap-phase {
  display: inline-block;
  background-color: rgba(78, 137, 253, 0.1);
  color: var(--primary);
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.roadmap-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .roadmap::before {
    left: 20px;
  }
  
  .roadmap-item {
    width: 100%;
    left: 0;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
  }
  
  .roadmap-item:nth-child(odd) {
    padding-right: 0;
    text-align: left;
  }
  
  .roadmap-item:nth-child(even) {
    left: 0;
  }
  
  .roadmap-item:nth-child(odd) .roadmap-dot {
    right: auto;
    left: -10px;
  }
}

/* Demo Section */
.demo-section {
  padding: 6rem 0;
  background-color: var(--primary-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.demo-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.demo-content h2, .demo-content p {
  color: white;
}

.demo-content h2::after {
  background-color: var(--secondary);
}

.demo-features {
  margin-top: 2rem;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.demo-feature i {
  color: var(--secondary);
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-content {
  width: 100%;
}

.contact-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin: 0 0 0.5rem 0;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--neutral-700);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.contact-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

.contact-link {
  color: var(--neutral-700);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.demo-form {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.demo-form h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-900);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--neutral-700);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--neutral-50);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(78, 137, 253, 0.2);
  outline: none;
}

.form-control::placeholder {
  color: var(--neutral-400);
}

.form-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Mensagens de alerta */
.alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.alert i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.alert-danger {
  background-color: rgba(244, 67, 54, 0.1);
  color: #d32f2f;
  border: 1px solid rgba(244, 67, 54, 0.2);
}

.success-message, .error-message {
  margin-bottom: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}

@media (min-width: 992px) {
  .demo-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .contact-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .contact-card-content h4 {
    font-size: 0.95rem;
    margin: 0 0 0.25rem 0;
  }
  
  .contact-card-content p {
    font-size: 0.9rem;
  }
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  background-color: var(--neutral-900);
  color: var(--neutral-400);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
}

.footer-logo-text span {
  color: var(--primary-light);
}

.footer-about {
  margin-bottom: 1.5rem;
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  text-decoration: none;
  color: var(--neutral-400);
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: white;
}



.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 4rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-badge {
    display: none;
  }
  
  .tabs-nav {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}

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

@keyframes rotateIn {
  from { transform: rotate(-10deg); opacity: 0; }
  to { transform: rotate(0); opacity: 1; }
}

/* AOS custom animations */
[data-aos="fade-up-slight"] {
  transform: translateY(20px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up-slight"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Animation classes */
.float-animation {
  animation: float 4s ease-in-out infinite;
}

.rotateIn-animation {
  animation: rotateIn 0.8s ease forwards;
}

/* Vision Video */
.vision-video {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.vision-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .vision-video-wrapper {
    max-width: 100%;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .vision-video-wrapper {
    max-width: 700px;
  }
} 