* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #081225, #0b1730);
  color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background-color: rgba(8, 18, 37, 0.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  padding: 100px 0 80px;
}

.hero-content {
  max-width: 780px;
}

.tag {
  display: inline-block;
  border: 1px solid #2563eb;
  color: #60a5fa;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.blue {
  color: #2563eb;
}

.green {
  color: #22c55e;
}

.hero-text {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background-color: #2563eb;
  color: white;
}

.btn.primary:hover {
  background-color: #1d4ed8;
}

.btn.secondary {
  border: 1px solid #22c55e;
  color: #ffffff;
}

.btn.secondary:hover {
  background-color: rgba(34, 197, 94, 0.12);
}

.about,
.services,
.differentials,
.contact {
  padding: 80px 0;
}

.about h2,
.services h2,
.differentials h2,
.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about p,
.contact p {
  max-width: 800px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.about-spacing {
  margin-top: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.5);
}

.card h3 {
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  color: #cbd5e1;
}

.contact-box {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box p {
  color: #cbd5e1;
  margin-bottom: 10px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-buttons {
  margin-top: 10px;
}

.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-text {
  max-width: 520px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.45);
}

.whatsapp-float span {
  line-height: 1;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 3rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    right: 5%;
    background-color: #0b1730;
    padding: 20px;
    border-radius: 14px;
    width: 220px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo-img {
    height: 42px;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .about h2,
  .services h2,
  .differentials h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
    font-size: 1.5rem;
  }
}
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.legal-updated {
  color: #94a3b8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.legal-section {
  margin-bottom: 28px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.legal-section p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-btn {
  margin-top: 10px;
}