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

/* Intro Video Overlay */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-video {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.skip-intro-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 100000;
}

.skip-intro-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

/* Mobile responsive for intro video */
@media (max-width: 768px) {
  .intro-video {
    object-fit: contain;
  }

  .skip-intro-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

:root {
  --primary: #3498db;
  --primary-dark: #2980b9;
  --secondary: #85c7f2;
  --accent: #7cb342;
  --dark: #0a0e27;
  --dark-light: #1a1f3a;
  --gray: #7f8c8d;
  --light: #ffffff;
  --light-blue: #85c7f2;
  --background: #0f1419;
  --text-dark: #2c3e50;
  --text-light: #e8eaed;
  --gradient: linear-gradient(135deg, #3498db 0%, #85c7f2 100%);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 30%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(124, 179, 66, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(133, 199, 242, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(52, 152, 219, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(124, 179, 66, 0.1) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  z-index: 40;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.85;
}

.logo-nova {
  color: var(--light);
}

.logo-com {
  color: var(--accent);
}

.logo-ai {
  color: var(--accent);
  margin-left: 0.2rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light);
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

.phone-link {
  color: var(--light) !important;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--accent) !important;
}

.btn-contact {
  padding: 0.6rem 1.5rem;
  background: var(--accent);
  border-radius: 50px;
  color: var(--text-dark) !important;
  font-weight: 600;
}

.btn-contact:hover {
  background: var(--light);
  color: var(--text-dark) !important;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 20, 25, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  padding: 10px 15px;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s;
  text-decoration: none;
  overflow: hidden;
}

.dropdown-menu a:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.dropdown-menu a img {
  width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

/* Passcode Modal */
.passcode-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.passcode-modal.active {
  display: flex;
}

.passcode-modal-content {
  background: var(--dark-light);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.passcode-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.passcode-modal-content > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.passcode-modal-content input {
  width: 100%;
  padding: 1rem;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.5rem;
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.passcode-modal-content input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.passcode-modal-content input::placeholder {
  color: var(--gray);
}

.passcode-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.passcode-error.show {
  display: block;
}

.passcode-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.passcode-modal-buttons .btn {
  flex: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(52, 152, 219, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(133, 199, 242, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(52, 152, 219, 0.15) 0%, transparent 50%);
  filter: blur(60px);
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  width: 100%;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(52, 152, 219, 0.4));
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--light-blue);
  margin-bottom: 0.6rem;
  line-height: 1.5;
  max-width: 800px;
}

.hero-subtitle strong {
  color: var(--light);
  font-weight: 700;
}

.hero-subtitle-first {
  margin-bottom: 1.2rem !important;
}

.hero-subtitle-last {
  margin-bottom: 2rem !important;
}

.conversation-highlight {
  color: var(--light);
  font-weight: 700;
  display: block;
}

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

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2), 0 8px 16px rgba(52, 152, 219, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(52, 152, 219, 0.3), 0 16px 32px rgba(52, 152, 219, 0.25),
    0 24px 48px rgba(52, 152, 219, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.1);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2), 0 8px 16px rgba(52, 152, 219, 0.15);
}

/* NoVo Avatar */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: -75px;
}

/* Chat Bubble */
.chat-bubble {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
  animation: pulse-bubble 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.chat-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.6);
}

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--primary);
}

@keyframes pulse-bubble {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(52, 152, 219, 0.7);
  }
}

.novo-avatar {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(52, 152, 219, 0.3);
  border: 5px solid var(--primary);
  background: var(--light);
}

/* AI Orb Animation */
.ai-orb {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gradient);
  position: relative;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 100px rgba(45, 90, 123, 0.4);
}

.ai-orb::before,
.ai-orb::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.5;
  animation: pulse 4s ease-in-out infinite;
}

.ai-orb::after {
  animation-delay: 2s;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(133, 199, 242, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(52, 152, 219, 0.4),
    0 0 30px rgba(52, 152, 219, 0.3);
}

.section-subtitle {
  text-align: center;
  color: var(--light-blue);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Features */
.features {
  background: transparent;
}

.features-intro {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.features-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--light-blue);
  background: rgba(52, 152, 219, 0.1);
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 254, 254, 0.95) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--light-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(52, 152, 219, 0.07), 0 10px 20px rgba(52, 152, 219, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.6) 100%);
  opacity: 0.6;
  transition: opacity 0.4s;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 8px 12px rgba(52, 152, 219, 0.15), 0 20px 40px rgba(52, 152, 219, 0.25),
    0 30px 60px rgba(52, 152, 219, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
  opacity: 0.9;
}

.feature-icon {
  display: none;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

.feature-card p {
  color: var(--dark-light);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(255, 255, 255, 0.7);
}

/* AI Applications */
.ai-apps {
  background: transparent;
}

.ai-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.ai-app-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  padding: 1.5rem;
  border-radius: 20px;
  border: 2px solid var(--light-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(52, 152, 219, 0.07), 0 10px 20px rgba(52, 152, 219, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ai-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 179, 66, 0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.ai-app-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 8px 12px rgba(124, 179, 66, 0.15), 0 20px 40px rgba(52, 152, 219, 0.2),
    0 30px 60px rgba(124, 179, 66, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ai-app-card:hover::before {
  opacity: 1;
}

.app-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.ai-app-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.ai-app-card p {
  color: var(--dark-light);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Product Showcase Card */
.product-showcase-card {
  grid-column: span 2;
}

.product-showcase-card h3 {
  margin-bottom: 1rem;
}

.product-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.product-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--light-blue);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.15);
}

.product-item img:hover {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 6px 12px rgba(52, 152, 219, 0.25);
}

.product-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 768px) {
  .product-showcase-card {
    grid-column: span 1;
  }

  .product-images {
    flex-wrap: wrap;
  }

  .product-item img {
    width: 60px;
    height: 60px;
  }
}

/* Technology */
.technology {
  background: transparent;
  text-align: center;
}

.tech-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  color: var(--light-blue);
  line-height: 1.8;
}

.tech-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--light-blue);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--light-blue);
  background: var(--light);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.05), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--light);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.15), 0 8px 16px rgba(52, 152, 219, 0.1),
    inset 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-form button {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--primary);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo .logo-nova {
  color: var(--light);
}

.footer p {
  color: rgba(255, 255, 255, 0.9);
}

.footer-phone {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-phone a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-phone a:hover {
  color: var(--light);
}

.company-number {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.company-number a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.company-number a:hover {
  color: var(--light);
  text-decoration: underline;
}

.company-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--light);
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  color: var(--gray);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-content strong {
  color: var(--light);
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
  background: rgba(99, 102, 241, 0.2);
  color: var(--light);
  font-weight: 600;
}

.cookie-table td {
  color: var(--gray);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.cookie-banner p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: color 0.3s;
}

.btn-text:hover {
  color: var(--light);
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-modal-content {
  background: var(--dark-light);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.cookie-modal > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.cookie-category {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-category-header input[type='checkbox'] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-category-header input[type='checkbox']:disabled {
  cursor: not-allowed;
}

.cookie-category-header label {
  color: var(--light);
  cursor: pointer;
  flex: 1;
}

.cookie-category-desc {
  color: var(--gray);
  margin-left: 2.5rem;
  font-size: 0.9rem;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-preference-center {
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2rem;
    white-space: normal;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .novo-avatar {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .ai-orb {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 20, 25, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }

  /* Mobile Dropdown */
  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    background: rgba(30, 40, 55, 0.95);
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdown.active .dropdown-menu {
    max-height: 350px;
    padding: 1rem 0.5rem;
    margin-top: 0.75rem;
  }

  .dropdown-menu a {
    width: 90%;
    max-width: 280px;
    justify-content: center;
    padding: 0.75rem;
    margin: 0.25rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .tech-stats {
    gap: 2rem;
  }

  .ai-apps-grid {
    grid-template-columns: 1fr;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .cookie-banner {
    padding: 1.5rem;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .cookie-modal-content {
    padding: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
