.rk-nav-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: flex;
  justify-content: center;
  padding: clamp(12px, 2vw, 22px) clamp(14px, 5vw, 64px);
  pointer-events: none;
}

.rk-nav {
  pointer-events: auto;
  width: 100%;
  max-width: var(--rk-container);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--rk-radius-pill);
  background: rgba(13, 15, 12, .34);
  box-shadow: 0 10px 40px -16px rgba(0, 0, 0, .55);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  transition: background .35s, border-color .35s, box-shadow .35s;
}

.rk-nav-shell.scrolled .rk-nav,
.rk-nav-shell.rk-nav-light .rk-nav {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .45) inset, 0 16px 42px -24px rgba(11, 17, 16, .45);
}

.rk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  padding: 7px 18px 7px 9px;
  border-radius: var(--rk-radius-pill);
  background: var(--rk-white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

.rk-logo-chip,
.rk-wordmark {
  display: block;
  flex-shrink: 0;
}

.rk-logo-chip img {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.rk-wordmark {
  width: clamp(176px, 19vw, 286px);
}

.rk-wordmark img {
  width: 100%;
  height: auto;
}

.rk-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.rk-nav-link {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--rk-radius-pill);
  color: rgba(255, 255, 255, .9);
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.rk-nav-shell.scrolled .rk-nav-link,
.rk-nav-shell.rk-nav-light .rk-nav-link {
  color: #17201a;
}

.rk-nav-link::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: var(--rk-radius-pill);
  background: var(--rk-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.22, .61, .36, 1);
}

.rk-nav-link:hover,
.rk-nav-link[aria-current="page"] {
  color: #bdf0a8;
}

.rk-nav-shell.scrolled .rk-nav-link:hover,
.rk-nav-shell.scrolled .rk-nav-link[aria-current="page"],
.rk-nav-shell.rk-nav-light .rk-nav-link:hover,
.rk-nav-shell.rk-nav-light .rk-nav-link[aria-current="page"] {
  color: var(--rk-green);
}

.rk-nav-link:hover::after,
.rk-nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.rk-nav-tools {
  display: flex;
  align-items: center;
}

.rk-nav-cta {
  min-height: 44px;
  padding: 11px 17px;
  font-size: .92rem;
}

.rk-nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--rk-radius-pill);
  background: rgba(255, 255, 255, .08);
  color: var(--rk-white);
  cursor: pointer;
}

.rk-nav-shell.scrolled .rk-nav-burger,
.rk-nav-shell.rk-nav-light .rk-nav-burger {
  border-color: rgba(11, 17, 16, .12);
  background: rgba(255, 255, 255, .7);
  color: #11170f;
}

.rk-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 104px clamp(22px, 7vw, 54px) 36px;
  background: rgba(245, 247, 245, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22, .61, .36, 1);
}

.rk-mobile-menu.is-open {
  transform: none;
}

.rk-mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(11, 17, 16, .1);
  color: #17201a;
  font-family: var(--rk-font-display);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 800;
  text-decoration: none;
}

.rk-mm-close {
  position: absolute;
  top: 28px;
  right: clamp(22px, 7vw, 54px);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 17, 16, .12);
  border-radius: var(--rk-radius-pill);
  background: transparent;
  color: #17201a;
  cursor: pointer;
  font-size: 1.5rem;
}

.rk-mobile-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rk-mobile-tools .rk-button {
  flex: 1 1 180px;
  font-family: var(--rk-font-body);
  font-size: .98rem;
  font-style: normal;
}

.rk-footer {
  padding: 64px 28px 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--rk-dark);
  color: var(--rk-white);
}

.rk-footer-inner {
  max-width: var(--rk-container);
  margin: 0 auto;
}

.rk-footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 34px;
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.rk-footer-brand {
  max-width: 390px;
}

.rk-footer-logo {
  display: block;
  width: 190px;
  height: 128px;
  max-width: 100%;
  flex-shrink: 0;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--rk-white);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.rk-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rk-footer-claim {
  margin: 0 0 12px;
  color: var(--rk-white);
  font-family: var(--rk-font-display);
  font-size: 23px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.05;
}

.rk-footer-copy {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.65;
}

.rk-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rk-footer-button {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 14px;
}

.rk-footer-button-secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--rk-white);
}

.rk-footer-title {
  margin-bottom: 16px;
  color: var(--rk-green-bright);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rk-footer-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rk-footer-list a,
.rk-footer-list span {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
}

.rk-footer-list .muted {
  color: rgba(255, 255, 255, .5);
}

.rk-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  font-weight: 500;
}

.rk-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.rk-footer-legal a {
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
}

.rk-contact-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.rk-contact-widget-panel {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 236px;
  transform-origin: right bottom;
}

.rk-contact-widget.is-open .rk-contact-widget-panel {
  display: flex;
  animation: rkWidgetPanelIn .26s cubic-bezier(.22, .61, .36, 1) both;
}

.rk-widget-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--rk-line);
  border-radius: 14px;
  background: var(--rk-white);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
  transform: translateY(0);
  transition: transform .2s cubic-bezier(.22, .61, .36, 1), border-color .2s, box-shadow .2s;
}

.rk-contact-widget.is-open .rk-widget-link {
  animation: rkWidgetLinkIn .32s cubic-bezier(.22, .61, .36, 1) both;
}

.rk-contact-widget.is-open .rk-widget-link:nth-child(2) {
  animation-delay: 45ms;
}

.rk-contact-widget.is-open .rk-widget-link:nth-child(3) {
  animation-delay: 90ms;
}

.rk-contact-widget.is-open .rk-widget-link:nth-child(4) {
  animation-delay: 135ms;
}

.rk-widget-link:hover,
.rk-widget-link:focus-visible {
  border-color: rgba(31, 143, 46, .32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
  transform: translateY(-2px);
}

.rk-widget-link-primary {
  border: 0;
  background: var(--rk-green);
  box-shadow: 0 12px 32px rgba(61, 165, 46, .42);
}

.rk-widget-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--rk-dark-soft);
  color: var(--rk-green-bright);
}

.rk-widget-icon-whatsapp {
  background: #25d366;
  color: var(--rk-white);
}

.rk-widget-link-primary .rk-widget-icon {
  background: rgba(0, 0, 0, .14);
  color: var(--rk-white);
}

.rk-widget-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.rk-widget-text strong {
  color: var(--rk-text);
  font-size: 14.5px;
  font-weight: 800;
}

.rk-widget-text span {
  color: #7a7d72;
  font-size: 12px;
  font-weight: 500;
}

.rk-widget-link-primary .rk-widget-text strong {
  color: var(--rk-white);
}

.rk-widget-link-primary .rk-widget-text span {
  color: rgba(255, 255, 255, .78);
}

.rk-contact-widget-toggle {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 64px;
  height: 64px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--rk-green);
  color: var(--rk-white);
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(61, 165, 46, .5);
  transform: translateY(0) scale(1);
  transition: transform .22s cubic-bezier(.22, .61, .36, 1), background .2s, box-shadow .2s;
  animation: rkWidgetBreathe 2.8s ease-in-out infinite;
}

.rk-contact-widget-toggle::before {
  position: absolute;
  content: "";
  inset: -8px;
  z-index: -2;
  border: 1.5px solid rgba(31, 143, 46, .46);
  border-radius: inherit;
  opacity: 0;
  animation: rkWidgetRipple 2.8s ease-out infinite;
  pointer-events: none;
}

.rk-contact-widget-toggle:hover,
.rk-contact-widget-toggle:focus-visible {
  animation: none;
  background: #46bd34;
  box-shadow: 0 18px 42px rgba(61, 165, 46, .58);
  transform: translateY(-3px) scale(1.025);
  outline: 0;
}

.rk-contact-widget-toggle:focus-visible {
  box-shadow: 0 18px 42px rgba(61, 165, 46, .58), 0 0 0 4px rgba(31, 143, 46, .24);
}

.rk-contact-widget.is-open .rk-contact-widget-toggle {
  animation: none;
}

.rk-contact-widget-toggle:active {
  transform: translateY(-1px) scale(.985);
}

.rk-contact-widget.is-open .rk-contact-widget-toggle::before {
  animation: none;
  opacity: 0;
}

.rk-widget-open-content,
.rk-widget-close-content {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border-radius: inherit;
  transition: opacity .24s cubic-bezier(.22, .61, .36, 1), transform .32s cubic-bezier(.22, .61, .36, 1);
}

.rk-widget-open-content svg,
.rk-widget-close-content svg {
  width: 28px;
  height: 28px;
}

.rk-widget-open-content strong,
.rk-widget-close-content strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.rk-widget-open-content {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.rk-widget-close-content {
  opacity: 0;
  transform: rotate(-100deg) scale(.72);
}

.rk-contact-widget.is-open .rk-widget-open-content {
  opacity: 0;
  transform: rotate(100deg) scale(.72);
}

.rk-contact-widget.is-open .rk-widget-close-content {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

@keyframes rkWidgetBreathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  44% {
    transform: translateY(-2px) scale(1.018);
  }
}

@keyframes rkWidgetRipple {
  0% {
    opacity: 0;
    transform: scale(.94);
  }

  18% {
    opacity: .72;
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes rkWidgetPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rkWidgetLinkIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rk-external-embed {
  position: relative;
}

.rk-external-embed-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(31, 143, 46, .12), transparent 42%),
    var(--rk-light);
}

.rk-external-embed-marker {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--rk-green);
  color: var(--rk-white);
  font-size: 28px;
  font-weight: 800;
}

.rk-external-embed-placeholder strong {
  color: var(--rk-text);
  font-size: 20px;
  font-weight: 800;
}

.rk-external-embed-placeholder p {
  max-width: 430px;
  margin: 7px 0 18px;
  color: var(--rk-muted);
  font-size: 14px;
  line-height: 1.5;
}

.rk-external-embed.is-loaded iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 999px) {
  .rk-nav {
    padding: 8px 10px 8px 12px;
  }

  .rk-brand {
    gap: 9px;
    padding: 6px 14px 6px 8px;
  }

  .rk-logo-chip img {
    height: 54px;
  }

  .rk-wordmark {
    width: clamp(158px, 34vw, 220px);
  }

  .rk-nav-links,
  .rk-nav-tools {
    display: none;
  }

  .rk-nav-burger {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .rk-nav-shell {
    padding-inline: 12px;
  }

  .rk-brand {
    padding-right: 12px;
  }

  .rk-logo-chip img {
    height: 48px;
  }

  .rk-wordmark {
    width: 150px;
  }

  .rk-contact-widget {
    right: 14px;
    bottom: 14px;
  }

  .rk-contact-widget-toggle {
    width: 62px;
    height: 62px;
    padding: 0;
  }

  .rk-widget-open-content svg,
  .rk-widget-close-content svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 380px) {
  .rk-nav {
    gap: 10px;
    padding: 7px 9px;
  }

  .rk-brand {
    gap: 7px;
    padding: 5px 10px 5px 7px;
  }

  .rk-logo-chip img {
    height: 42px;
  }

  .rk-wordmark {
    width: 124px;
  }

  .rk-nav-burger {
    width: 42px;
    height: 42px;
  }
}
.rk-nav-shell.scrolled .rk-nav-link,
.rk-nav-shell.rk-nav-light .rk-nav-link {
  color: #17201a;
}
