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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #121d2f;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  background-color: #121d2f;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(78, 205, 196, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  background: linear-gradient(to right, #fff, #e5e5e5, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #4ecdc4;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle:hover {
  color: #4ecdc4;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #121d2f;
  border-left: 1px solid rgba(78, 205, 196, 0.2);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 2rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #4ecdc4;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2rem 1rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  flex: 1;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
}

.badge {
  display: inline-block;
  background-color: rgba(78, 205, 196, 0.2);
  color: #4ecdc4;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  width: fit-content;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 28rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #036661;
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: background-color 0.3s;
  width: fit-content;
}

.cta-button:hover {
  background-color: #025450;
}

.cta-button svg {
  transition: transform 0.3s;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.hero-image {
  position: relative;
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #121d2f, rgba(18,29,47,0.9), rgba(18,29,47,0.3));
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
  z-index: 10;
}

.scroll-hint:hover {
  color: #4ecdc4;
}

.scroll-hint span {
  font-size: 0.875rem;
}

.scroll-hint svg {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Serviços Section */
.servicos {
  background-color: #0d1520;
  padding: 4rem 1rem;
}

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

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background-color: #1a2a3f;
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.card:hover {
  border-color: rgba(78, 205, 196, 0.4);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(78, 205, 196, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #4ecdc4;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(78, 205, 196, 0.1);
  padding: 2rem 1rem;
  text-align: center;
}

.footer p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 4rem 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-image {
    height: 100%;
    min-height: 400px;
  }

  .servicos {
    padding: 6rem 2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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