:root {
  --olive: #6c7337;
  --olive-dark: #454d22;
  --olive-soft: #eef4df;
  --gold: #bf8b21;
  --gold-light: #f5d37c;
  --rose: #d98f9b;
  --rose-deep: #bd6179;
  --rose-soft: #fff0f4;
  --peach: #ffd9c8;
  --butter: #fff2bf;
  --mint: #dff2d8;
  --lilac: #eadcf8;
  --sky: #dfefff;
  --cream: #fffaf2;
  --sand: #f4ead8;
  --white: #ffffff;
  --ink: #25251d;
  --muted: #6f6a61;
  --border: rgba(108, 115, 55, 0.18);
  --border-rose: rgba(217, 143, 155, 0.28);
  --shadow: 0 22px 60px rgba(57, 53, 41, 0.13);
  --shadow-color: 0 24px 58px rgba(189, 97, 121, 0.15);
  --radius: 30px;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 218, 204, .62), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(223, 242, 216, .72), transparent 30%),
    radial-gradient(circle at 45% 100%, rgba(234, 220, 248, .45), transparent 38%),
    var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 38px)); margin: 0 auto; }

::selection { background: rgba(217, 143, 155, .28); color: var(--olive-dark); }

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 14px 30px rgba(217, 143, 155, .22); }
  50% { box-shadow: 0 20px 42px rgba(182, 138, 44, .28); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,143,155,0.14);
  box-shadow: 0 10px 35px rgba(59, 45, 30, .06);
}
.topbar {
  background: linear-gradient(90deg, var(--olive-dark), var(--olive), var(--rose-deep), var(--gold));
  background-size: 220% 220%;
  animation: shimmer 12s ease infinite;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .02em;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(182,138,44,.10));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-menu a {
  color: #3a3c2f;
  position: relative;
  transition: color .25s ease, transform .25s ease;
}
.nav-menu a:hover { color: var(--rose-deep); transform: translateY(-1px); }
.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--olive));
  transition: .25s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--olive), var(--gold));
  color: white !important;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(108,115,55,.20);
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-rose);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, var(--rose-soft));
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--olive-dark);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 675px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--sand);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 220px;
  height: 220px;
  right: 8%;
  top: 14%;
  background: radial-gradient(circle, rgba(255,242,191,.82), rgba(217,143,155,.18) 58%, transparent 70%);
  animation: floatSoft 7s ease-in-out infinite;
}
.hero::after {
  width: 140px;
  height: 140px;
  left: 8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(223,242,216,.85), rgba(182,138,44,.14) 58%, transparent 72%);
  animation: floatSoft 8.5s ease-in-out infinite reverse;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-eventos.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.02) brightness(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, .03), rgba(255, 245, 247, .50) 34%, rgba(255, 250, 242, .86) 64%),
    radial-gradient(circle at 10% 82%, rgba(255, 218, 204, .62), transparent 38%),
    linear-gradient(90deg, rgba(255,250,242,.98) 0%, rgba(255,243,246,.86) 44%, rgba(255,250,242,.36) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(calc((100% - 1160px)/2), 19px);
  animation: fadeUp .75s ease both;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  padding: 8px 13px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(217,143,155,.22);
  border-radius: 999px;
}
.eyebrow::after {
  content: '✧';
  color: var(--gold);
  font-size: 13px;
}
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.02;
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 94px); max-width: 800px; margin-top: 16px; }
h1 span, .accent-word {
  color: var(--rose-deep);
}
h2 { font-size: clamp(38px, 4.5vw, 62px); }
h3 { font-size: clamp(34px, 3.8vw, 54px); }
h4 { font-size: 30px; }
.hero p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #4e4f44;
  font-size: clamp(16px, 2vw, 19px);
}
.hero-actions, .proposal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .065em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold), var(--olive));
  background-size: 190% 190%;
  box-shadow: 0 15px 30px rgba(189,97,121,.22);
  animation: pulseGlow 4s ease-in-out infinite;
}
.btn-primary:hover { background-position: 100% 50%; }
.btn-outline {
  color: var(--olive-dark);
  background: rgba(255,255,255,.72);
  border-color: rgba(217,143,155,.34);
}
.btn-outline:hover { background: var(--rose-soft); border-color: rgba(217,143,155,.55); }
.btn-soft {
  color: var(--olive-dark);
  background: linear-gradient(135deg, var(--olive-soft), #fff, var(--butter));
  border-color: rgba(108,115,55,.12);
}
.btn-light {
  background: white;
  color: var(--olive-dark);
}
.btn.full { width: 100%; }

.intro-strip {
  background: rgba(255,255,255,.78);
  border-top: 1px solid rgba(217,143,155,.16);
  border-bottom: 1px solid rgba(108,115,55,.16);
  backdrop-filter: blur(12px);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.strip-grid article {
  padding: 26px 20px;
  border-right: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  transition: transform .28s ease, background .28s ease;
}
.strip-grid article:nth-child(1) { background: linear-gradient(135deg, rgba(255,240,244,.62), transparent); }
.strip-grid article:nth-child(2) { background: linear-gradient(135deg, rgba(223,242,216,.70), transparent); }
.strip-grid article:nth-child(3) { background: linear-gradient(135deg, rgba(255,242,191,.58), transparent); }
.strip-grid article:nth-child(4) { background: linear-gradient(135deg, rgba(234,220,248,.50), transparent); }
.strip-grid article:hover { transform: translateY(-4px); background-color: #fff; }
.strip-grid article:last-child { border-right: 0; }
.strip-icon {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--olive), var(--gold));
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(108,115,55,.16);
}
.strip-grid strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.strip-grid small { color: var(--muted); line-height: 1.45; }

.section { padding: clamp(72px, 8vw, 112px) 0; position: relative; }
.section-heading {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 54px;
  animation: fadeUp .7s ease both;
}
.section-heading h2::after {
  content: '';
  display: block;
  width: 94px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--olive));
}
.section-heading p {
  color: var(--muted);
  margin: 16px auto 0;
}
.section-heading.compact { margin-bottom: 34px; }

.proposals {
  background:
    radial-gradient(circle at 10% 16%, rgba(255,217,200,.48), transparent 28%),
    radial-gradient(circle at 92% 30%, rgba(223,242,216,.62), transparent 30%),
    linear-gradient(180deg, var(--cream), #fff 48%, #fff7f7);
}
.proposal-card {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-color);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
}
.proposal-card:hover { transform: translateY(-6px); box-shadow: 0 30px 72px rgba(57,53,41,.16); }
.proposal-card::before {
  content: '';
  position: absolute;
  inset: auto -120px -170px auto;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,217,200,.62), rgba(217,143,155,.20) 58%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.proposal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(217,143,155,.52), rgba(255,242,191,.68), rgba(108,115,55,.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.jardin-card::before { background: radial-gradient(circle, rgba(223,242,216,.82), rgba(108,115,55,.15) 58%, transparent 72%); }
.reino-card { background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,240,244,.82)); }
.jardin-card { background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,249,230,.84)); }
.proposal-card.reverse .proposal-copy { order: 2; }
.proposal-number {
  display: inline-flex;
  color: white;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
}
.jardin-card .proposal-number { background: linear-gradient(135deg, var(--olive), var(--gold)); }
.proposal-copy p { color: var(--muted); margin: 16px 0 0; }
.mini-title {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rose-deep);
  letter-spacing: .09em;
}
.jardin-card .mini-title { color: var(--olive); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.check-list.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.check-list li {
  position: relative;
  padding-left: 31px;
  color: #444438;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  font-weight: 900;
  font-size: 12px;
}
.jardin-card .check-list li::before { background: linear-gradient(135deg, var(--olive), var(--gold)); }
.closing-question {
  font-family: var(--font-title);
  font-size: 25px;
  color: var(--rose-deep) !important;
}
.jardin-card .closing-question { color: var(--olive-dark) !important; }
.proposal-visual {
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  background: rgba(255,255,255,.70);
  box-shadow: inset 0 0 0 1px rgba(217,143,155,.08), 0 18px 34px rgba(57,53,41,.08);
  backdrop-filter: blur(10px);
}
.gallery-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.gallery-title h4 { font-size: 27px; }
.gallery-title span { color: var(--muted); font-size: 12px; max-width: 250px; text-align: right; }
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand), var(--rose-soft));
  box-shadow: 0 13px 24px rgba(57,53,41,.10);
}
.mini-gallery a::after {
  content: 'Ver detalle';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mini-gallery a:hover::after { opacity: 1; transform: translateY(0); }
.mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.mini-gallery a:hover img { transform: scale(1.08); filter: saturate(1.15) brightness(.95); }

.experience {
  background:
    radial-gradient(circle at 12% 22%, rgba(255,242,191,.70), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(234,220,248,.48), transparent 30%),
    linear-gradient(135deg, #fff7ee, #fff0f4 54%, #f4faed);
  border-top: 1px solid rgba(217,143,155,.18);
  border-bottom: 1px solid rgba(108,115,55,.16);
}
.experience-grid, .quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}
.experience-copy p, .quote-copy p { color: var(--muted); max-width: 560px; }
.feature-list { display: grid; gap: 16px; }
.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px 18px;
  padding: 21px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 15px 28px rgba(57,53,41,.08);
  transition: transform .28s ease, background .28s ease;
}
.feature-list article:hover { transform: translateX(6px); background: #fff; }
.feature-list article span {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold), var(--olive));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(189,97,121,.18);
}
.feature-list h3 {
  font-family: var(--font-body);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}
.feature-list p { margin: -6px 0 0; color: var(--muted); }

.quote-section {
  background:
    radial-gradient(circle at 86% 5%, rgba(223,242,216,.60), transparent 30%),
    radial-gradient(circle at 0% 80%, rgba(255,217,200,.48), transparent 28%),
    #fff;
}
.note-card {
  margin-top: 26px;
  padding: 19px 21px;
  border-radius: 20px;
  border: 1px solid rgba(182,138,44,.22);
  background: linear-gradient(135deg, #fffaf0, #fff2f5);
  color: var(--muted);
  display: grid;
  gap: 3px;
  box-shadow: 0 13px 24px rgba(182,138,44,.08);
}
.note-card strong { color: var(--olive-dark); }
.quote-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,240,244,.76), rgba(244,250,237,.70));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.quote-form::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -100px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,242,191,.76), transparent 68%);
}
.quote-form > * { position: relative; z-index: 2; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
label {
  display: grid;
  gap: 8px;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(217,143,155,.22);
  background: rgba(255,255,255,.88);
  border-radius: 17px;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
textarea { resize: vertical; min-height: 118px; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(189,97,121,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217,143,155,.12), 0 12px 24px rgba(217,143,155,.08);
}
.quote-form > label { margin-bottom: 16px; }
.form-help { color: var(--muted); font-size: 12px; text-align: center; margin: 14px 0 0; }

.faq {
  background:
    radial-gradient(circle at 10% 20%, rgba(234,220,248,.42), transparent 30%),
    radial-gradient(circle at 88% 60%, rgba(255,242,191,.55), transparent 32%),
    var(--cream);
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details {
  border: 1px solid rgba(217,143,155,.20);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(57,53,41,.06);
  transition: transform .25s ease, border-color .25s ease;
}
details:hover { transform: translateY(-2px); border-color: rgba(182,138,44,.32); }
details[open] { background: linear-gradient(135deg, #fff, #fff5f7); }
summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 900;
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}
details[open] summary::after { content: '–'; }
details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
}

.closing-cta {
  background:
    radial-gradient(circle at 86% 25%, rgba(255,242,191,.28), transparent 28%),
    linear-gradient(135deg, var(--olive-dark), var(--olive), var(--rose-deep));
  color: white;
  padding: 58px 0;
  position: relative;
  overflow: hidden;
}
.closing-cta::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.closing-cta h2 { color: white; font-size: clamp(34px, 4.2vw, 52px); }
.closing-cta p { color: rgba(255,255,255,.82); margin: 12px 0 0; }
.closing-cta .eyebrow { color: var(--gold-light); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.closing-cta .eyebrow::after { color: #fff; }

.footer {
  background: linear-gradient(180deg, #fff, #fff8f1);
  border-top: 1px solid rgba(217,143,155,.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 34px;
  padding: 42px 0;
}
.footer img { width: 150px; filter: drop-shadow(0 8px 14px rgba(182,138,44,.10)); }
.footer h3 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--olive-dark);
  margin: 0 0 12px;
}
.footer p, .footer a {
  color: var(--muted);
  margin: 0 0 6px;
  display: block;
}
.footer a { transition: color .25s ease, transform .25s ease; }
.footer a:hover { color: var(--rose-deep); transform: translateX(4px); }
.copyright {
  border-top: 1px solid rgba(217,143,155,.15);
  padding: 16px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 14px 19px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 16px 34px rgba(37,211,102,.30);
  transition: transform .25s ease;
}
.float-whatsapp:hover { transform: translateY(-4px) scale(1.02); }

@media (max-width: 980px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner span:first-child { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 24px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 0; }
  .nav-cta { text-align: center; }
  .hero { min-height: 600px; }
  .hero-content { margin-left: 19px; max-width: calc(100% - 38px); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid article:nth-child(2) { border-right: 0; }
  .proposal-card, .proposal-card.reverse {
    grid-template-columns: 1fr;
  }
  .proposal-card.reverse .proposal-copy { order: 0; }
  .experience-grid, .quote-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 126px; }
  .navbar { min-height: 72px; }
  .hero { min-height: 575px; }
  .hero::before { width: 150px; height: 150px; right: -38px; top: 90px; }
  .hero::after { width: 95px; height: 95px; left: -20px; bottom: 42px; }
  .hero-overlay {
    background:
      radial-gradient(circle at 86% 20%, rgba(255,240,244,.70), transparent 28%),
      linear-gradient(180deg, rgba(255,250,242,.94), rgba(255,250,242,.80));
  }
  h1 { font-size: clamp(42px, 12vw, 60px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  h3 { font-size: clamp(32px, 9vw, 44px); }
  .hero-actions, .proposal-actions { align-items: stretch; }
  .hero-actions .btn, .proposal-actions .btn { width: 100%; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid article { border-right: 0; border-bottom: 1px solid var(--border); }
  .strip-grid article:last-child { border-bottom: 0; }
  .proposal-card { padding: 20px; border-radius: 24px; }
  .proposal-card:hover { transform: none; }
  .gallery-title { display: block; }
  .gallery-title span { display: block; max-width: none; text-align: left; margin-top: 4px; }
  .mini-gallery { gap: 9px; }
  .check-list.two-columns { grid-template-columns: 1fr; }
  .form-row.two, .form-row.three { grid-template-columns: 1fr; }
  .quote-form { padding: 20px; }
  .feature-list article { grid-template-columns: 1fr; }
  .feature-list article span { grid-row: auto; }
  .feature-list article:hover { transform: none; }
  .float-whatsapp { left: 14px; right: 14px; text-align: center; }
}


/* Nuevas secciones: Quiénes Somos + Experiencia y Trayectoria */
.about-founder {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 242, 191, .62), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(223, 242, 216, .64), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #fff0f4 48%, #f5faec 100%);
  overflow: hidden;
}
.about-founder::before,
.about-founder::after,
.trajectory-section::before,
.trajectory-section::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.about-founder::before {
  width: 260px;
  height: 260px;
  left: -95px;
  top: 54px;
  border: 1px solid rgba(108, 115, 55, .22);
  animation: floatSoft 9s ease-in-out infinite;
}
.about-founder::after {
  width: 170px;
  height: 170px;
  right: -50px;
  bottom: 70px;
  background: radial-gradient(circle, rgba(217, 143, 155, .20), transparent 70%);
  animation: floatSoft 8s ease-in-out infinite reverse;
}
.about-founder-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.founder-card {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,250,242,.76)),
    radial-gradient(circle at 20% 20%, rgba(255,242,191,.34), transparent 45%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-color);
  text-align: center;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(108,115,55,.16);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.founder-photo-wrap {
  width: min(330px, 78vw);
  aspect-ratio: 1/1;
  margin: 0 auto 26px;
  border-radius: 50%;
  padding: 11px;
  background: linear-gradient(135deg, var(--olive), var(--gold), var(--rose));
  box-shadow: 0 22px 44px rgba(57,53,41,.16);
  position: relative;
}
.founder-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(108,115,55,.28);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255,250,242,.96);
}
.founder-signature h2 {
  font-size: clamp(42px, 5vw, 64px);
  color: var(--gold);
  margin: 0;
}
.founder-signature span {
  display: inline-block;
  margin-top: 2px;
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.about-copy {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(69,77,34,.96), rgba(108,115,55,.92)),
    radial-gradient(circle at 90% 10%, rgba(245,211,124,.20), transparent 40%);
  color: white;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-copy::before {
  content: '✿';
  position: absolute;
  right: 30px;
  top: 24px;
  color: rgba(255,255,255,.14);
  font-size: 110px;
  line-height: 1;
}
.about-copy .eyebrow {
  color: var(--gold-light);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}
.about-copy h2 { color: white; margin-top: 16px; }
.about-copy p { color: rgba(255,255,255,.86); font-size: 16px; }
.about-highlight {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.about-highlight strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 8px;
}
.about-highlight p { margin: 0; }

.trajectory-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(108, 115, 55, .14), transparent 26%),
    radial-gradient(circle at 95% 12%, rgba(217, 143, 155, .18), transparent 28%),
    linear-gradient(135deg, #fbf3e5 0%, #fffaf2 48%, #f6f3e7 100%);
  border-top: 1px solid rgba(108,115,55,.13);
  border-bottom: 1px solid rgba(217,143,155,.16);
  overflow: hidden;
}
.trajectory-section::before {
  width: 360px;
  height: 360px;
  left: -160px;
  top: -140px;
  border: 1px solid rgba(108,115,55,.20);
  animation: floatSoft 10s ease-in-out infinite;
}
.trajectory-section::after {
  width: 260px;
  height: 260px;
  right: -92px;
  bottom: -95px;
  background: radial-gradient(circle, rgba(255, 242, 191, .70), transparent 70%);
  animation: floatSoft 9s ease-in-out infinite reverse;
}
.trajectory-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .58fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  margin-bottom: 54px;
}
.trajectory-hero h2 {
  color: var(--gold);
  max-width: 820px;
}
.trajectory-hero p {
  color: #555047;
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}
.trajectory-quote {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(244,250,237,.80));
  border: 1px solid rgba(108,115,55,.14);
  box-shadow: 0 16px 34px rgba(57,53,41,.10);
}
.trajectory-quote span {
  display: block;
  font-family: var(--font-title);
  color: var(--rose-deep);
  font-size: 62px;
  line-height: .72;
}
.trajectory-quote p {
  margin: 0;
  color: var(--olive-dark);
  font-weight: 700;
}
.timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(108,115,55,.10), rgba(191,139,33,.55), rgba(217,143,155,.42), rgba(108,115,55,.10));
  z-index: -1;
}
.timeline-item {
  padding: 25px 22px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 18px 38px rgba(57,53,41,.09);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.timeline-item:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: 0 26px 48px rgba(57,53,41,.14);
}
.timeline-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 0 22px;
  color: white;
  font-size: 24px;
  background: linear-gradient(135deg, var(--olive), var(--gold), var(--rose));
  box-shadow: 0 15px 26px rgba(108,115,55,.18);
}
.timeline-item h3 {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.footer-links {
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-links a {
  color: #8f5b2d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #c88945;
  text-decoration: underline;
}
.footer-links span { color: #d7b98e; }

@media (max-width: 980px) {
  .about-founder-grid,
  .trajectory-hero {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before { display: none; }
}

@media (max-width: 700px) {
  .about-copy,
  .founder-card {
    border-radius: 24px;
  }
  .founder-photo-wrap {
    width: min(270px, 72vw);
  }
  .about-highlight strong { font-size: 27px; }
  .trajectory-hero { margin-bottom: 34px; }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-item:hover { transform: none; }
}

