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

body {
  font-family: 'Inter', sans-serif;
  color: #1B2B4B;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  background: #1B2B4B;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-e {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.logo-dot {
  font-size: 22px;
  color: #2BA8B4;
  font-weight: 700;
}

.logo-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-left: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #cdd8e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2BA8B4;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1B2B4B 0%, #243d66 100%);
  color: #fff;
  padding: 100px 0;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #cdd8e8;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-primary {
  background: #2BA8B4;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #239aa6;
}

/* SERVICIOS */
.servicios {
  padding: 80px 0;
  background: #f5f7fa;
}

.servicios h2,
.equipo h2,
.contacto-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1B2B4B;
  text-align: center;
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.08);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  margin-bottom: 16px;
}

.card-icon svg {
  width: 44px;
  height: 44px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1B2B4B;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #5a6a80;
  line-height: 1.6;
}

/* EQUIPO */
.equipo {
  padding: 80px 0;
  background: #fff;
}

.team-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 36px 32px;
  text-align: center;
  width: 280px;
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.06);
}

.avatar {
  width: 70px;
  height: 70px;
  background: #1B2B4B;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1B2B4B;
  margin-bottom: 6px;
}

.cargo {
  font-size: 13px;
  color: #2BA8B4;
  font-weight: 500;
  margin-bottom: 16px;
}

.contacto-info {
  font-size: 13px;
  color: #5a6a80;
  margin-bottom: 4px;
}

/* CONTACTO */
.contacto-section {
  background: #1B2B4B;
  padding: 80px 0;
  color: #fff;
}

.contacto-section h2 {
  color: #fff;
}

.contacto-sub {
  text-align: center;
  color: #cdd8e8;
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 16px;
}

.contacto-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #cdd8e8;
}

.icon {
  font-size: 20px;
}

/* FOOTER */
footer {
  background: #111d30;
  padding: 20px 0;
  text-align: center;
  color: #5a6a80;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }

  .logo-text {
    display: none;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .servicios,
  .equipo,
  .contacto-section {
    padding: 56px 0;
  }

  .servicios h2,
  .equipo h2,
  .contacto-section h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    width: 100%;
  }

  .contacto-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .btn-primary {
    display: block;
    text-align: center;
    padding: 14px 24px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}
