@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1c1b1f;
  --muted: #5d5a66;
  --brand: #4f46e5;
  --brand-soft: #eef2ff;
  --sand: #f6f1ec;
  --olive: #e7efe9;
  --sky: #edf4ff;
  --border: #e2e0e7;
  --shadow: 0 18px 45px rgba(28, 27, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  flex-direction: column;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #8a3449;
  background: #fbe9ef;
  padding: 6px 10px;
  border-radius: 999px;
}

.cta-btn {
  background: var(--brand);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn.secondary {
  background: #ffffff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.olive {
  background: var(--olive);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.image-frame {
  background: #ece9f2;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 12px 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
  background: #efeef5;
}

.card .image-frame {
  height: 160px;
  border-radius: 14px;
  background: #efeef5;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 80px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #6c6873;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  display: none;
  z-index: 30;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  color: var(--muted);
}

.notice {
  background: #ffffff;
  border-left: 4px solid var(--brand);
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.bg-celebracion {
  background-image: url("https://images.unsplash.com/photo-1762765685348-4bced247d12c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #262630;
  color: #ffffff;
}

.bg-celebracion p {
  color: rgba(255, 255, 255, 0.75);
}

.bg-celebracion .split-text {
  background: rgba(22, 22, 28, 0.72);
  padding: 24px;
  border-radius: 18px;
}

.hero-stat {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
}

.full-width-band {
  background: #16161c;
  color: #ffffff;
  padding: 36px 0;
}

.full-width-band p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 840px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
