/* Static shell: layout fallbacks and the small interaction surface that used
   to be supplied by site's frontend runtime. */

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

/* Static replacement for the tiny static dynamic-link presentation used by the
   original header. The content remains, but the plugin stylesheet/runtime is
   not part of the clean bundle. */
.site-listing-dynamic-link {
  display: flex;
  flex-direction: column;
}

.site-listing-dynamic-link__link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.site-listing-dynamic-link__icon.is-svg-icon {
  display: inline-flex;
}

.site-listing-dynamic-link__icon.is-svg-icon svg {
  width: 1em;
  height: 1em;
}

.site-listing-dynamic-link__icon {
  order: 1;
}

.site-listing-dynamic-link__label {
  order: 2;
}

/* Popup templates are content shells, not public sections. They remain
   available in the source only as inert templates for future editing. */
.site-location-popup {
  display: none !important;
}

/* The original breadcrumb plugin sized its inline SVG. Keep that small
   presentation rule locally so the breadcrumb never expands into a full-page
   column after the plugin stylesheet is removed. */
.site-breadcrumbs .site-blocks-icon,
.site-breadcrumbs .site-blocks-icon svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  max-width: 1em;
  vertical-align: middle;
}

.site-breadcrumbs .site-blocks-icon svg {
  overflow: visible;
}

.site-breadcrumbs__wrap,
.site-breadcrumbs__item,
.site-breadcrumbs__item-sep {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

/* site used this class while waiting for its animation runtime. A
   static site must remain fully usable when JavaScript is unavailable. */
.site-invisible {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Custom select: same geometry and focus language as the contact inputs,
   without exposing the operating system's native option list. */
.static-select {
  position: relative;
  width: 100%;
}

.static-select .select-caret-down-wrapper {
  display: none !important;
}

.static-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.static-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(15, 25, 62, 0.24);
  border-radius: var(--dv-radius-sm, 8px);
  background: #fff;
  color: var(--dv-ink, #2b2e33);
  font: inherit;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

/* The exported kit styles every button as a CTA. This trigger is a form
   control, so it must share the input language instead of inheriting the
   orange CTA treatment. */
body.site-kit-3 .site .static-select-trigger {
  min-height: 52px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(15, 25, 62, 0.24) !important;
  border-radius: var(--dv-radius-sm, 8px) !important;
  background: #fff !important;
  color: var(--dv-ink, #2b2e33) !important;
  box-shadow: none !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.static-select-trigger:hover {
  border-color: rgba(15, 25, 62, 0.48);
  background: #fcfdff;
}

body.site-kit-3 .site .static-select-trigger:hover {
  border-color: rgba(15, 25, 62, 0.48) !important;
  background: #fcfdff !important;
  color: var(--dv-ink, #2b2e33) !important;
  box-shadow: none !important;
}

.static-select-trigger:focus-visible,
.static-select.is-open .static-select-trigger {
  border-color: var(--dv-orange, #ee8b33);
  box-shadow: 0 0 0 3px rgba(248, 176, 68, 0.24);
  outline: none;
}

body.site-kit-3 .site .static-select-trigger:focus-visible,
body.site-kit-3 .site .static-select.is-open .static-select-trigger {
  border-color: var(--dv-orange, #ee8b33) !important;
  background: #fff !important;
  color: var(--dv-ink, #2b2e33) !important;
  box-shadow: 0 0 0 3px rgba(248, 176, 68, 0.24) !important;
  outline: none !important;
}

.static-select-value {
  min-width: 0;
  overflow: hidden;
  color: var(--dv-ink, #2b2e33);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.static-select-value.is-placeholder {
  color: #71809a;
}

.static-select-chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-left: 16px;
  border-right: 2px solid var(--dv-navy, #0f193e);
  border-bottom: 2px solid var(--dv-navy, #0f193e);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), border-color 160ms ease;
}

.static-select.is-open .static-select-chevron {
  border-color: var(--dv-orange, #ee8b33);
  transform: translateY(2px) rotate(225deg);
}

.static-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 240px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid rgba(15, 25, 62, 0.14);
  border-radius: var(--dv-radius-sm, 8px);
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 25, 62, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.static-select-menu[hidden] {
  display: none;
}

.static-select.is-open .static-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.static-select-option {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 5px;
  color: var(--dv-ink, #2b2e33);
  font: inherit;
  line-height: 1.35;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}

.static-select-option:hover,
.static-select-option:focus-visible {
  background: rgba(238, 139, 51, 0.12);
  color: var(--dv-navy, #0f193e);
  outline: none;
}

.static-select-option[aria-selected="true"] {
  background: rgba(15, 25, 62, 0.07);
  color: var(--dv-navy, #0f193e);
  font-weight: 700;
}

.static-select-option[aria-selected="true"]::after {
  width: 6px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid var(--dv-orange, #ee8b33);
  border-bottom: 2px solid var(--dv-orange, #ee8b33);
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .static-select-trigger,
  .static-select-chevron,
  .static-select-menu,
  .static-select-option {
    transition: none !important;
  }
}

.site-location-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Hero fallback before the first slideshow tick. */
#inicio {
  background-image: linear-gradient(rgba(15, 25, 62, 0.42), rgba(15, 25, 62, 0.42)),
    url('/assets/media/2021/10/Slider_B-2.jpg') !important;
  background-position: center;
  background-size: cover;
}

/* Native, one-slide-at-a-time carousel surface. */
.site-image-carousel-wrapper.static-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 6px;
}

.static-carousel > .swiper-wrapper {
  display: flex;
  width: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.static-carousel .swiper-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100% !important;
}

.static-carousel.static-carousel-fade > .swiper-wrapper {
  display: block;
  position: relative;
  min-height: 1px;
  transform: none !important;
}

.static-carousel.static-carousel-fade .swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.static-carousel.static-carousel-fade .swiper-slide:first-child {
  position: relative;
}

.static-carousel.static-carousel-fade .swiper-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.static-carousel .swiper-slide-image {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  object-fit: fill;
}

.static-carousel .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 18px;
}

.static-carousel .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.static-carousel .swiper-pagination-bullet-active {
  background: #ee8b33;
  transform: scale(1.2);
}

.static-carousel .site-swiper-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
}

.static-carousel .site-swiper-button-prev {
  left: 12px;
}

.static-carousel .site-swiper-button-next {
  right: 12px;
}

/* The exported mobile toggle keeps its icon; its dropdown is now controlled
   by site.js rather than SmartMenus/site. */
@media (max-width: 1024px) {
  /* The exported nav widget is marked hidden on mobile by the original
     responsive classes. The local toggle explicitly promotes it while open. */
  .site-location-header .static-menu-host-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .site-location-header .site-nav-menu--dropdown.static-menu-open {
    display: block !important;
    position: fixed;
    top: var(--static-menu-top, 105px);
    right: 0;
    left: 0;
    margin-top: 0 !important;
    width: 100vw;
    max-height: calc(100vh - var(--static-menu-top, 105px)) !important;
    height: auto !important;
    overflow-y: auto !important;
    transform: scaleY(1) !important;
    z-index: 1001;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 25, 62, 0.16);
  }

  .site-location-header .site-nav-menu--dropdown.static-menu-open a {
    display: block;
    padding: 14px 24px;
  }

  .site-location-header .site-nav-menu--dropdown.static-menu-open ul.site-nav-menu {
    display: block !important;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
  }

  .site-location-header .site-nav-menu--dropdown.static-menu-open ul.site-nav-menu > li {
    display: block !important;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .site-location-header .site-nav-menu--dropdown.static-menu-open ul.site-nav-menu > li > a {
    display: block !important;
    padding: 16px 24px !important;
    color: var(--dv-navy, #0f193e) !important;
    background: #fff !important;
    line-height: 1.4;
  }
}

/* Lightweight gallery lightbox. */
.static-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 12, 32, 0.92);
}

.static-lightbox[hidden] {
  display: none;
}

.static-lightbox img {
  display: block;
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  object-fit: contain;
}

.static-lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(15, 25, 62, 0.8);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.static-lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .static-carousel > .swiper-wrapper,
  .static-carousel.static-carousel-fade .swiper-slide {
    transition: none !important;
  }
}
