/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0;   /* Quita todo el espacio interno */
  margin: 10;    /* Asegura que no haya margen externo */
  /* padding: 1rem 2rem; background: #fff; */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 100;
}
.navbar img { height: 100px; }
.navbar nav a { margin-left: 1.5rem; font-weight: 500; color: #444; }
.navbar nav a:hover { color: #0078ff; }

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../assets/hero.jpg") center/cover;
  height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 0 2rem;
}
.hero-inner h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-inner p { font-size: 1.2rem; margin-bottom: 1.5rem; max-width: 700px; }
.btn-primary, .btn-secondary {
  padding: 0.9rem 2rem; border-radius: 25px; font-size: 1rem;
  display: inline-block; transition: 0.3s;
}
.btn-primary { background: #0078ff; color: #fff; }
.btn-primary:hover { background: #005ecc; transform: scale(1.05); }
.btn-secondary { background: #eee; color: #0078ff; }
.btn-secondary:hover { background: #ddd; }

/* Sections */
.section { padding: 4rem 2rem; text-align: center; }
.section.alt { background: #f9f9f9; }
h2 { margin-bottom: 2rem; font-size: 2rem; color: #0078ff; }

/* Cards */
.cards, .pricing-cards, .cases {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card, .price-card, .case-card {
  background: #fff; padding: 2rem; border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.price-card.featured { border: 2px solid #0078ff; transform: scale(1.05); }

/* Contact */
.contact-form { max-width: 600px; margin: auto; display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  padding: 0.8rem; border: 1px solid #ccc; border-radius: 6px; width: 100%;
}
.contact-form button { width: fit-content; align-self: center; }

/* Footer */
footer { text-align: center; padding: 2rem; background: #222; color: #ddd; margin-top: 2rem; }
