:root {
  --primary-color: #00AEEF;
  --secondary-color: #333;
  --background-color: #f8f9fa;
  --text-color: #2c3e50;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
}

nav {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

main {
  padding-top: 80px;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo img {
  height: 320px;
  width: auto;
  object-fit: contain;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary-color), #008B8B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.coming-soon {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.25rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: white;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-details {
  padding: 4rem 2rem;
  background-color: var(--background-color);
}

.detail-card {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  scroll-margin-top: 100px;
}

.detail-card:last-child {
  margin-bottom: 0;
}

.detail-card h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.detail-card h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.detail-card p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

.social {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
}

.social h2 {
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: #f8f9fa;
  padding: 3rem 0 1rem;
  margin-top: 0;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  margin-bottom: 2rem;
  padding: 0 15px;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand .logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #bdc3c7;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-column h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #bdc3c7;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  margin-right: 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.footer-copyright p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .features {
    padding: 2rem 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }

  .logo {
    height: 32px;
  }

  .hero-logo img {
    height: 80px;
  }

  .detail-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .detail-card h2 {
    font-size: 1.75rem;
  }

  .detail-card h3 {
    font-size: 1.25rem;
  }

  .detail-card p {
    font-size: 1rem;
  }
  
  .footer-main {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-bottom: 1rem;
    justify-content: center;
  }
  
  .footer-legal a {
    margin: 0 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.whatsapp-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #25D366;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebc5c;
}
