:root {
  --bg: #fafaf9;
  --card: #ffffff;
  --border: #e7e5e4;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0b1f3a;
  --primary-2: #143a66;
  --accent: #b08d57;
  --accent-2: #e7d7bd;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.theme-dark {
  --bg: #0b1220;
  --card: #0f1b2d;
  --border: #1f2a3a;
  --text: #e5e7eb;
  --muted: #a1a1aa;
  --primary: #dbeafe;
  --primary-2: #8ab4f8;
  --accent: #b08d57;
  --accent-2: #2b2520;
  --shadow: 0 8px 24px rgba(2, 6, 23, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary-2);
}

img {
  max-width: 100%;
  height: auto;
}

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(250, 250, 249, 0.6), rgba(250, 250, 249, 0.9));
}

.theme-dark .section-muted {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.6), rgba(15, 27, 45, 0.9));
}

.hero {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.06), rgba(176, 141, 87, 0.05));
  border-bottom: 1px solid var(--border);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.card-muted {
  background: rgba(176, 141, 87, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
}

.badge-accent {
  background: var(--accent-2);
  color: #5f4a2d;
  border-color: transparent;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill.is-active,
.pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  border-color: var(--primary-2);
  color: var(--primary-2);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: var(--primary-2);
  color: var(--primary-2);
}

.text-muted {
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

.heading-xl {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.2;
  font-weight: 600;
}

.heading-lg {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
}

.heading-md {
  font-size: 1.3rem;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.navbar {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 2rem;
}

.brand {
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-link {
  color: var(--muted);
}

.nav-link.is-active {
  color: var(--text);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.details summary h3 {
  margin: 0.1rem 0 0;
}

.details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.details summary::-webkit-details-marker {
  display: none;
}

.details[open] summary {
  margin-bottom: 1.2rem;
}

.package-grid {
  display: grid;
  gap: 1.5rem;
}

.inline-list {
  padding-left: 1.1rem;
  margin: 0;
}

.inline-list li {
  margin-bottom: 0.4rem;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sticky-whatsapp {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 30;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .section {
    padding: 3.8rem 0;
  }
}

@media (max-width: 640px) {
  .sticky-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
