.ah2-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

/* HERO */

.ah2-hero {
    position: relative;
    min-height: 700px;
    padding: 60px 0 20px;
    background-size: cover;
    background-position: top;
    overflow: hidden;
}

.ah2-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}

.ah2-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ah2-hero-title {
    max-width: 1400px;
    font-family: "Open Sauce Two Black", sans-serif;
    margin: 0 auto 10px;
    color: #cabcbc;
    font-size: clamp(42px, 4vw, 45px);
    line-height: 1.05;
    font-weight: 800;
}

.ah2-hero-subtitle {
    color: #fff;
    font-size: 15px;
    margin-bottom: 22px;
}

/* SEARCH */

.ah2-search-box {
    width: min(1100px, 100%);
    margin: 90px auto 28px;
    padding: 10px 34px 10px 34px;
    background: #ffffff5a;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr 1fr 190px;
    gap: 10px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.ah2-search-field {
    text-align: left;
    padding-left: 18px;
}

.ah2-search-field label {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 12px;
    font-weight: 700;
}

.ah2-select {
    width: 95%;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 14px 0 12px;
    background: #fff;
    color: #555;
    font-size: 15px;
    outline: none;
}

.ah2-select:focus {
    border-color: #ff3364;
}

.ah2-search-btn {
    position: relative;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3364, #a0188e);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-position 0.35s ease;
    background-size: 180% 180%;
}

.ah2-search-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.ah2-search-btn:hover {
    transform: translateY(-3px);
    background-position: right center;
}

.ah2-search-btn:hover::before {
    left: 130%;
}

.ah2-search-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease;
}

.ah2-search-btn:hover i {
    transform: translateX(3px) scale(1.08);
}

.ah2-search-btn span,
.ah2-search-btn {
    z-index: 1;
}

.ah2-search-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* TYPES CAROUSEL */

.ah2-types-carousel {
    width: min(1200px, calc(120vw - 000px));
    margin: 0 auto;
    padding: 5px 0 10px;
}

.ah2-types-carousel .slick-list {
    overflow: hidden;
    padding: 6px 0 12px !important;
}

.ah2-types-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.ah2-types-carousel .slick-slide {
    height: auto;
    padding: 0 10px !important;
    box-sizing: border-box;
}

.ah2-types-carousel .slick-slide > div {
    height: 100%;
}

.ah2-type-slide {
    height: 100%;
}

.ah2-type-card {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    min-height: 210px;
    padding: 10px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ah2-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.ah2-type-img-box {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 14px;
    background: #f4f4f4;
}

.ah2-type-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.ah2-type-card:hover .ah2-type-img-box img {
    transform: scale(1.05);
}

.ah2-type-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 12px 4px 0;
}

.ah2-type-info h3 {
    margin: 0 0 8px;
    color: #222;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 800;
}

.ah2-type-info span {
    color: #ff3364;
    font-size: 13px;
    font-weight: 800;
}

.ah2-types-carousel .slick-prev,
.ah2-types-carousel .slick-next {
    display: none !important;
}

/* SECTION TITLE */

.ah2-section-title {
    text-align: center;
    margin-bottom: 42px;
}

.ah2-section-title h2 {
    color: #222;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
}

.ah2-section-title h2::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin: 16px auto 0;
    background: #ff3364;
    border-radius: 99px;
}

.ah2-section-title p {
    margin-top: 14px;
    color: #888;
}

/* STEPS */

.ah2-steps {
    padding: 70px 0;
    background: #f7f7f8;
}

.ah2-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ah2-step-card {
    min-height: 285px;
    padding: 44px 30px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.ah2-step-card img {
    width: 76px;
    margin-bottom: 20px;
}

.ah2-step-card h3 {
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.ah2-step-card p {
    color: #888;
    line-height: 1.7;
}

/* FEATURED */

.ah2-featured {
    padding: 70px 0;
    background: #fff;
}

.ah2-featured-filter {
    max-width: 360px;
    margin-bottom: 28px;
}

.ah2-featured-carousel {
    padding: 0 20px;
}

.ah2-featured-carousel .slick-slide {
    padding: 0 10px;
}

/* CONTACT */

.ah2-contact {
    padding: 65px 0 40px;
    background: #fff;
}

.ah2-contact-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.ah2-contact-form {
    min-height: 330px;
    padding: 44px 38px;
    background: #fff;
}

.ah2-contact-form h2 {
    margin-bottom: 25px;
    color: #222;
    font-size: 26px;
    font-weight: 500;
}

.ah2-contact-card {
    padding: 34px 36px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.ah2-contact-card h2 {
    color: #222;
    font-size: 28px;
    font-weight: 800;
}

.ah2-contact-card h4 {
    margin: 22px 0 8px;
    color: #222;
    font-size: 17px;
    font-weight: 800;
}

.ah2-contact-card p {
    margin: 6px 0;
    color: #555;
}

.ah2-contact-card a {
    color: #555;
}

.ah2-contact-card i {
    margin-right: 8px;
    color: #ff3364;
}

.ah2-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.ah2-socials a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5eb;
    border-radius: 10px;
    color: #222;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ah2-socials a:hover {
    background: #ff3364;
    border-color: #ff3364;
    color: #fff;
    transform: translateY(-3px);
}

.ah2-socials a:hover i {
    color: #fff;
}

/* MAP */

.ah2-map-section {
    padding: 30px 0 65px;
}

.ah2-map-box {
    overflow: hidden;
    border-radius: 36px;
}

.ah2-map-box #singleListingMap-container {
    height: 520px;
    margin: 0;
}

.ah2-map-box #singleListingMap {
    height: 100%;
}

/* FINAL BANNER */

.ah2-final-banner {
    min-height: 140px;
    padding: 40px 20px;
    background: #ff3364;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: clamp(24px, 3vw, 34px);
}

.ah2-final-banner:hover {
    background: #f91f54;
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .ah2-types-carousel {
        width: min(980px, calc(100vw - 40px));
    }

    .ah2-types-carousel .slick-slide {
        padding: 0 9px !important;
    }
}

@media (max-width: 992px) {
    .ah2-hero {
        min-height: auto;
        padding: 100px 0 35px;
    }

    .ah2-search-box {
        width: 75%;
        border-radius: 28px;
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .ah2-search-field {
        padding-left: 0;
    }

    .ah2-search-btn {
        width: 100%;
    }

    .ah2-steps-grid,
    .ah2-contact-grid {
        grid-template-columns: 1fr;
    }

    .ah2-types-carousel {
        width: calc(80vw - 40px);
    }
}

@media (max-width: 768px) {
    .ah2-container {
        width: min(100% - 22px, 1240px);
    }

    .ah2-hero {
        padding-top: 90px;
    }

    .ah2-hero-title {
        font-size: 40px;
        line-height: 1.05;
    }

    .ah2-search-box {
        width: 45%;
        border-radius: 28px;
        grid-template-columns: 1fr;
        padding: 14px;
        margin-top: 18%;
    }

    .ah2-search-btn {
        font-size: 18px;
    }

    .ah2-types-carousel {
        width: calc(48vw - 12px);
        padding: 18px 0 34px;
    }

    .ah2-types-carousel .slick-slide {
        padding: 0 8px !important;
    }

    .ah2-type-card {
        min-height: 145px;
    }

    .ah2-type-img-box {
        height: 120px;
    }

    .ah2-type-info h3 {
        font-size: 16px;
    }

    .ah2-type-info span {
        font-size: 13px;
    }

    .ah2-steps,
    .ah2-featured,
    .ah2-contact {
        padding: 45px 0;
    }

    .ah2-contact-form,
    .ah2-contact-card {
        padding: 24px 18px;
    }

    .ah2-map-box {
        border-radius: 20px;
    }

    .ah2-map-box #singleListingMap-container {
        height: 340px;
    }
}

@media (max-width: 520px) {
    .ah2-hero {
        min-height: auto;
        padding: 80px 0 35px;
    }

    .ah2-search-box {
        width: 75%;
        border-radius: 28px;
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .ah2-types-carousel {
        width: calc(75vw - 6px);
        padding: 1px 0 10px;
    }

    .ah2-types-carousel .slick-slide {
        padding: 0 6px !important;
    }

    .ah2-type-card {
        min-height: 110px;
    }

    .ah2-type-img-box {
        height: 100px;
    }

    .ah2-search-box {
        margin-bottom: 20px;
    }

    .ah2-type-info h3 {
        font-size: 14px;
    }

    .ah2-type-info span {
        font-size: 12px;
    }

    .ah2-final-banner {
        min-height: 110px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .ah2-hero {
        position: relative;

        background-size: cover;
        background-position: top;
        overflow: hidden;
    }

    .ah2-hero-title {
        font-size: 30px;
    }

    .ah2-search-box {
        margin-bottom: 5px;
    }

    .ah2-type-info h3 {
        font-size: 18px;
    }

    .ah2-type-info span {
        font-size: 15px;
    }

    .ah2-final-banner {
        min-height: 110px;
        font-size: 22px;
    }
}

/* =========================================================
   NEARBY SPOTS
========================================================= */

.ah2-nearby-section {
    padding: 55px 0;
    background: #fff;
}

.ah2-nearby-message,
.ah2-nearby-empty {
    margin: 0;
    text-align: center;
    color: #777;
    font-size: 15px;
}

/* =========================================================
   CAROUSEL
========================================================= */

.ah2-nearby-carousel {
    width: min(1280px, calc(100vw - 120px));
    margin: 0 auto;
    padding: 10px 0 30px;
    overflow: hidden;
}

.ah2-nearby-carousel .slick-list {
    overflow: hidden !important;
    margin: 0;
    padding: 10px 0 28px !important;
}

.ah2-nearby-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.ah2-nearby-carousel .slick-slide {
    height: auto;
    padding: 0 14px !important;
    box-sizing: border-box;
}

.ah2-nearby-carousel .slick-slide > div {
    height: 100%;
}

/* =========================================================
   CARD
========================================================= */

.ah2-nearby-card {
    max-width: 270px;
    margin: 0 auto;

    display: flex !important;
    flex-direction: column;

    height: 100%;
    min-height: 240px;

    padding: 8px 8px 10px !important;

    background: #fff;

    border-radius: 20px;
    overflow: hidden;

    text-decoration: none;

    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ah2-nearby-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 14px rgba(0, 0, 0, 0.16);
}

/* =========================================================
   IMAGE
========================================================= */

.ah2-nearby-img {
    width: 100%;
    height: 140px;

    overflow: hidden;
    border-radius: 15px;

    background: #f4f4f4;
}

.ah2-nearby-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    border-radius: 15px;

    transition: transform 0.35s ease;
}

.ah2-nearby-card:hover .ah2-nearby-img img {
    transform: scale(1.04);
}

/* =========================================================
   INFO
========================================================= */

.ah2-nearby-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px 6px 2px;

    text-align: center;
}

.ah2-nearby-info h3 {
    margin: 0 0 7px;

    color: #222;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.ah2-nearby-info p {
    margin: 0 0 8px;

    color: #888;

    font-size: 12px;
    line-height: 1.4;
}

.ah2-nearby-info span {
    color: #ff3364;

    font-size: 12px;
    font-weight: 800;
}

/* =========================================================
   DOTS
========================================================= */

.ah2-nearby-carousel .slick-dots {
    bottom: -6px;
}

.ah2-nearby-carousel .slick-dots li button:before {
    font-size: 11px;
    color: #bbb;
    opacity: 1;
}

.ah2-nearby-carousel .slick-dots li.slick-active button:before {
    color: #ff3364;
}

/* =========================================================
   ARROWS
========================================================= */

.ah2-nearby-carousel .slick-prev,
.ah2-nearby-carousel .slick-next {
    display: none !important;
}

/* =========================================================
   SKELETON
========================================================= */

.ah2-nearby-skeleton {
    width: min(1180px, calc(100vw - 120px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.ah2-nearby-skeleton-card {
    height: 235px;

    border-radius: 20px;

    background: linear-gradient(90deg, #eeeeee 0%, #f8f8f8 50%, #eeeeee 100%);

    background-size: 200% 100%;

    animation: ah2NearbyLoading 1.2s infinite linear;
}

@keyframes ah2NearbyLoading {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .ah2-nearby-carousel,
    .ah2-nearby-skeleton {
        width: calc(100vw - 50px);
    }

    .ah2-nearby-carousel .slick-slide {
        padding: 0 10px !important;
    }
}

@media (max-width: 992px) {
    .ah2-nearby-skeleton {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ah2-nearby-carousel,
    .ah2-nearby-skeleton {
        width: calc(100vw - 24px);
    }

    .ah2-nearby-carousel .slick-slide {
        padding: 0 8px !important;
    }

    .ah2-nearby-card {
        max-width: 100%;
        min-height: 225px;
    }

    .ah2-nearby-img {
        height: 150px;
    }

    .ah2-nearby-info h3 {
        font-size: 14px;
    }

    .ah2-nearby-info p,
    .ah2-nearby-info span {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .ah2-nearby-carousel .slick-slide {
        padding: 0 6px !important;
    }

    .ah2-nearby-card {
        min-height: 210px;
        padding: 8px;
    }

    .ah2-nearby-img {
        height: 135px;
    }

    .ah2-nearby-info h3 {
        font-size: 13px;
    }

    .ah2-nearby-info p,
    .ah2-nearby-info span {
        font-size: 11px;
    }
}

/* BOTÓN FLOTANTE VIDEO */

.ah2-video-float {
    position: fixed;
    right: 26px;
    top: 23%;
    z-index: 99999;

    width: 54px;
    height: 54px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #333;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

    transition: all 0.25s ease;
}

.ah2-video-float i {
    font-size: 20px;
}

.ah2-video-float span {
    position: absolute;
    right: 66px;

    min-width: 105px;

    padding: 8px 12px;

    background: #222;
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    border-radius: 999px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition: all 0.25s ease;
}

.ah2-video-float:hover {
    background: #a0188e;
    color: #fff;
    transform: translateY(-3px);
}

.ah2-video-float:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* MODAL VIDEO */

.ah2-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.ah2-video-modal.is-open {
    display: flex;
}

.ah2-video-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);
}

.ah2-video-modal__content {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);

    background: #000;
    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.ah2-video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #222;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.ah2-video-modal__video {
    position: relative;

    width: 100%;
    padding-top: 56.25%;
}

.ah2-video-modal__video iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .ah2-video-float {
        right: 18px;
        top: 40%;

        width: 48px;
        height: 48px;
    }

    .ah2-video-float span {
        display: none;
    }

    .ah2-video-modal__content {
        border-radius: 14px;
    }
}
@media (max-width: 480px) {
    .ah2-video-float {
        right: 18px;
        top: 30%;

        width: 48px;
        height: 48px;
    }

    .ah2-video-float span {
        display: none;
    }

    .ah2-video-modal__content {
        border-radius: 14px;
    }
}

.ah2-form-mobile {
    display: none;
}

.ah2-form-desktop {
    display: block;
}

@media (max-width: 767px) {
    .ah2-form-desktop {
        display: none;
    }

    .ah2-form-mobile {
        display: block;
    }
}

.ah2-section-header {
    position: relative;
    margin-bottom: 32px;
}

.ah2-section-header .ah2-section-title {
    margin-bottom: 0;
}

.ah2-see-more-btn {
    position: absolute;
    top: 8px;
    right: 0;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    background: #a0188e;
    color: #fff;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    transition: all 0.25s ease;
}

.ah2-see-more-btn:hover {
    background: #d513bc;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ah2-section-header {
        text-align: center;
    }

    .ah2-see-more-btn {
        position: static;
        margin-top: 18px;
    }
}
