body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #101624 0%, #1a2236 100%);
  color: #eaf6ff;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  width: 100%;
  background: rgba(16, 22, 36, 0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(173, 216, 230, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo img {
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 180, 255, 0.13));
}

.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #b7e0ff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  font-size: 1rem;
}

.nav a:hover {
  color: #4fd1ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #b7e0ff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav ul {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(16, 22, 36, 0.95);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 0 0 0 18px;
    width: 220px;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
  }
  .nav li {
    margin: 0.7rem 0;
    text-align: right;
    padding-right: 1.5rem;
  }
  .hamburger {
    display: flex;
  }
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(20, 30, 48, 0.7) 60%, rgba(0, 180, 255, 0.08) 100%);
  padding: 3rem 0 2rem 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem 2rem;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4fd1ff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero-text h2 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #eaf6ff;
  margin: 0.3rem 0;
  opacity: 0.85;
}
.hero-text p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: #b7e0ff;
  max-width: 420px;
}
.hero-img img {
  width: 260px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,180,255,0.10);
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .hero-img img {
    width: 100%;
    max-width: 320px;
  }
}

.glass {
  background: rgba(24, 36, 56, 0.55);
  box-shadow: 0 8px 32px 0 rgba(0, 180, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1.5px solid rgba(173, 216, 230, 0.18);
}

.soluciones {
  padding: 3rem 0 2rem 0;
}
.soluciones-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.solucion-card {
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 18px;
}
.solucion-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,180,255,0.10);
}
.solucion-card h3 {
  color: #4fd1ff;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.solucion-card p {
  color: #b7e0ff;
  font-size: 1rem;
  text-align: center;
}
.solucion-card:hover {
  box-shadow: 0 12px 32px 0 rgba(0, 180, 255, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.servicios {
  padding: 2.5rem 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicios-content {
  text-align: center;
  padding: 2rem 1rem;
}
.servicios-content h2 {
  color: #4fd1ff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.servicios-content h3 {
  color: #eaf6ff;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.85;
}

.oficinas {
  padding: 2.5rem 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oficinas-content {
  padding: 2rem 1.5rem;
}
.oficinas-content h2 {
  color: #4fd1ff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}
.oficina {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(173, 216, 230, 0.10);
}
.oficina:last-child {
  border-bottom: none;
}
.oficina h3 {
  color: #b7e0ff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.oficina p {
  color: #eaf6ff;
  font-size: 0.98rem;
  margin: 0.1rem 0;
  opacity: 0.85;
}

.footer {
  margin-top: 2rem;
  padding: 1.2rem 0 0.7rem 0;
  background: rgba(24, 36, 56, 0.55);
  border-top: 1.5px solid rgba(173, 216, 230, 0.18);
  box-shadow: 0 -4px 24px 0 rgba(0, 180, 255, 0.08);
  backdrop-filter: blur(8px);
}
.footer-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 1rem;
  color: #b7e0ff;
  margin-bottom: 0.5rem;
}
.footer-copy {
  text-align: center;
  color: #4fd1ff;
  font-size: 0.98rem;
  opacity: 0.85;
}

@media (max-width: 700px) {
  .soluciones-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-contact {
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }
}

::-webkit-scrollbar {
  width: 8px;
  background: rgba(24,36,56,0.3);
}
::-webkit-scrollbar-thumb {
  background: rgba(79,209,255,0.18);
  border-radius: 8px;
}