/* General */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f3f4f6;
  color: #333;
}

/* Navegación */
.navbar {
  background-color: transparent;
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo {
  height: 60px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 1rem;
}

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

.nav-links a:hover {
  color: #0044cc;
}

/* Sección Principal Moderna */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #89CFF0, #ffc107);
  color: #fff;
  text-align: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background-color: #0044cc;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #003399;
}

/* Sección de Servicios Moderna */
.services {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-card i {
  font-size: 40px;
  color: #0044cc;
  margin-bottom: 10px;
}

/* Pie de Página */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffc107;
}

/* Responsividad */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }
}