/* ====== Reset básico ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #222;
}

/* ====== Layout general ====== */
.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  padding: 4rem 0;
}
.section-alt {
  background: #fff;
}
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}
p {
  margin-bottom: 1rem;
}
.muted {
  color: #666;
  font-size: 0.9rem;
}

/* ====== Header ====== */
.header {
  background: #111;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
.brand .mark {
  font-size: 1.5rem;
  color: #f39c12;
}
.menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.menu a:hover {
  color: #f39c12;
}
.menu .btn.cta {
  background: #f39c12;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #111;
  font-weight: bold;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
}

/* ====== Hero en 2 columnas ====== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-text {
  text-align: left;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero .badge {
  background: #f39c12;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.hero-actions {
  margin-top: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.btn {
  background: #f39c12;
  color: #111;
}
.btn:hover {
  background: #d35400;
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #111;
  margin-left: 0.5rem;
}
.btn-light:hover {
  background: #ddd;
}

/* ====== Servicios ====== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card .body {
  padding: 1rem;
}
.card h3 {
  margin-bottom: 0.5rem;
}
.card .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #f39c12;
}

/* ====== Paquetes ====== */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pkg {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.pkg header {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.pkg ul {
  list-style: none;
  margin-bottom: 1rem;
}
.pkg ul li {
  margin: 0.4rem 0;
}
.pkg .price {
  font-weight: bold;
  color: #f39c12;
  margin-top: 1rem;
}

/* ====== Trayectoria / Bio ====== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.bio {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  align-items: center;
}
.bio img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.bio h3 {
  margin-bottom: 0.5rem;
  color: #f39c12;
}

/* ====== Galería Slider ====== */
.carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.slide {
  min-width: 100%;
}
.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ctrl button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
}
.ctrl.prev { left: 10px; }
.ctrl.next { right: 10px; }

/* ====== Footer ====== */
.footer {
  background: #111;
  color: #ddd;
  padding: 2rem 0;
}
.footer h4 {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #f39c12;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem;
}
.footer .copyright {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    display: none;
  }
  .menu.is-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid, .bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bio {
    flex-direction: column;
    text-align: center;
  }
  .bio img {
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}