:root {
  --green-950: #063b27;
  --green-900: #0a4a31;
  --green-800: #0d5a39;
  --green-700: #167047;
  --green-100: #e7f0eb;
  --cream: #f7f4ec;
  --white: #ffffff;
  --ink: #15211b;
  --muted: #607068;
  --orange: #f4772f;
  --orange-dark: #df6420;
  --line: rgba(13, 90, 57, .12);
  --shadow: 0 24px 70px rgba(8, 43, 29, .14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: var(--green-950);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 11px 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,90,57,.07);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 40px rgba(6,59,39,.08);
  padding: 9px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--green-950); min-width: max-content; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { display: grid; line-height: 1.1; gap: 5px; }
.brand strong { font-size: 15px; letter-spacing: -.01em; }
.brand small { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .78; }

.nav { display: flex; align-items: center; gap: 26px; color: var(--green-950); font-size: 14px; font-weight: 650; }
.nav > a:not(.btn) { position: relative; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s ease; }
.nav > a:not(.btn):hover::after { right: 0; }

.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--green-950); margin: 5px 0; border-radius: 5px; transition: .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 24px rgba(244,119,47,.22); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 16px 32px rgba(244,119,47,.28); }
.btn-light { background: #fff; color: var(--green-950); box-shadow: 0 10px 25px rgba(0,0,0,.1); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-header { min-height: 42px; padding-inline: 18px; background: var(--orange); color: #fff; }
.btn-block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 124px 0 84px;
  background: linear-gradient(180deg, #eef3ef 0%, #f7f8f4 100%);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -240px;
  border-radius: 50%;
  background: rgba(13,90,57,.06);
  z-index: -1;
}
.hero-shell { position: relative; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 640px;
  padding: 34px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 34px 36px;
  color: var(--green-950);
  border-radius: 32px;
  background: rgba(248, 251, 248, .42);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 25px 60px rgba(6,59,39,.12);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  z-index: -1;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-weight: 800; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(244,119,47,.14); }
.eyebrow-light { color: var(--green-700); }
.hero h1 { margin: 18px 0 20px; max-width: 650px; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 5.7vw, 78px); line-height: .98; font-weight: 500; letter-spacing: -.055em; text-wrap: balance; }
.hero-copy > p { max-width: 560px; margin: 0 0 28px; font-size: 17px; line-height: 1.7; color: #4c6056; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-ghost { color: var(--green-950); border-color: rgba(13,90,57,.2); background: rgba(255,255,255,.72); backdrop-filter: blur(8px); }
.hero .btn-ghost:hover { background: #fff; border-color: rgba(13,90,57,.34); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: #3a4c43; font-size: 12px; font-weight: 750; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: "✓"; color: var(--orange-dark); font-weight: 900; }
.hero-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--green-100);
  box-shadow: 0 28px 75px rgba(6,59,39,.17);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(239,243,238,.46) 0%, rgba(239,243,238,.2) 28%, rgba(7,36,24,.08) 72%, rgba(7,36,24,.16) 100%);
}
.hero-visual::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { position: absolute; inset: 0; object-fit: cover; object-position: center; }
.hero-badge { position: absolute; right: 24px; bottom: 24px; z-index: 3; display: grid; gap: 2px; padding: 13px 16px; color: #fff; background: rgba(6,59,39,.86); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.hero-badge strong { font-size: 13px; }
.hero-badge span { font-size: 10px; opacity: .82; text-transform: uppercase; letter-spacing: .08em; }

.booking-card {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(13,90,57,.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.booking-strip { position: relative; z-index: 4; display: grid; grid-template-columns: .82fr 1.55fr auto; gap: 18px; align-items: end; margin-top: -42px; }
.booking-head { margin: 0; align-self: center; }
.booking-kicker { color: var(--orange-dark); font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.booking-card h2 { margin: 4px 0 4px; font-size: 23px; line-height: 1.1; color: var(--green-950); letter-spacing: -.035em; }
.booking-card p { margin: 0; color: var(--muted); font-size: 11px; }
.booking-fields { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin: 0; }
.booking-fields label { display: grid; gap: 5px; }
.booking-fields label span { font-size: 10px; font-weight: 800; color: var(--green-950); text-transform: uppercase; letter-spacing: .07em; }
.booking-fields input, .booking-fields select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}
.booking-fields input:focus, .booking-fields select:focus { border-color: rgba(244,119,47,.72); box-shadow: 0 0 0 4px rgba(244,119,47,.1); }
.booking-strip > .btn { min-height: 48px; white-space: nowrap; }
.booking-card > small { grid-column: 1 / -1; display: block; margin-top: -8px; text-align: right; color: #7a8880; font-size: 10px; }
#reserva { scroll-margin-top: 100px; }


.quick-benefits { position: relative; z-index: 5; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit { display: flex; align-items: center; gap: 14px; padding: 26px 24px; border-right: 1px solid var(--line); }
.benefit:first-child { padding-left: 0; }
.benefit:last-child { border-right: 0; }
.icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 13px; background: #fff2ea; color: var(--orange); }
.icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.benefit div { display: grid; gap: 2px; }
.benefit strong { color: var(--green-950); font-size: 14px; }
.benefit small { color: var(--muted); font-size: 12px; }

.section { padding: 118px 0; }
.split-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 110px; align-items: center; }
.collage { min-height: 620px; position: relative; }
.collage figure { margin: 0; overflow: hidden; background: var(--green-100); box-shadow: var(--shadow); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage-main { position: absolute; inset: 0 120px 55px 0; border-radius: var(--radius-xl); }
.collage-small { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border: 12px solid #fff; border-radius: var(--radius-lg); }
.collage-badge { position: absolute; left: 28px; bottom: 23px; display: grid; gap: 1px; min-width: 150px; padding: 14px 18px; color: #fff; background: var(--green-900); border-radius: 16px; box-shadow: var(--shadow); }
.collage-badge strong { font-size: 15px; }
.collage-badge span { font-size: 11px; opacity: .72; }
.section-copy h2, .section-heading h2, .location-copy h2, .experience-copy h2, .final-cta h2 { margin: 14px 0 22px; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(40px, 5vw, 62px); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.section-copy > p, .section-heading > p, .location-copy > p { color: var(--muted); font-size: 16px; max-width: 590px; }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 650; color: #34443b; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); font-size: 12px; font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-800); font-weight: 800; font-size: 14px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.rooms { background: var(--cream); }
.section-heading.centered { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.section-heading.centered > p { margin-inline: auto; }
.room-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 18px; }
.feature-card { position: relative; min-height: 490px; overflow: hidden; border-radius: var(--radius-lg); background: var(--green-900); box-shadow: 0 18px 45px rgba(6,59,39,.1); }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-card:hover img { transform: scale(1.035); }
.feature-card picture { position: absolute; inset: 0; }
.card-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,29,20,.02) 35%, rgba(4,34,22,.88) 100%); }
.feature-content { position: absolute; inset: auto 26px 26px; color: #fff; }
.feature-content span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: #ffd8c1; }
.feature-content h3 { margin: 5px 0 0; font-size: 28px; line-height: 1.05; letter-spacing: -.04em; }
.feature-content p { margin: 10px 0 0; max-width: 450px; color: rgba(255,255,255,.78); font-size: 13px; }
.feature-large .feature-content h3 { font-size: 36px; }

.experience { background: var(--green-950); color: #fff; overflow: hidden; }
.experience-grid { display: grid; grid-template-columns: .85fr 1.05fr; align-items: center; gap: 90px; }
.experience-copy h2 { color: #fff; }
.experience-copy > p { max-width: 560px; color: rgba(255,255,255,.72); font-size: 16px; }
.mini-stats { display: flex; gap: 18px; margin: 30px 0 32px; }
.mini-stats div { min-width: 150px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.05); }
.mini-stats strong { display: block; font-size: 24px; line-height: 1; color: #fff; }
.mini-stats span { display: block; margin-top: 7px; font-size: 11px; color: rgba(255,255,255,.62); }
.experience-image { margin: 0; position: relative; min-height: 560px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 25px 70px rgba(0,0,0,.26); }
.experience-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: inherit; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }

.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.location-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.map-wrap { min-height: 480px; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 480px; filter: saturate(.75) contrast(.98); }

.faq { padding-top: 92px; background: #f8faf8; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq .section-heading { position: sticky; top: 110px; }
.faq .section-heading h2 { margin-bottom: 14px; }
.faq .section-heading .btn { margin-top: 18px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 0; }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; padding: 24px 0; font-weight: 800; color: var(--green-950); font-size: 17px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-800); font-size: 20px; font-weight: 500; transition: transform .2s ease; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { margin: -8px 42px 22px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 70px 0; background: var(--orange); color: #fff; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta .eyebrow { color: rgba(255,255,255,.82); }
.final-cta h2 { color: #fff; margin-bottom: 0; max-width: 780px; font-size: clamp(36px, 4.5vw, 56px); }
.final-cta .btn-light { flex: 0 0 auto; }

.footer { background: #062f20; color: rgba(255,255,255,.72); padding: 48px 0 26px; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 34px; }
.brand-footer { color: #fff; }
.footer-info { display: grid; gap: 5px; text-align: center; font-size: 12px; }
.footer-info a { color: #fff; font-weight: 700; }
.footer-whatsapp { color: #fff; font-weight: 800; font-size: 13px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.footer-credit { text-transform: none; letter-spacing: 0; white-space: nowrap; }
.footer-credit a { color: #fff; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.34); transition: color .2s ease, border-color .2s ease; }
.footer-credit a:hover { color: #ff7a2f; border-color: #ff7a2f; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #20b858; color: #fff; box-shadow: 0 14px 35px rgba(7,67,36,.28); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav { gap: 16px; font-size: 13px; }
  .nav > a:not(.btn) { display: none; }
  .hero-grid { min-height: 590px; padding: 28px; }
  .hero-copy { max-width: 500px; }
  .hero-visual { min-height: 100%; }
  .booking-strip { grid-template-columns: .72fr 1.5fr; }
  .booking-strip > .btn { grid-column: 1 / -1; width: 100%; }
  .booking-card > small { text-align: center; }
  .split-grid { gap: 60px; }
  .room-grid { grid-template-columns: 1.2fr 1fr; }
  .feature-card:nth-child(3) { grid-column: 1 / -1; min-height: 380px; }
  .experience-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding: 10px 0; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    color: var(--green-950);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav > a:not(.btn) { display: block; padding: 12px 8px; }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 8px; }
  .brand img { width: 38px; height: 38px; }
  .brand strong { font-size: 14px; }
  .hero { padding: 108px 0 46px; }
  .hero-grid { min-height: 560px; padding: 22px; }
  .hero-copy { max-width: 660px; padding: 28px 24px; }
  .hero h1 { font-size: clamp(48px, 11vw, 68px); }
  .hero-copy > p { font-size: 16px; }
  .hero-visual { min-height: 100%; border-radius: 28px; }
  .hero-badge { right: 14px; bottom: 14px; }
  .booking-strip { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
  .booking-strip .booking-fields { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .booking-strip > .btn { grid-column: auto; }
  .booking-card > small { text-align: center; margin-top: -4px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit { border-bottom: 1px solid var(--line); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:first-child { padding-left: 24px; }
  .section { padding: 84px 0; }
  .split-grid, .experience-grid, .location-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .collage { min-height: 540px; }
  .section-copy h2, .section-heading h2, .location-copy h2, .experience-copy h2 { font-size: clamp(38px, 10vw, 54px); }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: 1 / -1; }
  .feature-card:nth-child(3) { grid-column: auto; min-height: 440px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-image { min-height: 520px; }
  .location-grid { gap: 38px; }
  .faq .section-heading { position: static; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand small { display: none; }
  .hero { padding-top: 96px; }
  .hero-grid { min-height: 480px; padding: 14px; }
  .hero h1 { margin-top: 16px; }
  .hero-copy { padding: 22px 18px; border-radius: 24px; }
  .hero-visual { min-height: 100%; border-radius: 24px; }
  .hero-badge { right: auto; left: 14px; bottom: 14px; }
  .booking-strip .booking-fields { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 8px 14px; }
  .booking-card { padding: 18px; border-radius: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { border-right: 0; padding: 18px 8px; }
  .benefit:first-child { padding-left: 8px; }
  .section { padding: 72px 0; }
  .collage { min-height: 410px; }
  .collage-main { right: 70px; bottom: 40px; }
  .collage-small { width: 44%; border-width: 7px; }
  .collage-badge { left: 16px; bottom: 12px; min-width: 130px; padding: 11px 13px; }
  .room-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(3) { min-height: 410px; }
  .feature-large { grid-column: auto; }
  .feature-content h3, .feature-large .feature-content h3 { font-size: 29px; }
  .mini-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .mini-stats div { min-width: 0; }
  .experience-image { min-height: 390px; }
  .map-wrap, .map-wrap iframe { min-height: 390px; height: 390px; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-info { text-align: left; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
