body {
    font-family: 'Noto Sans', sans-serif;
}

/* HEADER */
.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.custom-navbar {
    height: 58px;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    z-index: 9999;
    padding: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-nav .nav-link {
    color: #111;
    font-size: 16px;
    padding: 17px 0 16px;
    transition: .2s;
    position: relative;
}

.menu-parent:hover > .nav-link {
    color: #111;
}

.menu-parent:hover > .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: #e50019;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.menu-parent {
    position: relative;
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    width: 240px;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    padding: 0;
}

.menu-parent:hover > .dropdown-panel {
    display: block;
}

.dropdown-item {
    height: 46px;
    padding: 13px 28px;
    color: #111;
    font-size: 16px;
    background: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-item:hover,
.has-submenu:hover {
    background: #e50019;
    color: #fff;
}

.has-submenu {
    position: relative;
}

.submenu-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 240px;
    width: 170px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.submenu-panel.wide {
    width: 325px;
}

.has-submenu:hover > .submenu-panel {
    display: block;
}

.submenu-panel a {
    height: 46px;
    padding: 13px 28px;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    background: #fff;
    white-space: nowrap;
}

.submenu-panel a:hover {
    background: #e50019;
    color: #fff;
}

.flag-img {
    width: 18px;
    height: auto;
    display: block;
}

/* BUTTONS */

.btn-contact,
.btn-agency {
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    border: none;
    color: white;
}

.btn-contact {
    background: #e50019;
}

.btn-contact:hover {
    background: #c70016;
    color: white;
}

.btn-agency {
    background: #003d63;
}

.btn-agency:hover {
    background: #002944;
    color: white;
}
.hero {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slider,
.hero-slider .carousel-item,
.slide-bg {
    height: 520px;
    margin-top: 20px;
}

.slide-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 620px;

    margin-left: 10%;
    margin-top: 40px;

    color: #fff;
}

.slide-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;

    margin-bottom: 22px;

    text-shadow: 0 3px 10px rgba(0,0,0,.35);
}

.slide-content p {
    font-size: 18px;
    line-height: 1.5;

    max-width: 540px;

    margin-bottom: 32px;

    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.slide-bg {
    position: relative;
    display: flex;
    align-items: center;
}
.slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.55) 0%,
            rgba(0,0,0,.30) 35%,
            rgba(0,0,0,.10) 100%
        );
}
.btn-slide {
    background: #e50019;
    color: #fff;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-slide:hover {
    background: #c90016;
    color: #fff;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

@media(max-width: 768px) {
    .slide-content {
        margin-left: 25px;
        margin-right: 25px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 18px;
    }
}
.destinations-section {
    padding: 90px 0 70px;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #e50019;
    margin-bottom: 26px;
    line-height: 1.1;
}

.title-line {
    width: 150px;
    height: 3px;
    background: #e50019;
    margin: 0 auto;
}
@media(max-width:768px){

    .destinations-section {
        padding: 60px 0 50px;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .title-line {
        width: 100px;
    }

}

.map-full {
    width: 100%;
    height: 820px;
    margin-top: 55px;
    overflow: hidden;
    position: relative;
}

#chartdiv {
    width: 100%;
    height: 900px;
    transform: translateY(45px);
}
@media (max-width: 768px) {

    .destinations-section {
        padding: 55px 0 0;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .title-line {
        width: 90px;
        height: 3px;
    }

    .map-full {
        height: 420px;
        margin-top: 35px;
        overflow: hidden;
    }

    #chartdiv {
        height: 500px;
        transform: translateY(35px);
    }
}

@media (max-width: 480px) {

    .map-full {
        height: 360px;
    }

    #chartdiv {
        height: 430px;
        transform: translateY(30px);
    }
}
.stats-section {
    padding: 70px 0;
    background: #f5f6f7;
}

.stats-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    text-align: center;
}

.stat-icon {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.stat-number {
    font-family: 'Open Sans', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #212121;
    line-height: 1.35;
}

@media(max-width: 991px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }
}

@media(max-width: 575px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 18px;
    }
}

.stat-icon {
    margin-bottom: 18px;
}

.stat-icon svg {
    width: 50px;
    height: 50px;
    fill: #e50019 !important;
}

.experiences-section {
    padding: 70px 0;
    background: #f5f6f7;
}

.experiences-grid {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.experience-card {
    height: 210px;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.52);
    transition: .25s;
}

.experience-card:hover::before {
    background: rgba(0,0,0,.35);
}

.experience-card span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
}

.red-card {
    background: #b90016;
}

.red-card::before {
    display: none;
}

.typing-cursor {
    animation: blinkCursor .8s infinite;
}

@keyframes blinkCursor {
    0%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

@media(max-width: 991px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
}

@media(max-width: 575px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        height: 190px;
    }

    .experience-card span {
        font-size: 26px;
    }
}

.newsletter-section {
    position: relative;

    padding: 55px 40px;

     background-image: url('../img/newsletter-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;
}
@media (max-width: 768px) {

    .newsletter-section {
        background-attachment: scroll;
    }

}
.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.newsletter-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter-text h2 {
    margin: 0;

    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
}

.newsletter-form {
    width: 100%;
    max-width: 520px;
}

.newsletter-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.newsletter-inputs input {
    flex: 1;
    height: 46px;

    border: none;
    outline: none;

    padding: 0 16px;

    background: #fff;

    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #222;
}

.newsletter-inputs input::placeholder {
    color: #777;
}

.newsletter-form button {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 40px;

    background: #f0001c;
    color: #fff;

    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;

    cursor: pointer;
    transition: .25s;
}

.newsletter-form button:hover {
    background: #cb0017;
    transform: translateY(-1px);
}

@media (max-width: 991px) {

    .newsletter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-text h2 {
        font-size: 42px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 575px) {

    .newsletter-section {
        padding: 50px 20px;
    }

    .newsletter-text h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .newsletter-inputs {
        flex-direction: column;
    }

    .newsletter-inputs input {
        width: 100%;
    }

    .newsletter-form button {
        height: 52px;
    }
}

.site-footer {
    background: #000;
    color: #fff;
    padding: 55px 20px 35px;
    text-align: center;
}

.footer-contact {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-icon {
    font-size: 34px;
    color: #fff;
    margin-bottom: 18px;
}

.footer-contact-item h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-contact-item p {
    font-size: 22px;
    margin: 0;
    line-height: 1.35;
}

.footer-logos {
    max-width: 1100px;
    margin: 0 auto 45px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px 80px;
}

.footer-logos img {
    max-width: 180px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 20px;
}
.footer-logos img:hover{
    max-width: 200px !important;
    max-height: 170px !important;
}
/* PRIMERA FILA */
.footer-logos img:nth-child(-n+5) {
    width: calc(20% - 80px);
}

.footer-logos img:nth-child(-n+5):hover {
    width: calc(20% - 70px);
}
/* SEGUNDA FILA */
.footer-logos img:nth-child(n+6) {
    width: calc(33.33% - 80px);
}

.footer-logos img:nth-child(n+6):hover {
    width: calc(33.33% - 70px);
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 55px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #fff;
    color: #e50019;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: .25s ease;
}

.footer-social a i {
    font-size: 18px;
    transition: .25s ease;
}

.footer-social a:hover {
    background: #e50019;
    transform: translateY(-3px) scale(1.08);
}

.footer-social a:hover i {
    color: #fff;
}

.footer-terms .footer-icon {
    margin-bottom: 10px;
}

.footer-terms a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

@media(max-width: 768px) {
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-contact-item p {
        font-size: 18px;
    }

    .footer-logos {
        gap: 30px;
    }

    .footer-logos img {
        max-width: 110px;
    }
}
.footer-icon i {
    font-size: 34px;
    color: #fff;
}


.footer-terms {
    text-align: center;
}

.footer-terms-icon {
    margin-bottom: 14px;
}

.footer-terms-icon img {
    width: 66px;
    height: auto;

    object-fit: contain;

    transition: .25s ease;
}

.footer-terms a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;

    transition: .25s ease;
}
@media (max-width: 575px) {

    .site-footer {
        padding: 45px 18px 35px;
    }

    .footer-contact {
        gap: 45px;
        margin-bottom: 45px;
    }

    .footer-contact-item p {
        max-width: 360px;
        margin: 0 auto;
        font-size: 18px;
        line-height: 1.35;
    }

    .footer-logos {
        max-width: 360px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-bottom: 45px;
    }

    .footer-logos img,
    .footer-logos img:nth-child(-n+5),
    .footer-logos img:nth-child(n+6) {
        width: 82px;
        max-width: 82px;
        max-height: 82px;
        object-fit: contain;
        justify-self: center;
    }

    .footer-logos img:hover,
    .footer-logos img:nth-child(-n+5):hover,
    .footer-logos img:nth-child(n+6):hover {
        width: 88px;
        max-width: 88px !important;
        max-height: 88px !important;
    }

    .footer-social {
        margin-bottom: 50px;
    }

    .footer-terms-icon img {
        width: 58px;
    }

    .footer-terms a {
        font-size: 19px;
    }
}


/*EQUIPO*/

.team-hero {
    position: relative;
    height: 560px;
    background-image: url('../img/fondo-equipo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.team-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.team-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
}

.team-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
}

.team-hero-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
}

@media(max-width: 768px) {
    .team-hero {
        height: 420px;
    }

    .team-hero-content h1 {
        font-size: 42px;
    }

    .team-hero-content p {
        font-size: 18px;
    }
}

.team-video-section {
    padding: 90px 20px;
    background: #f5f5f5;
}

.team-video-container {
    max-width: 1180px;
    margin: 0 auto;
}

.team-video {
    width: 100%;
    display: block;

    border-radius: 0;
    object-fit: cover;

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

    transition: transform .35s ease;
}

.team-video:hover {
    transform: scale(1.01);
}

@media(max-width:768px){

    .team-video-section {
        padding: 50px 12px;
    }

    .team-video {
        border-radius: 0;
    }

}

.team-info-section {
    padding: 70px 20px 80px;
    background: #fff;
}

.team-info-container {
    max-width: 1320px;
    margin: 0 auto;
}

.team-info-container h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #e50019;
    text-align: center;
    margin-bottom: 35px;
}

.team-info-container p {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: #000;
    margin-bottom: 22px;
}

@media(max-width:768px) {
    .team-info-container h2 {
        font-size: 38px;
    }

    .team-info-container p {
        font-size: 17px;
    }
}

.team-photo {
    width: 350px;
    height: 350px;

    margin: 0 auto 35px;

    border-radius: 50%;
    overflow: hidden;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;

    border-radius: 50%;
    display: block;
}

.team-members-section {
    padding: 70px 0 90px;
}

.team-member {
    text-align: center;
}

.team-member h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #e50019;
    margin-bottom: 22px;
}

.team-line {
    width: 42px;
    height: 4px;
    background: #e50019;
    margin: 0 auto 18px;
}

.team-member p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
    margin: 0;
}

@media(max-width: 575px){

    .team-photo {
        width: 220px;
        height: 220px;
    }

    .team-member h3 {
        font-size: 25px;
    }

}

/*TESTIMONIOS*/


.testimonials-hero {
    position: relative;

    height: 440px;

    background-image: url('../img/testimonials-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.42);
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonials-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 78px;
    font-weight: 800;
    color: #fff;

    margin: 0;
}

@media(max-width: 768px){

    .testimonials-hero {
        height: 320px;
    }

    .testimonials-content h1 {
        font-size: 52px;
    }

}

.testimonials-videos-section {
    padding: 55px 0 80px;
    background: #f5f6f7;
}


@media(max-width: 768px){

    .testimonial-video-box {
        max-width: 100%;
    }

}
.testimonial-video-box {
    width: 100%;
    max-width: 520px;
    height: 320px;

    margin: 0 auto;

    overflow: hidden;
}

.testimonial-video-box video {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}

/*CRUCEROS*/

.cruises-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/cruceros-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.cruises-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.cruises-hero-content {
    position: relative;
    z-index: 2;
}

.cruises-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {
    .cruises-hero {
        height: 320px;
        background-attachment: scroll;
        background-position: center;
    }

    .cruises-hero-content h1 {
        font-size: 46px;
    }
}

.cruises-info-section {
    padding: 80px 0 90px;
    background: #f5f6f7;
}

.cruises-text {
    max-width: 1220px;
    margin: 0 auto 70px;
}

.cruises-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #444;

    margin-bottom: 34px;
}

.cruises-callout {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cruises-callout h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: #111;

    margin-bottom: 34px;
}

.cruises-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 520px;
    height: 40px;

    padding: 0 40px;

    background: #f0001c;
    color: #fff;

    border-radius: 50px;

    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;

    text-decoration: none;
    transition: .25s;
}

.cruises-btn:hover {
    background: #cb0017;
    color: #fff;

    transform: translateY(-2px);
}

@media(max-width: 768px){

    .cruises-info-section {
        padding: 55px 0 65px;
    }

    .cruises-text {
        margin-bottom: 55px;
    }

    .cruises-text p {
        font-size: 19px;
        line-height: 1.7;
    }

    .cruises-callout h2 {
        font-size: 28px;
    }

    .cruises-btn {
        width: 100%;
        min-width: unset;

        height: auto;

        padding: 20px 25px;

        font-size: 13px;
        line-height: 1.5;
    }

}
.msc-table-section {
    padding: 55px 0 70px;
    background: #f5f6f7;
}

.msc-table-title {
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 32px;
}

.msc-table {
    width: 100%;
    min-width: 1350px;
    border-collapse: collapse;
}

.msc-table thead th {
    background: #d9d9d9;
    color: #444;

    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;

    text-align: center;
    vertical-align: middle;

    padding: 14px 12px;

    border: 1px solid #c8ccd2;
}

.msc-table tbody td {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.45;

    color: #4a4a4a;

    padding: 14px 12px;

    vertical-align: middle;

    border: 1px solid #c8ccd2;
}

.msc-table tbody tr:hover td {
    background: rgba(255,255,255,.45);
}

.msc-notes {
    margin-top: 45px;
    padding-left: 10px;
}

.msc-notes p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;

    margin-bottom: 10px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cruise-logos-section {
    padding: 60px 0 40px;
    background: #f5f6f7;
    text-align: center;
}

.cruise-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
    min-height: 120px;
}

.cruise-logos-row img {
    max-height: 85px;
    max-width: 260px;
    object-fit: contain;
}

#cruiseLogosCarousel {
    position: relative;
    padding: 0 70px 65px;
}

#cruiseLogosCarousel .carousel-control-prev,
#cruiseLogosCarousel .carousel-control-next {
    width: 45px;
    opacity: 1;
}

#cruiseLogosCarousel .carousel-control-prev-icon,
#cruiseLogosCarousel .carousel-control-next-icon {
    filter: invert(16%) sepia(99%) saturate(4943%) hue-rotate(345deg) brightness(96%) contrast(101%);
}

.cruise-logo-dots {
    bottom: 25px;
    margin-bottom: 0;
}

.cruise-logo-dots button {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50%;
    background-color: #e50019 !important;
    opacity: .25;
}

.cruise-logo-dots button.active {
    opacity: 1;
}

.cruise-logos-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

@media(max-width: 768px) {
    .cruise-logos-row {
        gap: 25px;
        flex-wrap: wrap;
    }

    .cruise-logos-row img {
        max-width: 140px;
        max-height: 60px;
    }

    #cruiseLogosCarousel {
        padding: 0 35px 60px;
    }

    .cruise-logos-text {
        font-size: 21px;
        line-height: 1.35;
        padding: 0 15px;
    }
}

#cruiseLogosCarousel .carousel-control-prev-icon,
#cruiseLogosCarousel .carousel-control-next-icon {
    background-image: none;
    width: 32px;
    height: 32px;
    position: relative;
}

#cruiseLogosCarousel .carousel-control-prev-icon::after {
    content: '\f104';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #e50019;
    font-size: 34px;
}

#cruiseLogosCarousel .carousel-control-next-icon::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #e50019;
    font-size: 34px;
}

/*OFERTAS*/

.offers-hero {
    position: relative;
    height: 320px;

    background-image: url('../img/ofertas-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;
}

.offers-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.38);
}

.offers-hero-content {
    position: relative;
    z-index: 2;
}

.offers-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {
    .offers-hero {
        height: 260px;
        background-attachment: scroll;
    }

    .offers-hero-content h1 {
        font-size: 42px;
    }
}
.summer-offer-section {
    position: relative;
    padding: 80px 0 100px;

    background-image: url('../img/ofertas-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    overflow: hidden;
}

.summer-offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.82);
}

.summer-offer-title {
    position: relative;
    z-index: 2;

    text-align: center;

    font-size: 40px;
    font-weight: 800;
    color: #000;

    margin-bottom: 45px;
}

.summer-benefits {
    position: relative;
    z-index: 2;
}

.summer-benefit-card {
    height: 190px;
    min-height: 190px;

    background: #fff;
    border-radius: 8px;

    padding: 32px 28px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: 'Noto Sans', sans-serif;

    transition: .25s;
}

.summer-benefit-card:hover {
    transform: translateY(-6px);
}

.summer-benefit-icon {
    margin-bottom: 22px;
}

.summer-benefit-icon i {
    font-size: 54px;
    color: #e50019;
    line-height: 1;
}

.summer-benefit-card h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 0;
}

.summer-btn-wrap {
    position: relative;
    z-index: 2;

    text-align: center;

    margin: 40px 0 55px;
}

.summer-btn {
        display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    height: 50px;

    border-radius: 60px;

    background: #f0001c;
    color: #fff;

    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.summer-btn:hover {
    background: #c70018;
    color: #fff;

    transform: translateY(-2px);
}

.summer-carousel {
    max-width: 1220px;
}

.summer-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.summer-gallery-row img {
    width: 100%;
    height: 260px !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
    background: transparent;
}

@media(max-width: 768px) {
    .summer-gallery-row {
        grid-template-columns: 1fr;
    }

    .summer-gallery-row img {
        height: 210px !important;
    }
}

.offer-cta-section {
    position: relative;

    padding: 70px 20px 90px;

    background-image: url('../img/ofertas-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    text-align: center;
}

.offer-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.82);
}

.offer-cta-section .container {
    position: relative;
    z-index: 2;
}

.offer-cta-section h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000;

    margin-bottom: 40px;
}

.offer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    height: 50px;

    border-radius: 60px;

    background: #f0001c;
    color: #fff;

    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.offer-cta-btn:hover {
    background: #cb0017;
    color: #fff;

    transform: translateY(-2px);
}

@media(max-width: 768px) {

    .offer-cta-section {
        padding: 55px 20px 70px;
        background-attachment: scroll;
    }

    .offer-cta-section h2 {
        font-size: 42px;
        line-height: 1.2;
    }

    .offer-cta-btn {
        width: 210px;
        height: 62px;
        font-size: 20px;
    }
}

/*REENCUENTROS*/

/* REENCUENTROS */

.reencuentros-hero {
    position: relative;

    height: 430px;

    background-image: url('../img/reencuentros-hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.reencuentros-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.45);
}

.reencuentros-content {
    position: relative;
    z-index: 2;
}

.reencuentros-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;

    margin: 0;
}

@media(max-width: 768px){

    .reencuentros-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .reencuentros-content h1 {
        font-size: 48px;
    }

}

/* REENCUENTROS INFO */

.reencuentros-info {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.reencuentros-text {
    max-width: 1280px;
    margin: 0 auto;

    font-family: 'Noto Sans', sans-serif;
}

.reencuentros-text p {
    font-size: 22px;
    line-height: 1.55;
    color: #000;

    margin-bottom: 28px;
}

.reencuentros-text strong {
    font-weight: 800;
}

.reencuentros-divider {
    width: 70px;
    height: 2px;

    background: #ef001c;

    margin: 45px auto 38px;
}

.reencuentros-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.reen-btn {
    min-width: 150px;
    height: 54px;

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

    transition: .3s ease;
}

.reen-btn-primary {
    background: #ef001c;
    color: #fff;
}

.reen-btn-primary:hover {
    background: #d90019;
    color: #fff;
}

.reen-btn-dark {
    background: #000;
    color: #fff;
}

.reen-btn-dark:hover {
    background: #222;
    color: #fff;
}

@media(max-width: 768px){

    .reencuentros-info {
        padding: 50px 0 70px;
    }

    .reencuentros-text p {
        font-size: 18px;
        text-align: center;
    }

    .reencuentros-buttons {
        flex-direction: column;
    }

    .reen-btn {
        width: 100%;
        max-width: 280px;
    }

}

.reencuentros-videos-section {
    padding: 40px 26px 80px;
    background: #f3f3f3;
}

.reencuentros-video-box {
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
}

.reencuentros-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media(max-width: 991px) {

    .reencuentros-video-box {
        height: 520px;
    }
}

@media(max-width: 575px) {

    .reencuentros-videos-section {
        padding: 25px 12px 55px;
    }

    .reencuentros-video-box {
        height: 360px;
    }
}

.faq-section {
    padding: 65px 0;
    background: #f3f3f3;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1b1b1b;
    margin-bottom: 14px;
}

.faq-line {
    width: 70px;
    height: 2px;
    background: #f5001e;
    display: inline-block;
}

.faq-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 18px;
}

.faq-accordion .accordion-button {
    background: #f5001e;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 22px 30px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    transform: scale(.8);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f5001e;
    color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 28px 30px 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    background: transparent;
}

@media(max-width: 991px) {

    .faq-section {
        padding: 50px 18px;
    }

    .faq-header h2 {
        font-size: 34px;
    }

    .faq-accordion .accordion-button {
        font-size: 17px;
        padding: 18px 20px;
    }

    .faq-accordion .accordion-body {
        font-size: 15px;
        padding: 22px 20px 8px;
    }
}

@media(max-width: 575px) {

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-accordion .accordion-button {
        font-size: 15px;
        line-height: 1.5;
        padding: 16px 18px;
    }

    .faq-accordion .accordion-body {
        font-size: 14px;
        line-height: 1.7;
        padding: 20px 18px 5px;
    }
}

/* ENTRETENIMIENTO */

.entertainment-hero {
    position: relative;
    height: 440px;
    overflow: hidden;

    display: flex;
    align-items: center;
}

.entertainment-hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
}

.entertainment-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.48);

    z-index: 2;
}

.entertainment-hero-content {
    position: relative;
    z-index: 3;
}

.entertainment-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {
    .entertainment-hero {
        height: 320px;
    }

    .entertainment-hero-content h1 {
        font-size: 44px;
    }
}

/* VIDEO ENTRETENIMIENTO */

.entertainment-videos-section {
    padding: 70px 0;
    background: #f3f3f3;
}

.entertainment-video-single {
    max-width: 1150px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.entertainment-video-single iframe {
    width: 100%;
    height: 650px;
    border: 0;
    display: block;
}

@media(max-width: 991px) {

    .entertainment-video-single iframe {
        height: 500px;
    }
}

@media(max-width: 768px) {

    .entertainment-videos-section {
        padding: 50px 0;
    }

    .entertainment-video-single iframe {
        height: 320px;
    }
}

/* ARTISTAS */

.entertainment-artists-section {
    padding: 90px 0;
    background: #f3f3f3;
}

.entertainment-artists-header {
    text-align: center;
    margin-bottom: 70px;
}

.entertainment-artists-header h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
    font-family: 'Noto Sans', sans-serif;
}

.section-line {
    width: 70px;
    height: 3px;
    background: #ef001c;
    margin: 35px auto 0;
}

.artist-card {
    text-align: center;
}

    .artist-card img {
width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.artist-card h3 {
    margin-top: 22px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    font-family: 'Noto Sans', sans-serif;
}

@media(max-width: 991px) {

    .entertainment-artists-header h2 {
        font-size: 38px;
    }

    .artist-card img {
        height: 300px;
    }
}

@media(max-width: 768px) {

    .entertainment-artists-section {
        padding: 60px 0;
    }

    .entertainment-artists-header {
        margin-bottom: 45px;
    }

    .entertainment-artists-header h2 {
        font-size: 30px;
    }

    .artist-card img {
        height: 220px;
    }

    .artist-card h3 {
        font-size: 18px;
    }
}

/* YES AL AMOR */

.yes-love-hero {
    position: relative;

    height: 520px;

    background-image: url('../img/hero-yes.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.yes-love-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.45);

    z-index: 1;
}

.yes-love-content {
    position: relative;
    z-index: 3;
}

.yes-love-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;

    margin: 0;
}

/* LINEAS */

.yes-love-hearts {
    position: absolute;
    inset: 0;

    z-index: 2;
    pointer-events: none;
}

.heart-line {
    position: absolute;

    border: 6px dashed rgba(255,255,255,.7);
    border-radius: 50%;

    opacity: .85;
}

.heart-left {
    width: 700px;
    height: 420px;

    left: -180px;
    bottom: -160px;

    transform: rotate(18deg);
}

.heart-right {
    width: 360px;
    height: 360px;

    right: 180px;
    bottom: 40px;
}

.heart-icon {
    position: absolute;

    right: 280px;
    bottom: 85px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon i {
    color: #fff;
    font-size: 42px;
}

/* MOBILE */

@media(max-width: 768px) {

    .yes-love-hero {
        height: 380px;
        text-align: center;
    }

    .yes-love-content h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .heart-left {
        width: 420px;
        height: 240px;

        left: -150px;
        bottom: -80px;
    }

    .heart-right {
        width: 180px;
        height: 180px;

        right: 20px;
        bottom: 70px;
    }

    .heart-icon {
        width: 60px;
        height: 60px;

        right: 70px;
        bottom: 80px;
    }

    .heart-icon i {
        font-size: 26px;
    }

}

.love-packages-intro {
    padding: 70px 0 50px;
    background: #f5f5f5;
}

.love-packages-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.love-packages-header h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;

    color: #e4002b;

    margin: 0;
}

.love-divider {
    width: 90px;
    height: 3px;

    background: #e4002b;

    display: block;

    margin: 28px auto 0;
}

/* MOBILE */

@media(max-width: 768px) {

    .love-packages-intro {
        padding: 55px 0 40px;
    }

    .love-packages-header h2 {
        font-size: 34px;
    }

}

.love-options-section {
    padding: 25px 30px 90px;
    background: #f5f5f5;
}

.love-card {
    height: 100%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
    transition: .25s ease;
}

.love-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #e50019;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s ease;
}

.love-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.love-card:hover::after {
    transform: scaleX(1);
}

.love-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.love-card-body {
    padding: 45px 40px 80px;
}

.love-card-body h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-bottom: 22px;
    transition: .25s ease;
}

.love-card:hover .love-card-body h3 {
    color: #e50019;
}

.love-card-body p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 19px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 28px;
}

.love-card-body a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    border: 1px solid #eee;
    border-radius: 5px;

    color: #e50019;
    background: #fff;

    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    text-decoration: none;

    transition: .25s ease;
}

.love-card-body a:hover {
    background: #e50019;
    color: #fff;
    border-color: #e50019;
}

@media(max-width: 768px) {
    .love-options-section {
        padding: 20px 15px 60px;
    }

    .love-card img {
        height: 260px;
    }

    .love-card-body {
        padding: 32px 25px 55px;
    }

    .love-card-body h3 {
        font-size: 24px;
    }

    .love-card-body p {
        font-size: 17px;
    }
}
.love-form-section {
    padding: 80px 0 95px;
    background: #f3f3f3;
}

.love-form {
    max-width: 760px;
    margin: 0 auto;
}

.love-field {
    margin-bottom: 24px;
}

.love-field label {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 7px;
}

.love-field label span {
    color: #e50019;
}

.love-field input,
.love-field select {
    width: 100%;
    height: 44px;
    border: 1px solid #d8d8d8;
    background: #fff;
    padding: 0 14px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    color: #555;
    outline: none;
}

.love-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.love-interest-field select {
    max-width: 455px;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
}

.love-submit-wrap {
    text-align: center;
    margin-top: 36px;
}

.love-submit-wrap button {
    min-width: 125px;
    height: 48px;
    border: none;
    border-radius: 50px;
    background: #e50019;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    transition: .25s;
}

.love-submit-wrap button:hover {
    background: #c90016;
    transform: translateY(-2px);
}

@media(max-width: 768px) {
    .love-form-section {
        padding: 55px 18px 70px;
    }

    .love-two-cols {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .love-interest-field select {
        max-width: 100%;
    }
}


/*VIP EXPERIENCE*/

.vip-hero{
    position: relative;
    height: 440px;

    background-image: url('../img/vip-hero.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.vip-hero::before{
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.45);
    z-index: 1;
}

/* efecto zoom suave */
.vip-hero::after{
    content: "";

    position: absolute;
    inset: -40px;

    background-image: inherit;
    background-size: cover;
    background-position: center;

    animation: vipZoom 18s ease-in-out infinite alternate;

    z-index: 0;
}

.vip-hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
}

.vip-hero-content{
    position: relative;
    z-index: 3;
}

.vip-hero h1{
    color: #fff;

    font-size: 72px;
    font-weight: 800;

    line-height: 1.1;

    margin: 0;
}

@keyframes vipZoom{
    from{
        transform: scale(1);
    }

    to{
        transform: scale(1.08);
    }
}

@media(max-width: 991px){

    .vip-hero{
        height: 360px;
        background-attachment: scroll;
    }

    .vip-hero h1{
        font-size: 48px;
    }

}

@media(max-width: 576px){

    .vip-hero{
        height: 300px;
    }

    .vip-hero h1{
        font-size: 38px;
    }

}

.vip-benefits-section {
    padding: 80px 0 60px;
    background: #f3f3f3;
}

.vip-benefits-grid {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px 60px;
}

.vip-benefit-item {
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
}

.vip-benefit-img {
    width: 235px;
    height: 235px;
    margin: 0 auto 24px;

    border-radius: 50%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-pack-img {
    border-radius: 0;
    overflow: visible;
}

.vip-pack-img img {
    object-fit: contain;
}

.vip-benefit-item p {
    font-size: 19px;
    line-height: 1.35;
    color: #000;
    margin: 0 auto;
    max-width: 310px;
}

.vip-experience-detail {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.vip-experience-detail h2 {
    max-width: 1000px;
    margin: 0 auto 55px;

    text-align: center;

    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
    color: #e50019;
}

.vip-detail-row {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.vip-detail-text {
    font-family: 'Noto Sans', sans-serif;
}

.vip-detail-text p {
    font-size: 18px;
    line-height: 1.45;
    color: #444;
    margin-bottom: 22px;
}

.vip-price {
    color: #e50019 !important;
}

.vip-terms {
    margin-top: 32px;
}

.vip-terms strong {
    display: block;
    margin-bottom: 12px;
}

.vip-terms ul {
    list-style: none;
    padding-left: 42px;
    margin: 0;
}

.vip-terms li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 9px;
    position: relative;
}

.vip-terms li::before {
    content: "✓";
    position: absolute;
    left: -24px;
}

.vip-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media(max-width: 991px) {
    .vip-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 35px;
    }

    .vip-detail-row {
        grid-template-columns: 1fr;
    }

    .vip-experience-detail h2 {
        font-size: 34px;
    }
}

@media(max-width: 575px) {
    .vip-benefits-grid {
        grid-template-columns: 1fr;
    }

    .vip-benefit-img {
        width: 210px;
        height: 210px;
    }

    .vip-benefit-item p {
        font-size: 17px;
    }

    .vip-experience-detail h2 {
        font-size: 28px;
    }
}

.vip-contact-section{
    position: relative;

    padding: 110px 0;

    background-image: url('../img/vip/vip-contact-bg.jpg');
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.vip-contact-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.15);
}

.vip-contact-card{
    position: relative;
    z-index: 2;

    max-width: 480px;

    margin: 0 auto;

    background: #f4f4f4;

    border-radius: 28px;

    padding: 48px 56px;

    box-shadow: 0 12px 35px rgba(0,0,0,.22);

    font-family: 'Noto Sans', sans-serif;
}

.vip-contact-card h2{
    margin: 0 0 26px;

    color: #e50019;

    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.vip-contact-info p{
    margin: 0 0 12px;

    color: #555;

    font-size: 18px;
    line-height: 1.45;
}

.vip-contact-info a{
    color: #e50019;
    text-decoration: none;

    transition: .25s ease;
}

.vip-contact-info a:hover{
    opacity: .75;
}

@media(max-width: 767px){

    .vip-contact-section{
        padding: 80px 0;
    }

    .vip-contact-card{
        padding: 38px 28px;
    }

    .vip-contact-card h2{
        font-size: 40px;
    }

    .vip-contact-info p{
        font-size: 18px;
    }

}


/* YACHTING */

.yachting-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/yachting/yachting-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.yachting-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.yachting-hero-content {
    position: relative;
    z-index: 2;
}

.yachting-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {
    .yachting-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .yachting-hero-content h1 {
        font-size: 46px;
    }
}

.yachting-info-section {
    padding: 70px 0 80px;
    background: #f3f3f3;
}

.yachting-text {
    max-width: 580px;
}

.yachting-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 21px;
    line-height: 1.35;
    color: #000;
    text-align: justify;
    margin-bottom: 24px;
}

.yachting-line {
    width: 70px;
    height: 2px;
    background: #e50019;
    margin: 42px auto 26px;
}

.yachting-btn {
    width: 235px;
    height: 48px;
    margin: 0 auto;

    border-radius: 50px;

    background: #e50019;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    text-decoration: none;
    transition: .25s;
}

.yachting-btn:hover {
    background: #c90016;
    color: #fff;
    transform: translateY(-2px);
}

.yachting-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 105px;
    gap: 10px;
}

.yachting-gallery a {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.yachting-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .3s ease;
}

.yachting-gallery a:hover img {
    transform: scale(1.06);
    filter: brightness(.85);
}

/* Cuadrícula exacta */
.yachting-gallery a:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.yachting-gallery a:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.yachting-gallery a:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 3;
}

.yachting-gallery a:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
}

.yachting-gallery a:nth-child(5) {
    grid-column: 2;
    grid-row: 3 / span 3;
}

.yachting-gallery a:nth-child(6) {
    grid-column: 3;
    grid-row: 4 / span 3;
}

.yachting-gallery a:nth-child(7) {
    grid-column: 1;
    grid-row: 5;
}

.yachting-gallery a:nth-child(8) {
    grid-column: 1;
    grid-row: 6;
}

.yachting-gallery a:nth-child(9) {
    grid-column: 2;
    grid-row: 6;
}

@media(max-width: 575px) {
    .yachting-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }

    .yachting-gallery a {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

.yachting-modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.yachting-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.yachting-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    filter: invert(1);
    opacity: 1;
}

@media(max-width: 991px) {
    .yachting-gallery {
        margin-top: 25px;
    }

    .yachting-text {
        max-width: 100%;
    }
}

@media(max-width: 575px) {
    .yachting-info-section {
        padding: 50px 0 60px;
    }

    .yachting-text p {
        font-size: 17px;
        text-align: left;
    }

    .yachting-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .yachting-gallery img,
    .yachting-gallery a:nth-child(1) img,
    .yachting-gallery a:nth-child(3) img,
    .yachting-gallery a:nth-child(5) img,
    .yachting-gallery a:nth-child(6) img {
        height: 150px;
    }
}
.yachting-rates-section {
    padding: 70px 0 85px;
    background: #f3f3f3;
}

.yachting-rates-header {
    text-align: center;
    margin-bottom: 28px;
}

.yachting-rates-header h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.yachting-rates-header span {
    display: block;
    width: 70px;
    height: 2px;
    background: #e50019;
    margin: 0 auto;
}

.yachting-rates-table {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    border-collapse: collapse;
    font-family: 'Noto Sans', sans-serif;
}

.yachting-rates-table th,
.yachting-rates-table td {
    border: 1px solid #d7d7d7;
    text-align: center;
    padding: 12px 16px;
    font-size: 17px;
    color: #404852;
}

.yachting-rates-table th {
    font-weight: 800;
    color: #e50019;
}

.normal-price {
    color: #e50019 !important;
}

.high-price {
    color: #0000ff !important;
}

.yachting-rates-notes {
    max-width: 1180px;
    margin: 25px auto 0;
    font-family: 'Noto Sans', sans-serif;
}

.yachting-rates-notes p {
    font-size: 18px;
    color: #404852;
    margin-bottom: 18px;
}

@media(max-width: 768px) {
    .yachting-rates-table {
        min-width: 850px;
    }

    .yachting-rates-notes p {
        font-size: 16px;
    }
}

.yachting-more-section {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.yachting-more-header {
    text-align: center;
    margin-bottom: 30px;
}

.yachting-more-header h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.yachting-more-header span {
    display: block;
    width: 70px;
    height: 2px;
    background: #e50019;
    margin: 0 auto;
}

.yachting-pdf-box,
.yachting-video-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.yachting-pdf-box iframe {
    width: 100%;
    height: 620px;
    background: #fff;
}

.yachting-video-box video {
    width: 100%;
    display: block;
    background: #000;
}

@media(max-width: 991px) {
    .yachting-pdf-box iframe {
        height: 500px;
    }
}

@media(max-width: 575px) {
    .yachting-more-section {
        padding: 55px 0 70px;
    }

    .yachting-more-header h2 {
        font-size: 26px;
    }

    .yachting-pdf-box iframe {
        height: 420px;
    }
}

/* GOLF */

.golf-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/golf/golf-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.golf-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.golf-hero-content {
    position: relative;
    z-index: 2;
}

.golf-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {
    .golf-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .golf-hero-content h1 {
        font-size: 46px;
    }
}

.golf-info-section {
    padding: 80px 0 90px;
    background: #f3f3f3;
}

.golf-info-text {
    max-width: 590px;
    display: flex;
    flex-direction: column;
}

.golf-info-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 21px;
    line-height: 1.35;
    color: #000;
    margin-bottom: 24px;
}

.golf-line {
    width: 70px;
    height: 2px;
    background: #e50019;
    margin: 42px auto 26px;
}

.golf-btn-red,
.golf-btn-dark {
    height: 48px;
    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: .25s ease;
}

.golf-btn-red {
    min-width: 135px;
    background: #e50019;
    color: #fff;

    margin: 0 auto;
}

.golf-btn-red:hover {
    background: #c90016;
    color: #fff;
    transform: translateY(-2px);
}

.golf-info-media {
    text-align: center;
    padding-top: 10px;
}

.golf-info-media img {
    width: 100%;
    max-width: 570px;
    height: auto;
    display: block;
    margin: 0 auto 22px;
}

.golf-btn-dark {
    min-width: 460px;
    background: #000;
    color: #fff;
}

.golf-btn-dark:hover {
    background: #e50019;
    color: #fff;
    transform: translateY(-2px);
}

@media(max-width: 991px) {
    .golf-info-text {
        max-width: 100%;
    }

    .golf-btn-dark {
        min-width: unset;
        width: 100%;
        max-width: 460px;
        padding: 0 20px;
    }
}

@media(max-width: 575px) {
    .golf-info-section {
        padding: 55px 0 65px;
    }

    .golf-info-text p {
        font-size: 17px;
    }

    .golf-btn-dark {
        height: auto;
        padding: 16px 22px;
        line-height: 1.4;
    }
}

/* EUROPA HERO */

.europa-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/circuitos-europa/europa-hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.europa-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.europa-hero-content {
    position: relative;
    z-index: 2;
}

.europa-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* efecto suave al bajar */

.europa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.08),
        rgba(0,0,0,.28)
    );
    z-index: 1;
}

@media(max-width: 991px) {

    .europa-hero {
        height: 360px;
        background-attachment: scroll;
    }

    .europa-hero-content h1 {
        font-size: 54px;
    }
}

@media(max-width: 575px) {

    .europa-hero {
        height: 300px;
    }

    .europa-hero-content h1 {
        font-size: 42px;
    }
}

/* EUROPA CIRCUITOS */

.europa-circuitos-section {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.europa-intro {
    max-width: 1220px;
    margin: 0 auto 40px;
}

.europa-intro p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.45;
    color: #000;
    margin-bottom: 24px;
}

.europa-line {
    width: 60px;
    height: 2px;
    background: #000;
    margin: 40px auto 0;
}

/* BOTONES */

.europa-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.europa-filter-btn {
    border: none;
    border-radius: 50px;
    background: #e50019;
    color: #fff;

    padding: 13px 22px;

    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: .25s ease;
}

.europa-filter-btn:hover {
    background: #000;
}

.europa-filter-btn.active {
    background: #000;
}

/* CARDS */

.europa-cards-wrapper {
    display: flex;
    justify-content: center;
}

.europa-card {
    display: none;

    width: 100%;
    max-width: 360px;

    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 2px 12px rgba(0,0,0,.08);

    animation: europaFade .35s ease;
}

.europa-card.active {
    display: block;
}

@keyframes europaFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.europa-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.europa-card-body {
    padding: 22px;
}

.europa-card-body h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #111;
}

.europa-card-body p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 18px;
}

.europa-card-body strong {
    color: #222;
}

/* BOTONES CARD */

.europa-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.europa-btn-red,
.europa-btn-dark {
    flex: 1;
    height: 48px;

    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition: .25s ease;
}

.europa-btn-red {
    background: #e50019;
    color: #fff;
}

.europa-btn-red:hover {
    background: #c50016;
    color: #fff;
}

.europa-btn-dark {
    background: #000;
    color: #fff;
}

.europa-btn-dark:hover {
    background: #222;
    color: #fff;
}

@media(max-width: 768px) {

    .europa-intro p {
        font-size: 17px;
    }

    .europa-filter-btn {
        width: 100%;
        justify-content: center;
    }

    .europa-card {
        max-width: 100%;
    }

    .europa-card-buttons {
        flex-direction: column;
    }
}

/* ASIA */

.asia-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/circuitos-asia/asia-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}
.asia-hero .container,
.asia-info-section .container {
    max-width: 1200px;
}
.asia-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.asia-hero-content {
    position: relative;
    z-index: 2;
}

.asia-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.asia-info-section {
    padding: 55px 0 80px;
    background: #f3f3f3;
}

.asia-info-text {
    max-width: 1160px;
    margin: 0 auto;
}

.asia-info-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: #000;
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    .asia-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .asia-hero-content h1 {
        font-size: 46px;
    }

    .asia-info-text p {
        font-size: 17px;
    }
}

/* NORTEAMERICA */

.norteamerica-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/circuitos-norteamerica/norteamerica-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}
.norteamerica-hero .container,
.norteamerica-info-section .container {
    max-width: 1200px;
}
.norteamerica-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.norteamerica-hero-content {
    position: relative;
    z-index: 2;
}

.norteamerica-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.norteamerica-info-section {
    padding: 55px 0 80px;
    background: #f3f3f3;
}

.norteamerica-info-text {
    max-width: 1160px;
    margin: 0 auto;
}

.norteamerica-info-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: #000;
    margin-bottom: 20px;
}

@media(max-width: 768px) {

    .norteamerica-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .norteamerica-hero-content h1 {
        font-size: 46px;
    }

    .norteamerica-info-text p {
        font-size: 17px;
    }
}

/* OCEANIA */

.oceania-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/circuitos-oceania/oceania-hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.oceania-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.oceania-hero .container,
.oceania-info-section .container {
    max-width: 1200px;
}

.oceania-hero-content {
    position: relative;
    z-index: 2;
}

.oceania-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.oceania-info-section {
    padding: 55px 0 80px;
    background: #f3f3f3;
}

.oceania-info-text {
    max-width: 1160px;
    margin: 0 auto;
}

.oceania-info-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 24px;
}

@media(max-width: 768px) {

    .oceania-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .oceania-hero-content h1 {
        font-size: 46px;
    }

    .oceania-info-text p {
        font-size: 17px;
        line-height: 1.55;
    }
}

/* AFRICA */

.africa-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/circuitos-africa/africa-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.africa-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.africa-hero .container,
.africa-info-section .container {
    max-width: 1200px;
}

.africa-hero-content {
    position: relative;
    z-index: 2;
}

.africa-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.africa-info-section {
    padding: 55px 0 70px;
    background: #f3f3f3;
}

.africa-info-text {
    max-width: 1180px;
    margin: 0 auto;
}

.africa-info-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 42px;
}

.africa-line {
    width: 95px;
    height: 2px;
    background: #000;
    margin: 0 auto;
}

@media(max-width: 768px) {

    .africa-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .africa-hero-content h1 {
        font-size: 48px;
    }

    .africa-info-text p {
        font-size: 17px;
        line-height: 1.55;
    }
}

/* AFRICA CIRCUITS */

.africa-circuits-section {
    padding: 30px 0 90px;
    background: #f3f3f3;
}

.africa-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.africa-filter-btn {
    border: none;
    height: 40px;
    padding: 0 28px;
    border-radius: 50px;

    background: #e50019;
    color: #fff;

    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: .25s ease;
}

.africa-filter-btn.active {
    background: #000;
}

.africa-filter-btn:hover {
    transform: translateY(-2px);
}

.africa-cards-wrapper {
    display: none;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.africa-cards-wrapper.active {
    display: flex;
}

.africa-card {
    width: 100%;
    max-width: 340px;

    background: #f3f3f3;
    border: 1px solid #cfcfcf;
    border-radius: 10px;

    overflow: hidden;
}

.africa-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.africa-card-body {
    padding: 24px;
}

.africa-card-body h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 22px;
}

.africa-card-body p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 18px;
}

.africa-card-body strong {
    color: #333;
}

.africa-card-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.africa-card-buttons a {
    flex: 1;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    text-decoration: none;

    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition: .25s ease;
}

.btn-programa {
    background: #e50019;
    color: #fff;
}

.btn-catalogo {
    background: #000;
    color: #fff;
}

.btn-programa:hover,
.btn-catalogo:hover {
    transform: translateY(-2px);
    color: #fff;
}

@media(max-width: 768px) {

    .africa-card {
        max-width: 100%;
    }

    .africa-card-body p {
        font-size: 17px;
    }

}

/* CATALOGOS */

.catalogos-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/catalogos/catalogos-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.catalogos-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.catalogos-hero .container {
    max-width: 1200px;
}

.catalogos-hero-content {
    position: relative;
    z-index: 2;
}

.catalogos-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {

    .catalogos-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .catalogos-hero-content h1 {
        font-size: 48px;
    }

}

/* CATALOGOS CONTENT */

.catalogos-section {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.catalogos-block {
    margin-bottom: 85px;
}

.catalogos-block:last-child {
    margin-bottom: 0;
}

.catalogos-block h2 {
    text-align: center;

    font-family: 'Noto Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #111;

    margin-bottom: 55px;
}

.catalogos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px 40px;

    justify-items: center;
}

.catalogos-grid-main {
    grid-template-columns: repeat(3, 1fr);
}

.catalogo-item {
    text-align: center;
}

.catalogo-item img {
    width: 100%;
    max-width: 210px;

    display: block;
    margin: 0 auto 22px;

    transition: .25s ease;
}

.catalogo-item:hover img {
    transform: translateY(-4px);
}

.catalogo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    padding: 0 28px;

    border-radius: 50px;

    background: #e50019;
    color: #fff;

    text-decoration: none;

    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: .25s ease;
}

.catalogo-btn:hover {
    background: #c90016;
    color: #fff;
    transform: translateY(-2px);
}

@media(max-width: 1200px) {

    .catalogos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalogos-grid-main {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width: 991px) {

    .catalogos-grid,
    .catalogos-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogos-block h2 {
        font-size: 38px;
    }

}

@media(max-width: 575px) {

    .catalogos-section {
        padding: 55px 0 70px;
    }

    .catalogos-grid,
    .catalogos-grid-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .catalogos-block h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

}

/* COSTA RICA */

.costa-rica-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/costa-rica/costa-rica-hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.costa-rica-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.costa-rica-hero .container {
    max-width: 1200px;
}

.costa-rica-hero-content {
    position: relative;
    z-index: 2;
}

.costa-rica-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media(max-width: 768px) {

    .costa-rica-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .costa-rica-hero-content h1 {
        font-size: 48px;
    }

}
.costa-rica-info-section {
    padding: 65px 0 80px;
    background: #f3f3f3;
}

.costa-rica-text {
    padding: 8px 40px 0;
}

.costa-rica-text p {
    max-width: 860px;

    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.45;
    color: #444;

    margin: 0;
}

.costa-rica-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
    gap: 10px;
        margin-top: 15px;

}

.costa-rica-gallery a {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.costa-rica-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.78);
    transition: .3s ease;
}

.costa-rica-gallery a:hover img {
    filter: brightness(1);
    transform: scale(1.04);
}

/* grilla exacta */
/* grilla exacta corregida */
.costa-rica-gallery a:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.costa-rica-gallery a:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.costa-rica-gallery a:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.costa-rica-gallery a:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.costa-rica-gallery a:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.costa-rica-gallery a:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
}

.costa-rica-gallery a:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

.costa-rica-gallery a:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
}

.costa-rica-gallery a:nth-child(9) {
    grid-column: 3;
    grid-row: 4;
}

.costa-rica-modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.costa-rica-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.costa-rica-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    filter: invert(1);
    opacity: 1;
}

/* HOTELES */

.hoteles-section {
    padding: 80px 0 120px;
    background: #f3f3f3;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 72px;
    font-weight: 800;
    color: #e50019;
    margin-bottom: 12px;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    margin-bottom: 30px;
}

.section-divider span {
    display: block;
    height: 4px;
    border-radius: 50px;
    background: #e50019;
}

.section-divider span:nth-child(1),
.section-divider span:nth-child(3) {
    width: 6px;
}

.section-divider span:nth-child(2) {
    width: 40px;
}

.section-title p {
    max-width: 1400px;
    margin: auto;

    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

/* CARD */

.hotel-card {
    background: #fff;
    overflow: hidden;
    position: relative;

    transition: .35s ease;

    box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.hotel-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #e50019;

    transform: scaleX(0);
    transform-origin: left;

    transition: .35s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.hotel-card:hover::after {
    transform: scaleX(1);
}

/* IMG */

.hotel-card-img {
    overflow: hidden;
}

.hotel-card-img img {
    width: 100%;
    height: 370px;

    object-fit: cover;
    display: block;

    transition: .5s ease;
}

.hotel-card:hover .hotel-card-img img {
    transform: scale(1.08);
}

/* BODY */

.hotel-card-body {
    padding: 40px;
}

.hotel-card-body h3 {
    font-size: 28px;
    font-weight: 800;
    color: #000;

    margin-bottom: 25px;
}

.hotel-card-body p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;

    margin-bottom: 35px;
}

/* BTN */

.hotel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    border: 1px solid #eee;

    color: #e50019;
    text-decoration: none;

    font-size: 18px;
    font-weight: 500;

    transition: .3s ease;
}

.hotel-btn:hover {
    background: #e50019;
    color: #fff;
}

/* CONTACTO */

.hotel-contact-banner {
    position: relative;

    padding: 40px 0;

    background-image: url('../img/hoteles/contact-banner.jpg');
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hotel-contact-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.25);
}

.hotel-contact-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hotel-contact-content h2 {
    color: #fff;

    font-size: 30px;
    font-weight: 800;

    text-align: center;

    margin-bottom: 35px;
}

.hotel-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 32px;

    background: #e50019;
    color: #fff;

    border-radius: 100px;

    text-decoration: none;

    font-size: 20px;
    font-weight: 700;

    transition: .3s ease;
}

.hotel-contact-btn:hover {
    background: #c40015;
    color: #fff;

    transform: translateY(-3px);
}
.hoteles-section .container-fluid {
    max-width: 1800px;
}

/* RESPONSIVE */

@media(max-width: 991px) {

    .section-title h2 {
        font-size: 52px;
    }

    .hotel-card-body {
        padding: 30px;
    }

    .hotel-contact-content h2 {
        font-size: 38px;
    }

}

@media(max-width: 575px) {

    .hoteles-section {
        padding: 60px 0 90px;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .section-title p {
        font-size: 17px;
    }

    .hotel-card-img img {
        height: 280px;
    }

    .hotel-card-body h3 {
        font-size: 24px;
    }

    .hotel-card-body p {
        font-size: 16px;
    }

    .hotel-contact-banner {
        padding: 70px 0;
    }

    .hotel-contact-content h2 {
        font-size: 28px;
    }

}

/* PLANET HOLLYWOOD */

.planet-hollywood-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/hoteles/planet-hollywood/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.planet-hollywood-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.planet-hollywood-hero .container {
    max-width: 1200px;
}

.planet-hollywood-hero-content {
    position: relative;
    z-index: 2;
}

.planet-hollywood-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.planet-hollywood-content {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.planet-hollywood-text {
    max-width: 860px;
}

.planet-hollywood-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 26px;
}

.planet-hollywood-text p:last-child {
    margin-bottom: 0;
}

.planet-hollywood-image {
    overflow: hidden;
}

.planet-hollywood-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media(max-width: 991px) {

    .planet-hollywood-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .planet-hollywood-hero-content h1 {
        font-size: 48px;
    }

    .planet-hollywood-content {
        padding: 50px 0 70px;
    }

    .planet-hollywood-image {
        margin-top: 10px;
    }

}

@media(max-width: 575px) {

    .planet-hollywood-hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .planet-hollywood-text p {
        font-size: 17px;
    }

}
/* RIU PALACE COSTA RICA */

.riu-palace-hero {
    position: relative;
    height: 430px;

    background-image: url('../img/hoteles/riu-palace/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.riu-palace-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.riu-palace-hero .container {
    max-width: 1200px;
}

.riu-palace-hero-content {
    position: relative;
    z-index: 2;
}

.riu-palace-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.riu-palace-content {
    padding: 55px 0 70px;
    background: #f3f3f3;
}

.riu-palace-text {
    max-width: 100%;
}

.riu-palace-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 28px;
}

.riu-palace-text p:last-child {
    margin-bottom: 0;
}

@media(max-width: 991px) {

    .riu-palace-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .riu-palace-hero-content h1 {
        font-size: 48px;
    }

    .riu-palace-content {
        padding: 45px 0 60px;
    }

}

@media(max-width: 575px) {

    .riu-palace-hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .riu-palace-text p {
        font-size: 17px;
    }

}
/* RIU GUANACASTE */

.riu-guanacaste-hero {
    position: relative;
    height: 430px;

    background-image: url('../img/hoteles/riu-guanacaste/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.riu-guanacaste-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.riu-guanacaste-hero .container {
    max-width: 1200px;
}

.riu-guanacaste-hero-content {
    position: relative;
    z-index: 2;
}

.riu-guanacaste-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.riu-guanacaste-content {
    padding: 55px 0 70px;
    background: #f3f3f3;
}

.riu-guanacaste-text {
    max-width: 100%;
}

.riu-guanacaste-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 28px;
}

.riu-guanacaste-text p:last-child {
    margin-bottom: 0;
}

@media(max-width: 991px) {

    .riu-guanacaste-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .riu-guanacaste-hero-content h1 {
        font-size: 48px;
    }

    .riu-guanacaste-content {
        padding: 45px 0 60px;
    }

}

@media(max-width: 575px) {

    .riu-guanacaste-hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .riu-guanacaste-text p {
        font-size: 17px;
    }

}/* RIU GUANACASTE */

.riu-guanacaste-hero {
    position: relative;
    height: 430px;

    background-image: url('../img/hoteles/riu-guanacaste/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.riu-guanacaste-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.riu-guanacaste-hero .container {
    max-width: 1200px;
}

.riu-guanacaste-hero-content {
    position: relative;
    z-index: 2;
}

.riu-guanacaste-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.riu-guanacaste-content {
    padding: 55px 0 70px;
    background: #f3f3f3;
}

.riu-guanacaste-text {
    max-width: 100%;
}

.riu-guanacaste-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 28px;
}

.riu-guanacaste-text p:last-child {
    margin-bottom: 0;
}

@media(max-width: 991px) {

    .riu-guanacaste-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .riu-guanacaste-hero-content h1 {
        font-size: 48px;
    }

    .riu-guanacaste-content {
        padding: 45px 0 60px;
    }

}

@media(max-width: 575px) {

    .riu-guanacaste-hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .riu-guanacaste-text p {
        font-size: 17px;
    }

}

/* BAHAMAS */

.bahamas-hero {
    position: relative;
    height: 440px;
    background-image: url('../img/bahamas/bahamas-hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bahamas-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.bahamas-hero .container {
    max-width: 1200px;
}

.bahamas-hero-content {
    position: relative;
    z-index: 2;
}

.bahamas-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.bahamas-info-section {
    padding: 38px 0 90px;
    background: #f3f3f3;
}

.bahamas-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 19px;
    line-height: 1.45;
    color: #444;
    margin: 0;
}

/* GALERIA */

.bahamas-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
    gap: 10px;
}

.bahamas-gallery a {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.bahamas-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.82);
    transition: .35s ease;
}

.bahamas-gallery a:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

/* distribución exacta tipo captura */
.bhs-1 {
    grid-column: 1;
    grid-row: 1;
}

.bhs-2 {
    grid-column: 2;
    grid-row: 1;
}

.bhs-3 {
    grid-column: 3;
    grid-row: 1;
}

.bhs-4 {
    grid-column: 1;
    grid-row: 2;
}

.bhs-5 {
    grid-column: 2;
    grid-row: 2 / span 2;
}

.bhs-6 {
    grid-column: 3;
    grid-row: 2;
}

.bhs-7 {
    grid-column: 1;
    grid-row: 3;
}

.bhs-8 {
    grid-column: 2;
    grid-row: 4;
}

.bhs-9 {
    grid-column: 3;
    grid-row: 3;
}

/* MODAL */

.bahamas-modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.bahamas-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.bahamas-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    filter: invert(1);
    opacity: 1;
}

@media(max-width: 991px) {
    .bahamas-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .bahamas-hero-content h1 {
        font-size: 48px;
    }

    .bahamas-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .bahamas-gallery a {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media(max-width: 575px) {
    .bahamas-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .bahamas-text p {
        font-size: 17px;
    }
}

.bahamas-hoteles-section {
    padding: 75px 0 110px;
    background: #f3f3f3;
}

.bahamas-hotel-card {
    min-height: 760px;
}

.bahamas-hotel-card .hotel-card-img img {
    height: 390px;
}

.bahamas-hotel-card .hotel-card-body {
    padding: 38px 40px;
}

.bahamas-hotel-card .hotel-card-body h3 {
    font-size: 30px;
}

@media(max-width: 991px) {
    .bahamas-hotel-card {
        min-height: auto;
    }

    .bahamas-hotel-card .hotel-card-img img {
        height: 300px;
    }
}

/* RIU PALACE PARADISE ISLAND */

.riu-paradise-hero {
    position: relative;
    height: 440px;
    background-image: url('../img/hoteles/riu-palace-paradise/hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.riu-paradise-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.riu-paradise-hero .container {
    max-width: 1200px;
}

.riu-paradise-hero-content {
    position: relative;
    z-index: 2;
}

.riu-paradise-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.riu-paradise-content {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.riu-paradise-text {
    max-width: 900px;
}

.riu-paradise-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 26px;
}

.riu-paradise-logo {
    background: #fff;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.riu-paradise-logo img {
    width: 70%;
    max-width: 560px;
    display: block;
}

@media(max-width: 991px) {
    .riu-paradise-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .riu-paradise-hero-content h1 {
        font-size: 46px;
        line-height: 1.15;
    }

    .riu-paradise-content {
        padding: 50px 0 70px;
    }

    .riu-paradise-logo {
        min-height: 340px;
    }
}

@media(max-width: 575px) {
    .riu-paradise-hero-content h1 {
        font-size: 36px;
    }

    .riu-paradise-text p {
        font-size: 17px;
    }

    .riu-paradise-logo img {
        width: 80%;
    }
}
/* VIVA WYNDHAM */

.viva-wyndham-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/hoteles/viva-wyndham/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.viva-wyndham-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.viva-wyndham-hero .container {
    max-width: 1200px;
}

.viva-wyndham-hero-content {
    position: relative;
    z-index: 2;
}

.viva-wyndham-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.viva-wyndham-content {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.viva-wyndham-text {
    max-width: 900px;
}

.viva-wyndham-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 26px;
}

.viva-wyndham-logo {
    background: #fff;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px;
}

.viva-wyndham-logo img {
    width: 72%;
    max-width: 520px;
    display: block;
}

@media(max-width: 991px) {

    .viva-wyndham-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .viva-wyndham-hero-content h1 {
        font-size: 46px;
        line-height: 1.15;
    }

    .viva-wyndham-content {
        padding: 50px 0 70px;
    }

    .viva-wyndham-logo {
        min-height: 340px;
    }

}

@media(max-width: 575px) {

    .viva-wyndham-hero-content h1 {
        font-size: 36px;
    }

    .viva-wyndham-text p {
        font-size: 17px;
    }

    .viva-wyndham-logo img {
        width: 85%;
    }

}

/* JAMAICA */

.jamaica-hero {
    position: relative;
    height: 440px;

    background-image: url('../img/jamaica/jamaica-hero.jpeg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.jamaica-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.jamaica-hero .container {
    max-width: 1200px;
}

.jamaica-hero-content {
    position: relative;
    z-index: 2;
}

.jamaica-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.jamaica-info-section {
    padding: 70px 0 90px;
    background: #f3f3f3;
}

.jamaica-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 28px;
}

.jamaica-gallery {
    column-count: 3;
    column-gap: 10px;
}

.jamaica-gallery a {
    display: block;
    margin-bottom: 10px;
    break-inside: avoid;
    overflow: hidden;
}

.jamaica-gallery img {
    width: 100%;
    display: block;
    transition: .3s ease;
}

.jamaica-gallery a:hover img {
    transform: scale(1.03);
    filter: brightness(.9);
}

@media(max-width: 991px) {
    .jamaica-gallery {
        column-count: 2;
    }
}

@media(max-width: 575px) {
    .jamaica-gallery {
        column-count: 1;
    }
}
/* MODAL */

.jamaica-modal-content {
    background: transparent;
    border: 0;
    position: relative;
}

.jamaica-modal-content img {
    width: 100%;
    border-radius: 8px;
}

.jamaica-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    filter: brightness(0) invert(1);
    opacity: 1;
    z-index: 10;
}

/* RESPONSIVE */

@media(max-width: 991px) {

    .jamaica-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .jamaica-hero-content h1 {
        font-size: 48px;
    }

    .jamaica-info-section {
        padding: 50px 0 70px;
    }

    .jamaica-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .jamaica-gallery a {
        grid-column: auto !important;
        grid-row: auto !important;
    }

}

@media(max-width: 575px) {

    .jamaica-hero-content h1 {
        font-size: 38px;
    }

    .jamaica-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .jamaica-text p {
        font-size: 17px;
    }

}

.jamaica-hoteles-section {
    padding: 75px 0 110px;
    background: #f3f3f3;
}

.jamaica-hotel-card {
    min-height: 650px;
}

.jamaica-hotel-card .hotel-card-img img {
    height: 390px;
}

.jamaica-hotel-card .hotel-card-body {
    padding: 38px 40px;
}

.jamaica-hotel-card .hotel-card-body h3 {
    font-size: 28px;
}

.riu-tropical-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/riu-palace-tropical-bay-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}

.hotel-detail-logo img {
    max-width: 100%;
    width: 720px;
}

@media(max-width: 991px) {

    .riu-tropical-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 48px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .hotel-detail-logo img {
        width: 100%;
    }

}

.riu-negril-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/riu-negril-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}

.hotel-detail-logo img {
    max-width: 100%;
    width: 720px;
}

@media(max-width: 991px) {

    .riu-negril-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 48px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .hotel-detail-logo img {
        width: 100%;
    }

}

.royalton-white-sands-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/royalton-white-sands-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    overflow: hidden;
}

.royalton-logo-box img {
    width: 95%;
    max-width: 900px;
}

@media(max-width: 991px) {

    .royalton-white-sands-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 44px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .royalton-logo-box img {
        width: 100%;
    }

}

.royalton-blue-waters-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/royalton-blue-waters-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    overflow: hidden;
}

.royalton-logo-box img {
    width: 50%;
    max-width: 700px;
}

@media(max-width: 991px) {

    .royalton-blue-waters-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 44px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .royalton-logo-box img {
        width: 100%;
    }

}

.royalton-blue-waters-negril-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/royalton-blue-waters-negril-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    overflow: hidden;
}

.royalton-logo-box img {
    width: 50%;
    max-width: 700px;
}

@media(max-width: 991px) {

    .royalton-blue-waters-negril-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 44px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .royalton-logo-box img {
        width: 100%;
    }

}

.riu-montego-bay-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/riu-montego-bay-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    overflow: hidden;
}

.riu-logo-box img {
    width: 95%;
    max-width: 900px;
}

@media(max-width: 991px) {

    .riu-montego-bay-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 44px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .riu-logo-box img {
        width: 100%;
    }

}
.riu-ocho-rios-hero {
    position: relative;
    height: 470px;

    background-image: url('../img/jamaica/hoteles/riu-ocho-rios-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    overflow: hidden;
}

.riu-logo-box img {
    width: 95%;
    max-width: 900px;
}

@media(max-width: 991px) {

    .riu-ocho-rios-hero {
        height: 360px;
    }

    .hotel-hero-content h1 {
        font-size: 44px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .riu-logo-box img {
        width: 100%;
    }

}

.riu-palace-paradise-island-hero {
    position: relative;
    height: 460px;

    background-image: url('../img/jamaica/hoteles/riu-palace-paradise-island-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #4d4d4d;
    margin-bottom: 28px;
}

.hotel-detail-logo {
    background: #efefef;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.riu-logo-box img {
    width: 95%;
    max-width: 850px;
}

@media(max-width: 991px) {

    .riu-palace-paradise-island-hero {
        height: 340px;
    }

    .hotel-hero-content h1 {
        font-size: 42px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .riu-logo-box img {
        width: 100%;
    }

    .hotel-detail-text p {
        font-size: 18px;
    }

}

/* ARUBA */

.aruba-hero {
    position: relative;
    height: 440px;
    background-image: url('../img/aruba/aruba-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.aruba-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.aruba-hero .container {
    max-width: 1200px;
}

.aruba-hero-content {
    position: relative;
    z-index: 2;
}

.aruba-hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.aruba-info-section {
    padding: 38px 0 90px;
    background: #f3f3f3;
}

.aruba-text p {
    font-size: 19px;
    line-height: 1.45;
    color: #444;
    margin-bottom: 26px;
}

/* GALERÍA ARUBA - tipo captura */

.aruba-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 95px;
    gap: 10px;
}

.aruba-gallery a {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.aruba-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.9);
    transition: .35s ease;
}

.aruba-gallery a:hover img {
    filter: brightness(1.08);
    transform: scale(1.05);
}

.aruba-gallery a:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.aruba-gallery a:nth-child(2) {
    grid-column: 3 / span 4;
    grid-row: 1 / span 2;
}

.aruba-gallery a:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 3 / span 2;
}

.aruba-gallery a:nth-child(4) {
    grid-column: 3 / span 2;
    grid-row: 3 / span 2;
}

.aruba-gallery a:nth-child(5) {
    grid-column: 5 / span 2;
    grid-row: 3 / span 2;
}

.aruba-gallery a:nth-child(6) {
    grid-column: 1 / span 2;
    grid-row: 5 / span 2;
}

.aruba-gallery a:nth-child(7) {
    grid-column: 3 / span 2;
    grid-row: 5 / span 2;
}

.aruba-gallery a:nth-child(8) {
    grid-column: 5;
    grid-row: 5 / span 2;
}

.aruba-gallery a:nth-child(9) {
    grid-column: 6;
    grid-row: 5 / span 2;
}

.aruba-gallery a:nth-child(10) {
    grid-column: 1;
    grid-row: 7 / span 2;
}

.aruba-gallery a:nth-child(11) {
    grid-column: 2 / span 3;
    grid-row: 7 / span 2;
}

/* MODAL */

.aruba-modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.aruba-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.aruba-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    filter: invert(1);
    opacity: 1;
}

/* HOTELES */

.aruba-hoteles-section {
    padding: 75px 0 110px;
    background: #f3f3f3;
}

.aruba-hotel-card {
    min-height: 640px;
}

.aruba-hotel-card .hotel-card-img img {
    height: 390px;
}

.aruba-hotel-card .hotel-card-body {
    padding: 38px 40px;
}

@media(max-width: 991px) {
    .aruba-hero {
        height: 320px;
        background-attachment: scroll;
    }

    .aruba-hero-content h1 {
        font-size: 48px;
    }

    .aruba-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .aruba-gallery a {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

.barcelo-aruba-hero {
    position: relative;
    height: 460px;

    background-image: url('../img/aruba/hoteles/barcelo-aruba-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #4d4d4d;
    margin-bottom: 32px;
}

.hotel-detail-logo {
    background: #efefef;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.barcelo-logo-box img {
    width: 95%;
    max-width: 850px;
}

@media(max-width: 991px) {

    .barcelo-aruba-hero {
        height: 340px;
    }

    .hotel-hero-content h1 {
        font-size: 42px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .barcelo-logo-box img {
        width: 100%;
    }

    .hotel-detail-text p {
        font-size: 18px;
    }

}

.riu-palace-aruba-hero {
    position: relative;
    height: 460px;

    background-image: url('../img/aruba/hoteles/riu-palace-aruba-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.hotel-detail-section {
    padding: 80px 0 110px;
    background: #f3f3f3;
}

.hotel-detail-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #4d4d4d;
    margin-bottom: 32px;
}

.hotel-detail-logo {
    background: #efefef;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.riu-logo-box img {
    width: 95%;
    max-width: 850px;
}

@media(max-width: 991px) {

    .riu-palace-aruba-hero {
        height: 340px;
    }

    .hotel-hero-content h1 {
        font-size: 42px;
    }

    .hotel-detail-logo {
        min-height: auto;
        padding: 40px;
    }

    .riu-logo-box img {
        width: 100%;
    }

    .hotel-detail-text p {
        font-size: 18px;
    }

}

/* PUNTA CANA */

.punta-cana-hero {
    position: relative;
    height: 440px;
    background-image: url('../img/punta-cana/punta-cana-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.punta-cana-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.punta-cana-hero .container {
    max-width: 1200px;
}

.punta-cana-hero-content {
    position: relative;
    z-index: 2;
}

.punta-cana-hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.punta-cana-info-section {
    padding: 45px 0 75px;
    background: #f3f3f3;
}

.punta-cana-text p {
    font-size: 19px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 24px;
}
.puerto-plata-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.puerto-plata-gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.punta-cana-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
}

.punta-cana-gallery a {
    display: block;
    height: 170px;
    overflow: hidden;
    cursor: pointer;
}

.punta-cana-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.92);
    transition: .35s ease;
}

.punta-cana-gallery a:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.punta-cana-modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.punta-cana-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.punta-cana-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    filter: invert(1);
    opacity: 1;
}

/* HOTELES */

.hoteles-section {
    padding: 80px 0 100px;
    background: #f3f3f3;
}

.hoteles-title {
    text-align: center;
    margin-bottom: 55px;
}

.hoteles-title h2 {
    font-size: 56px;
    font-weight: 800;
    color: #e50019;
    margin: 0 0 12px;
}

.hoteles-divider {
    width: 68px;
    height: 3px;
    background: #e50019;
    margin: 0 auto 28px;
    position: relative;
}



.hoteles-title p {
    font-size: 20px;
    color: #444;
    margin: 0 auto;
    max-width: 1450px;
}

.hoteles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hotel-card {
    background: #fff;
    min-height: 720px;
    box-shadow: 0 4px 22px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    transition: .25s ease;
    overflow: hidden;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.hotel-card-img {
    width: 100%;
    height: 385px;
    overflow: hidden;
}

.hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s ease;
}

.hotel-card:hover .hotel-card-img img {
    transform: scale(1.04);
}

.hotel-card-body {
    padding: 54px 42px 46px;
    flex: 1;
}

.hotel-card-body h3 {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.18;
    color: #000;
    margin: 0 0 24px;
}

.hotel-card-body p {
    font-size: 20px;
    line-height: 1.45;
    color: #666;
    margin: 0 0 28px;
}

.hotel-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 48px;
    padding: 0 22px;
    border: 1px solid #eee;
    border-radius: 5px;
    color: #e50019;
    background: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: .25s ease;
}

.hotel-card-btn:hover {
    background: #e50019;
    color: #fff;
    border-color: #e50019;
}


@media(max-width: 1199px) {
    .hoteles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 991px) {
    .punta-cana-hero {
        height: 330px;
        background-attachment: scroll;
    }

    .punta-cana-hero-content h1 {
        font-size: 48px;
    }

    .punta-cana-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-card {
        min-height: auto;
    }

    .hotel-card-img {
        height: 300px;
    }
}

@media(max-width: 767px) {
    .hoteles-grid {
        grid-template-columns: 1fr;
    }

    .hoteles-title h2 {
        font-size: 42px;
    }

    .hoteles-title p {
        font-size: 17px;
    }

    .hotel-card-body {
        padding: 34px 26px;
    }

    .hotel-card-body h3 {
        font-size: 26px;
    }

    .hotel-card-body p {
        font-size: 17px;
    }
}

@media(max-width: 575px) {
    .punta-cana-gallery {
        grid-template-columns: 1fr;
    }

    .punta-cana-gallery a {
        height: 220px;
    }
}

/* HERO GENÉRICO */

.detail-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.46);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
}

.detail-hero-content h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* LAYOUT GENÉRICO */

.detail-page-section {
    background: #f3f3f3;
    padding: 20px 0 90px;
    overflow-x: hidden;
}

.detail-page-section .container-fluid {
    max-width: 1760px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(360px, 36%) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    width: 100%;
}

.detail-left,
.detail-right {
    min-width: 0;
}

.detail-left {
    padding: 0;
}

.detail-right {
    overflow: hidden;
}

.hotel-mosaic-gallery {
    width: 100%;
    max-width: 100%;
    column-count: 3;
    column-gap: 4px;
    line-height: 0;
}

.hotel-mosaic-gallery a {
    display: block;
    width: 100%;
    margin: 0 0 4px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
    break-inside: avoid;
}

.hotel-mosaic-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transition: .35s ease;
    filter: brightness(.88);
}

/* MODAL GALERÍA */

.gallery-modal-content {
    background: transparent;
    border: 0;
    position: relative;
}

.gallery-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    filter: invert(1);
    opacity: 1;
    z-index: 5;
}

/* RESPONSIVE */

@media(max-width: 991px) {
    .detail-hero {
        height: 330px;
        background-attachment: scroll;
    }

    .detail-hero-content h1 {
        font-size: 44px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-left {
        padding: 0 22px;
    }

    .detail-text p {
        font-size: 17px;
    }

    .hotel-mosaic-gallery {
        column-count: 2;
        padding: 0 15px;
    }
}

@media(max-width: 575px) {
    .detail-hero-content h1 {
        font-size: 34px;
    }

    .hotel-mosaic-gallery {
        column-count: 1;
    }
}

.riu-logo {
    width: 80%;
}

/* LAYOUT SIMPLE */

.detail-layout-simple {
    display: grid;
    grid-template-columns: 54% 46%;
    gap: 40px;
    align-items: start;
}

.detail-right-simple {
    display: flex;
    justify-content: center;
}

.simple-logo {
    width: 100%;
    max-width: 660px;
    min-height: 520px;
    background: #f7f7f7;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.simple-logo img {
    width: 78%;
    max-width: 520px;
    object-fit: contain;
}

/* RESPONSIVE */

@media(max-width: 991px) {

    .detail-layout-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-right-simple {
        padding: 0 20px;
    }

    .simple-logo {
        min-height: 320px;
    }

    .simple-logo img {
        width: 70%;
    }
}

.hotel-slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #f3f3f3;
}

.hotel-slider-main {
    width: 100%;
    height: 615px;
    background: #eee;
    overflow: hidden;
}

.hotel-slider-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-slider-thumbs {
    display: flex;
    gap: 3px;
    padding: 135px 28px 10px;
    overflow-x: auto;
}

.hotel-thumb {
    width: 90px;
    height: 58px;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    opacity: .75;
    flex: 0 0 auto;
}

.hotel-thumb.active,
.hotel-thumb:hover {
    opacity: 1;
}

.hotel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-slider-arrow {
    position: absolute;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #aaa;
    font-size: 34px;
    line-height: 34px;
    cursor: pointer;
}

.hotel-slider-prev {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.hotel-slider-next {
    right: 8px;
    bottom: 30px;
}

.hotel-slider-arrow:hover {
    color: #e50019;
}
.detail-left {
    overflow: hidden;
}

.detail-logo {
    margin-top: 35px;
    width: 100%;
    max-height: 260px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-logo img {
    max-width: 85%;
    max-height: 350px;
    object-fit: contain;
    display: block;
}

.Royalton-logo {
    max-width: 90%;
    max-height: 210px;
}

.hotel-slider-section {
    background: #f3f3f3;
    padding: 35px 0 80px;
    overflow: hidden;
}

.hotel-slider-layout {
    display: grid;
    grid-template-columns: 34% minmax(0, 66%);
    gap: 30px;
    align-items: start;
    width: 100%;
}
.hotel-slider-text,
.hotel-slider-wrapper,
.hotel-detail-slider {
    min-width: 0;
}

.hotel-slider-wrapper {
    padding-right: 40px;
    overflow: hidden;
}

.hotel-detail-slider .swiper-slide img {
    width: 100%;
    height: 615px;
    object-fit: cover;
    display: block;
}

@media(max-width: 991px) {
    .hotel-slider-layout {
        grid-template-columns: 1fr;
    }

    .hotel-slider-wrapper {
        padding: 0 20px;
    }
}
.hotel-slider-text {
    padding-left: 40px;
    padding-right: 20px;
}

.hotel-slider-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 1.42;
    color: #3f4850;
    margin: 0;
}

.hotel-slider-wrapper {
    padding-right: 40px;
}

.hotel-detail-slider {
    width: 100%;
    overflow: hidden;
}

.hotel-detail-slider .swiper-slide img {
    width: 100%;
    height: 615px;
    object-fit: cover;
    display: block;
}

.hotel-detail-slider .swiper-pagination {
    position: relative;
    margin-top: 12px;
}

.hotel-detail-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #bdbdbd;
    opacity: 1;
}

.hotel-detail-slider .swiper-pagination-bullet-active {
    background: #000;
}
.hotel-slider-layout.text-wide {
    grid-template-columns: 72% 28%;
}

.hotel-slider-layout.text-full {
    display: block;
}

.hotel-slider-layout.text-full .hotel-slider-text {
    max-width: 1100px;
}

.love-message {
    display: none;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.love-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.love-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-hero {
    position: relative;
    height: 420px;
    background-image: url('../img/contacto/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-content h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.contact-form-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.contact-form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    text-align: center;
    color: #e30613;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 60px;
}

.yes-contact-form {
    width: 100%;
}

.form-group-full {
    margin-bottom: 30px;
}

.form-group-full label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.form-group-full label span {
    color: #e30613;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.yes-contact-form input,
.yes-contact-form select,
.yes-contact-form textarea {
    width: 100%;
    height: 62px;
    border: 1px solid #dcdcdc;
    background: #fff;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
    transition: .3s;
}

.yes-contact-form textarea {
    height: 160px;
    padding-top: 20px;
    resize: none;
}

.yes-contact-form input:focus,
.yes-contact-form select:focus,
.yes-contact-form textarea:focus {
    border-color: #e30613;
}

.form-submit {
    text-align: center;
    margin-top: 50px;
}

.form-submit button {
    border: none;
    background: #e30613;
    color: #fff;
    padding: 18px 55px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .3s;
    cursor: pointer;
}

.form-submit button:hover {
    background: #b6000f;
}

@media (max-width: 992px) {

    .contact-hero {
        height: 320px;
    }

    .contact-hero-content h1 {
        font-size: 42px;
    }

    .contact-form-wrapper h2 {
        font-size: 38px;
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-form-wrapper h2 {
        font-size: 30px;
    }

    .contact-form-section {
        padding: 70px 0;
    }
}
.love-message {
    display: none;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.love-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.love-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.terms-hero {
    position: relative;
    height: 440px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.terms-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 45, .55);
}

.terms-hero-content {
    position: relative;
    z-index: 2;
}

.terms-hero-content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin: 0;
}

.terms-section {
    background: #f5f5f5;
    padding: 70px 0 100px;
}

.terms-doc {
    max-width: 1120px;
    margin: 0 auto 90px;
    text-align: center;
}

.terms-flag {
    font-size: 28px;
    margin-bottom: 15px;
}

.terms-doc h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 28px;
}

.terms-download {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 16px 42px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 18px;
}

.terms-download:hover {
    background: #bd0010;
    color: #fff;
}

.terms-doc iframe {
    width: 100%;
    height: 780px;
    border: none;
    display: block;
    background: #fff;
}

@media (max-width: 991px) {
    .terms-hero {
        height: 320px;
    }

    .terms-hero-content h1 {
        font-size: 42px;
    }

    .terms-doc h2 {
        font-size: 28px;
    }

    .terms-doc iframe {
        height: 650px;
    }
}

@media (max-width: 575px) {
    .terms-hero-content h1 {
        font-size: 34px;
    }

    .terms-doc h2 {
        font-size: 24px;
    }

    .terms-doc iframe {
        height: 520px;
    }
}

@media (max-width: 991px) {

    .navbar-collapse{
        background: #fff;
        padding: 25px 20px;
        border-radius: 0 0 20px 20px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }

    .navbar-nav{
        gap: 0 !important;
    }

    .navbar-nav .nav-item{
        margin-bottom: 10px;
    }

    .buttons-right{
        margin-top: 20px;
        width: 100%;
    }

    .buttons-right .btn{
        flex: 1;
        text-align: center;
    }

}