:root {
  --navy: #071a2f;
  --navy-soft: #0b2945;
  --teal: #0f6f72;
  --green: #0f5a48;
  --gold: #c58a3a;
  --gold-light: #e6bd73;
  --beige: #f2dfc2;
  --cream: #fff8ec;
  --brown: #6b3b18;
  --text: #172033;
  --muted: #67707d;
  --shadow: 0 24px 70px rgba(7, 26, 47, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff8ec 0%, #f4dfbf 55%, #fff8ec 100%);
}

h1, h2, h3, .brand strong, .price-row strong {
  font-family: Georgia, "Times New Roman", serif;
}

a { color: inherit; }

.hero {
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px) 64px;
  background:
    radial-gradient(circle at 78% 20%, rgba(197, 138, 58, .32), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 236, .96), rgba(232, 196, 139, .72)),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255,255,255,.45) 0 18%, transparent 18% 100%);
  opacity: .35;
  pointer-events: none;
}

.nav, .hero-grid, main, footer { position: relative; z-index: 1; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 56px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(107, 59, 24, .25);
}
.brand strong { display: block; letter-spacing: .09em; color: var(--navy); }
.brand span { display: block; font-size: .88rem; color: var(--brown); }
.nav-cta {
  text-decoration: none;
  border: 1px solid rgba(197, 138, 58, .6);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 248, 236, .72);
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .82rem;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  line-height: .95;
  color: var(--navy);
  margin: 12px 0 22px;
  letter-spacing: -.04em;
}
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
  max-width: 660px;
  color: #29334a;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}
.btn.primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 16px 35px rgba(7, 26, 47, .28);
}
.btn.secondary {
  color: var(--navy);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(197, 138, 58, .5);
}
.note { color: var(--brown); font-weight: 700; }
.hero-card img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.5);
}

main { max-width: 1180px; margin: 0 auto; padding: 74px clamp(20px, 5vw, 0); }
.photo-band {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 46px;
}
.paqueta-placeholder {
  min-height: 330px;
  border-radius: 30px;
  border: 2px dashed rgba(197, 138, 58, .65);
  background:
    linear-gradient(135deg, rgba(15, 111, 114, .18), rgba(255, 248, 236, .92)),
    radial-gradient(circle at 22% 30%, rgba(197, 138, 58, .28), transparent 24%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--brown);
  padding: 30px;
}
.paqueta-placeholder span { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 900; }
.paqueta-placeholder strong { font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.7rem); color: var(--navy); margin-top: 10px; }
.photo-copy, .services, .pricing, .cta-final {
  background: rgba(255, 248, 236, .78);
  border: 1px solid rgba(197, 138, 58, .24);
  box-shadow: 0 18px 52px rgba(7, 26, 47, .08);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 48px);
}
.photo-copy h2, .services h2, .section-heading h2, .cta-final h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  margin: 0 0 14px;
}
.photo-copy p, .services p, .section-heading p, .cta-final p { line-height: 1.7; color: #3c4558; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 42px 0;
}
.benefits article {
  background: linear-gradient(180deg, #08213a, #041423);
  color: var(--cream);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 48px rgba(7, 26, 47, .16);
}
.benefits span { color: var(--gold-light); font-weight: 900; letter-spacing: .15em; }
.benefits h3 { font-size: 1.45rem; margin: 16px 0 8px; }
.benefits p { color: rgba(255,248,236,.78); line-height: 1.6; }

.services { margin: 42px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.service-grid div {
  background: #fffaf0;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(197, 138, 58, .2);
}
.service-grid strong { color: var(--brown); font-size: 1.05rem; }
.service-grid p { font-size: .95rem; }

.pricing { margin: 42px 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.price-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fffaf0, #f5e3c8);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(197, 138, 58, .45);
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(107, 59, 24, .13);
}
.price-row:last-child { border-bottom: 0; }
.price-row span { font-weight: 800; color: var(--navy); }
.price-row small { display: block; color: var(--brown); font-weight: 600; margin-top: 4px; }
.price-row strong { color: var(--brown); font-size: 1.55rem; white-space: nowrap; }
.price-row.highlight {
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.price-row.highlight span, .price-row.highlight strong { color: var(--cream); }

.cta-final { text-align: center; margin-top: 42px; background: linear-gradient(135deg, #09243d, #0f6f72); color: var(--cream); }
.cta-final h2, .cta-final p { color: var(--cream); }
.cta-final .btn.primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
footer { text-align: center; padding: 26px; color: var(--brown); }

@media (max-width: 900px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero-grid, .photo-band { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .benefits, .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .price-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero { padding-top: 18px; }
}
