/* 🎨 Fuente y ajustes generales */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* 🌐 NAVBAR */
header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #1e4b8e;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  opacity: 0.9;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

.menu li a:hover {
  background: #1e4b8e;
  color: #fff;
}

/* 🏠 HERO */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #eef3f9, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-content h2 span {
  color: #1e4b8e;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #1e4b8e;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #163a6e;
}

/* 🧰 SOBRE NOSOTROS */
.about {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  color: #555;
}

/* 💼 SERVICIOS */
.services {
  background: #f0f4fb;
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1e4b8e;
}

.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.price {
  display: inline-block;
  background: #1e4b8e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
}

/* 📞 CONTACTO */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* 🟢 Botones WhatsApp */
.whatsapp-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.whatsapp-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1da851;
}

/* 🦶 FOOTER */
footer {
  background: #1e4b8e;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* 📱 Menú Responsive */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px 0 0 8px;
  }

  .menu li {
    margin-bottom: 15px;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #1e4b8e;
  }
}
