body.modal-open {
    overflow: visible;
}

#simple-chat-button--container {
    display: none !important;
}

.whatsapp-float {
    position: fixed;
    z-index: 2147483630;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #25d366 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .24);
    cursor: pointer;
    line-height: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    animation: whatsapp-float-pulse 2s 1s ease-out infinite;
}

.whatsapp-float img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background: #25d366 !important;
    box-shadow: 0 12px 29px rgba(0, 0, 0, .28);
    transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@keyframes whatsapp-float-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .52);
    }

    72%,
    100% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float::before {
        animation: none;
    }
}

.contact-modal[hidden] {
    display: none !important;
}

.contact-modal {
    position: fixed;
    z-index: 2147483640;
    inset: 0;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 22px;
    font-family: "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
    color: #173332;
}

.contact-modal *,
.contact-modal *::before,
.contact-modal *::after {
    box-sizing: border-box;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 30, 29, .78);
    backdrop-filter: blur(5px);
}

.contact-modal__dialog {
    position: relative;
    width: min(930px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.contact-modal__intro {
    padding: 48px;
    display: flex;
    align-items: center;
    background: #0d6765;
    color: #fff;
}

.contact-modal__intro h2 {
    margin: 0;
    color: #fff;
    font: 600 38px/1.08 "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
    letter-spacing: -.035em;
}

.contact-modal__close {
    position: absolute;
    z-index: 2;
    right: 17px;
    top: 12px;
    width: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #173332;
    font: 400 35px/1 Arial, sans-serif;
    cursor: pointer;
}

.contact-form {
    padding: 42px;
    margin: 0;
    background: #fff;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form .form-grid__full {
    grid-column: 1 / -1;
}

.contact-form label,
.contact-form .contact-preference legend {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #173332;
    font: 600 14px/1.4 "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 0;
    margin: 0;
    border: 1px solid #cedbd8;
    border-radius: 9px;
    padding: 11px 13px;
    background: #fff;
    color: #173332;
    font: 400 16px/1.4 "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
    box-shadow: none;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(13, 103, 101, .15);
    border-color: #0d6765;
}

.contact-form .contact-preference {
    border: 0;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-form .contact-preference legend {
    width: 100%;
    margin-bottom: 6px;
}

.contact-form .contact-preference label,
.contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-form .contact-preference input,
.contact-form .form-check input {
    width: auto;
    margin-top: 3px;
}

.contact-form .form-check {
    margin: 16px 0;
}

.contact-form .form-status {
    min-height: 24px;
    margin: 9px 0;
    color: #a02b22;
    font-size: 14px;
}

.contact-form .form-status.is-success {
    color: #0d6765;
}

.contact-form .button {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 27px;
    background: #ffb81c;
    color: #173332;
    font: 700 16px/1.2 "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
    cursor: pointer;
}

.contact-form .button:disabled {
    opacity: .65;
    cursor: wait;
}

.contact-form .button--whatsapp {
    background: #25d366;
    color: #103c25;
}

.contact-form .whatsapp-form-actions {
    display: grid;
    gap: 10px;
}

.contact-form .button--secondary {
    min-height: 46px;
    border: 1px solid #0d6765;
    background: #fff;
    color: #0d6765;
    font-size: 14px;
}

.contact-form .whatsapp-form-secondary {
    justify-self: center;
    min-height: 36px;
    padding: 8px 15px;
    font-size: 12px;
}

.contact-form .field-optional {
    color: #607572;
    font-size: 12px;
    font-weight: 400;
}

.contact-form .privacy-copy {
    display: block;
    margin-top: 12px;
    text-align: center;
    color: #607572;
    font-size: 12px;
}

.contact-form.contact-completion[hidden],
.contact-form .contact-completion__done[hidden] {
    display: none;
}

.contact-form .contact-completion__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #0d6765;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form.contact-completion h3 {
    margin: 0 0 12px;
    color: #173332;
    font: 600 30px/1.08 "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
}

.contact-form.contact-completion > p {
    color: #607572;
}

.contact-form .contact-completion__actions {
    display: grid;
    gap: 10px;
}

.contact-form .contact-completion__skip {
    justify-self: center;
    width: auto;
    min-height: 0;
    padding: 5px 10px;
    border: 0;
    background: transparent;
    color: #0d6765;
    font: 700 14px/1.4 "Basic Gothic Pro", "Basic Gothic", Arial, sans-serif;
    cursor: pointer;
}

.contact-form .contact-completion__skip:hover {
    text-decoration: underline;
}

.contact-form .contact-completion__done {
    margin: 24px 0 0;
    padding: 18px;
    border-radius: 10px;
    background: #dff1ee;
    color: #0d6765;
    font-weight: 700;
}

.snapshot-swiper {
    overflow: hidden !important;
}

.snapshot-swiper > .swiper-wrapper {
    display: flex !important;
    gap: var(--snapshot-swiper-gap, 10px);
    transform: none !important;
    transition: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.snapshot-swiper > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.snapshot-swiper > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc((100% - (var(--snapshot-swiper-count, 1) - 1) * var(--snapshot-swiper-gap, 10px)) / var(--snapshot-swiper-count, 1)) !important;
    width: auto !important;
    margin-right: 0 !important;
    scroll-snap-align: start;
}

.elementor-menu-toggle.snapshot-menu-open + .elementor-nav-menu--dropdown,
.elementor-menu-toggle.snapshot-menu-open ~ .elementor-nav-menu--dropdown {
    display: block !important;
    max-height: 100vh !important;
    transform: scaleY(1) !important;
}

.menu-item.snapshot-submenu-open > .sub-menu {
    display: block !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
}

body.elementor-page {
    margin: 0;
}

.rua-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000000000;
    display: grid;
    place-items: center;
    padding: 64px 24px 24px;
    background: rgba(8, 25, 25, .92);
}

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

.rua-gallery-lightbox__image {
    display: block;
    max-width: min(1200px, 100%);
    max-height: calc(100vh - 88px);
    object-fit: contain;
}

.rua-gallery-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
    padding: 8px 14px;
    background: transparent;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 767px) {
    [data-rua-information-content] .elementor-gallery__container {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
    }

    [data-rua-information-content] .elementor-gallery__container > .e-gallery-item {
        position: relative !important;
        inset: auto !important;
        width: auto !important;
        height: auto !important;
        aspect-ratio: 1;
        transform: none !important;
    }

    [data-rua-information-content] .elementor-gallery__container .e-gallery-image {
        position: absolute;
        inset: 0;
        background-position: center;
        background-size: cover;
    }
}

@media (min-width: 1025px) {
    .elementor-402 .elementor-element.elementor-element-3192a0c0 {
        position: relative;
        z-index: 100;
    }

    .elementor-402 .elementor-nav-menu--main .menu-item.snapshot-submenu-open > .sub-menu {
        left: auto !important;
        right: 0 !important;
        width: max-content !important;
        min-width: 320px;
        max-width: min(620px, calc(100vw - 32px));
        overflow: hidden;
        box-sizing: border-box;
        box-shadow: 0 16px 32px rgba(16, 50, 49, .22);
    }

    .elementor-402 .elementor-nav-menu--main .menu-item.snapshot-submenu-open > .sub-menu .elementor-sub-item {
        width: 100%;
        white-space: normal !important;
        overflow-wrap: anywhere;
        box-sizing: border-box;
    }

    .elementor-520 .elementor-nav-menu--main .menu-item.snapshot-submenu-open > .sub-menu {
        top: auto !important;
        bottom: 100% !important;
        left: auto !important;
        right: 0 !important;
        width: max-content !important;
        min-width: 280px;
        max-width: min(620px, calc(100vw - 32px));
        max-height: calc(100vh - 32px);
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        box-shadow: 0 -16px 32px rgba(16, 50, 49, .22);
    }

    .elementor-520 .elementor-nav-menu--main .menu-item.snapshot-submenu-open > .sub-menu .elementor-sub-item {
        width: 100%;
        white-space: normal !important;
        overflow-wrap: anywhere;
        box-sizing: border-box;
    }
}

.rua-testimonials-carousel {
    --rua-testimonials-gap: 10px;
    --rua-testimonials-per-view: 3;
    position: relative;
    width: 100%;
    min-width: 0;
}

.rua-testimonials-carousel__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
    outline: none;
}

.rua-testimonials-carousel__viewport:focus-visible {
    outline: 3px solid rgba(0, 138, 136, .3);
    outline-offset: 4px;
}

.rua-testimonials-carousel__track {
    display: flex;
    gap: var(--rua-testimonials-gap);
    align-items: stretch;
    will-change: transform;
    transition: transform .5s ease;
}

.rua-testimonials-carousel__track.is-resetting {
    transition: none;
}

.rua-testimonials-carousel__slide {
    flex: 0 0 calc((100% - (var(--rua-testimonials-per-view) - 1) * var(--rua-testimonials-gap)) / var(--rua-testimonials-per-view));
    min-width: 0;
}

.rua-testimonials-carousel__slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.rua-testimonials-carousel__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #586267;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    transform: translateY(-50%);
}

.rua-testimonials-carousel__arrow:hover,
.rua-testimonials-carousel__arrow:focus-visible {
    background: rgba(255, 255, 255, .55);
}

.rua-testimonials-carousel__arrow img {
    display: block;
    width: 18px;
    height: 18px;
}

.rua-testimonials-carousel__arrow:focus-visible {
    outline: 3px solid rgba(0, 138, 136, .3);
    outline-offset: 2px;
}

.rua-testimonials-carousel__arrow--prev {
    left: 8px;
}

.rua-testimonials-carousel__arrow--next {
    right: 8px;
}

.rua-testimonials-carousel__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding-top: 14px;
}

.rua-testimonials-carousel__pagination button {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d6d6d6;
    cursor: pointer;
}

.rua-testimonials-carousel__pagination button.is-active {
    background: #111;
}

.rua-testimonials-carousel__pagination button:focus-visible {
    outline: 3px solid rgba(0, 138, 136, .3);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .contact-modal__dialog {
        grid-template-columns: 1fr;
    }

    .contact-modal__intro {
        padding: 32px 58px 32px 32px;
    }

    .contact-modal__intro h2 {
        font-size: 31px;
    }

    .contact-form {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .snapshot-swiper {
        --snapshot-swiper-count: 1 !important;
    }

    .rua-testimonials-carousel {
        --rua-testimonials-per-view: 1 !important;
    }

    .rua-testimonials-carousel__arrow {
        width: 38px;
        height: 38px;
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rua-testimonials-carousel__track {
        transition-duration: .01ms;
    }
}

@media (max-width: 620px) {
    .contact-modal {
        padding: 10px;
    }

    .contact-modal__dialog {
        max-height: calc(100vh - 20px);
        border-radius: 16px;
    }

    .contact-modal__intro {
        padding: 26px 50px 26px 26px;
    }

    .contact-modal__intro h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 26px;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}
