﻿:root {
  --green-900: #0d4f46;
  --green-700: #16695f;
  --gold-500: #b88a2f;
  --cream-50: #f8f5f0;
  --ink-900: #1b2a27;
  --white: #fff;
  --max: 1140px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink-900);
  background: #f8f5f0 url("assets/img/bg-luxury.svg") no-repeat top center / cover;
  line-height: 1.6;
}
a { color: var(--green-900); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), 92%); margin: 0 auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #000; color: #fff; padding: .5rem; z-index: 999; }
.site-header { position: sticky; top: 0; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid #e8e0d2; z-index: 99; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.brand img { height: 84px; width: auto; }
.menu { display: flex; gap: 1rem; flex-wrap: wrap; }
.menu a {
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  color: #0e4f47;
  padding: .58rem .88rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 47, 0.26);
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(248,245,240,.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 6px 14px rgba(12, 45, 40, 0.08);
  backdrop-filter: blur(6px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
}
.menu-drop-btn {
  font-family: inherit;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1;
  letter-spacing: .02em;
  color: #0e4f47;
  padding: .58rem .88rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 47, 0.26);
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(248,245,240,.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 6px 14px rgba(12, 45, 40, 0.08);
  backdrop-filter: blur(6px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
  cursor: pointer;
}
.menu-drop-btn:hover {
  color: #0a3f39;
  border-color: rgba(184, 138, 47, 0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 18px rgba(12, 45, 40, 0.16);
  transform: translateY(-1px);
}
.menu-dropdown {
  position: relative;
}
.menu-dropdown-panel {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid #eadfcb;
  border-radius: 14px;
  padding: .5rem;
  box-shadow: 0 16px 26px rgba(0,0,0,.12);
  display: grid;
  gap: .35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}
.menu-dropdown-panel a {
  display: block;
  border-radius: 10px;
  text-align: left;
}
.menu-dropdown.open .menu-dropdown-panel,
.menu-dropdown:hover .menu-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu a:hover {
  text-decoration: none;
  color: #0a3f39;
  border-color: rgba(184, 138, 47, 0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 18px rgba(12, 45, 40, 0.16);
  transform: translateY(-1px);
}
.menu a:focus-visible {
  outline: none;
  border-color: #b88a2f;
  box-shadow: 0 0 0 3px rgba(184, 138, 47, 0.24), 0 10px 18px rgba(12, 45, 40, 0.16);
}
.menu-btn { display: none; }
.hero { padding: 4rem 0 2rem; }
.grid-2 { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: var(--green-700); font-weight: 700; font-size: .82rem; }
h1,h2,h3 { line-height: 1.2; color: var(--green-900); }
h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
.panel {
  background: #fff url("assets/img/panel-modern.svg") no-repeat center/cover;
  border: 1px solid #dfd1b5;
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: 0 18px 38px rgba(0,0,0,.09);
}
.hero-panel { display: grid; gap: 1rem; }
.hero-photo-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbc8a4;
  background: #fff;
  min-height: 320px;
}
.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hero-panel-content { padding: .35rem .35rem .6rem; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.btn { display: inline-block; padding: .8rem 1.1rem; border-radius: 12px; font-weight: 700; }
.btn-primary { background: var(--green-900); color: var(--white); }
.btn-outline { border: 2px solid var(--green-900); }
.section { padding: 3rem 0; }
.cards .card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eadfcb;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-body {
  padding: .95rem 1rem 1.05rem;
}
.card-body h3 {
  margin-top: 0;
}
.card-body p {
  margin-bottom: .85rem;
}
.card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 64px;
  height: 64px;
  border-right: 1px solid rgba(184, 138, 47, 0.25);
  border-bottom: 1px solid rgba(184, 138, 47, 0.25);
  border-radius: 0 0 10px 0;
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}
.card > * {
  position: relative;
  z-index: 1;
}
.steps { padding-left: 1rem; }
.steps,
main ul,
main ol {
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}
.steps li,
main ul li,
main ol li {
  position: relative;
  margin-bottom: .68rem;
  padding: .72rem .9rem .72rem 2.3rem;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,243,236,.92));
  border: 1px solid #eadfcb;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 44, 39, 0.05);
}
.steps li::before,
main ul li::before {
  content: "";
  position: absolute;
  left: .84rem;
  top: 50%;
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, #e7c886, #b88a2f);
  box-shadow: 0 0 0 4px rgba(184, 138, 47, 0.16);
}
main ol {
  counter-reset: item;
}
main ol li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: .6rem;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  font-size: .74rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1b7368, #0d4f46);
  box-shadow: 0 6px 10px rgba(12, 45, 40, 0.22);
}
.faq details { margin-bottom: .6rem; background: #fff; border: 1px solid #eadfcb; border-radius: 10px; padding: .8rem; }
.cta-final { background: linear-gradient(120deg, #0d4f46, #16695f); color: #fff; }
.cta-final h2 { color: #fff; }
.site-footer { background: #0b3f38; color: #eaf6f4; padding: 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.site-footer a { color: #eaf6f4; margin-right: .7rem; }
.ethical { margin-top: 1rem; opacity: .9; font-size: .94rem; }
.whatsapp-float { position: fixed; right: 1rem; bottom: 1rem; background: #1da851; color: #fff; padding: .8rem 1rem; border-radius: 999px; font-weight: 700; }
@media (max-width: 980px) {
  .grid-2,.cards .card-grid,.footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { height: 360px; }
}
@media (max-width: 760px) {
  .menu-btn { display: inline-block; border: 1px solid #d8c5a1; background: #fff; border-radius: 10px; padding: .5rem .8rem; }
  .menu { display: none; position: absolute; right: 4%; top: 72px; width: 92%; background: #fff; border: 1px solid #e8ddc8; border-radius: 12px; padding: 1rem; gap: .7rem; }
  .menu a { display: block; text-align: center; }
  .menu-drop-btn { width: 100%; }
  .menu-dropdown { width: 100%; }
  .menu-dropdown-panel {
    position: static;
    min-width: 100%;
    margin-top: .5rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border-style: dashed;
  }
  .menu-dropdown.open .menu-dropdown-panel { display: grid; }
  .menu.open { display: grid; }
  .grid-2,.cards .card-grid,.footer-grid { grid-template-columns: 1fr; }
  .hero-photo { height: 320px; object-position: center 16%; }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-show {
  opacity: 1;
  transform: translateY(0);
}
.card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,.09);
}
.btn {
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
}
.hero-photo {
  animation: heroFade 1s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
