/* Glassmorphism cards for tours */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
}

.glass-card-dark {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.6));
    border-color: rgba(15, 23, 42, 0.35);
}

.pulse-btn {
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.pulse-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse-glow 2s infinite;
    pointer-events: none;
}

.pulse-btn:hover {
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.service-icon {
    max-width: 84px;
    animation: iconFloat 4.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-icon:hover {
    animation-play-state: paused;
    transform: translateY(-6px) scale(1.06);
    filter: drop-shadow(0 18px 28px rgba(43, 117, 143, 0.35));
}

@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.security-slider {
    position: relative;
    background: linear-gradient(120deg, rgba(43, 117, 143, 0.12), rgba(209, 100, 10, 0.1));
    border: 1px solid rgba(43, 117, 143, 0.25);
    border-radius: 999px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.security-slider-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2f3f;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    width: 100%;
    padding-right: 48px;
}

.slider-track .slider-control {
    width: 100%;
}

.slider-control {
    flex: 1;
    appearance: none;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2B758F 0%, #dfe7ef 0%);
    outline: none;
    transition: background 0.3s ease;
}

.slider-control::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #2B758F;
    box-shadow: 0 8px 18px rgba(43, 117, 143, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.slider-control::-webkit-slider-thumb:hover {
    transform: scale(1.08);
}

.slider-control::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 3px solid #2B758F;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(43, 117, 143, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.slider-control::-moz-range-thumb:hover {
    transform: scale(1.08);
}

.security-slider .slider-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1640a;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.security-slider--verified {
    border-color: rgba(33, 150, 83, 0.5);
    box-shadow: 0 18px 32px rgba(46, 204, 113, 0.2);
}

.security-slider--verified .security-slider-label {
    color: #217a3e;
}

.security-slider--verified .slider-check {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.security-slider--spring {
    animation: sliderSpring 0.45s ease-in-out;
}

@keyframes sliderSpring {
    0% {
        transform: scaleX(1);
    }
    40% {
        transform: scaleX(0.96);
    }
    70% {
        transform: scaleX(1.02);
    }
    100% {
        transform: scaleX(1);
    }
}

/*** Control de traducción automática ***/
.translate-control {
    gap: 0.4rem;
    flex-wrap: nowrap;
    min-width: 200px;
}

.translate-control__label {
    white-space: nowrap;
    color: #0b2a3c;
}

.auto-translate-select {
    min-width: 180px;
    border-radius: 999px;
    padding-right: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background-position: right 0.5rem center;
}

.translate-status {
    white-space: nowrap;
    min-height: 1.25rem;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.translate-status.is-loading {
    color: var(--primary);
}

.translate-status.is-success {
    color: #198754;
}

.translate-status.is-error {
    color: #c53030;
}

.button-locked {
    background: linear-gradient(135deg, #c8d5df, #9fb1c1) !important;
    border-color: #9fb1c1 !important;
    color: #f4f4f4 !important;
    box-shadow: none !important;
    opacity: 0.85;
    cursor: not-allowed;
}

.button-locked i {
    opacity: 0.8;
}

.privacy-hero {
    background: linear-gradient(135deg, rgba(43, 117, 143, 0.08), rgba(209, 100, 10, 0.08));
}

.privacy-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2B758F;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #1f2f3f;
    font-weight: 500;
}

.privacy-list i {
    color: #2B758F;
}

.policy-card {
    background: #ffffff;
    border: 1px solid rgba(43, 117, 143, 0.15);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.policy-bullets {
    list-style: none;
    padding-left: 0;
}

.policy-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.policy-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d1640a;
}

.policy-rights li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.policy-rights span {
    display: block;
    font-weight: 700;
    color: #2B758F;
}

.policy-cta {
    border: 1px dashed rgba(43, 117, 143, 0.35);
}

.policy-owner-card {
    display: flex;
    flex-direction: column;
}

.policy-owner-media {
    width: 100%;
    min-height: 180px;
    border-radius: 16px;
    background: rgba(43, 117, 143, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.policy-owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.policy-owner-media::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    pointer-events: none;
}

@media (max-width: 576px) {
    .security-slider {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }

    .security-slider-label {
        flex: 1 1 100%;
        text-align: center;
        white-space: normal;
        font-size: 0.85rem;
    }

    .slider-track {
        width: 100%;
    }
}
/********** Template CSS **********/
:root {
    --primary: #2d9a9e;
    --light: #F3F4F5;
    --dark: #282F34;
    --brand-logo-image: url("../IMAGENES/ICONOS/logo-lundi2.jpeg");
}

.brand-logo {
    width: clamp(48px, 5vw, 72px);
    height: clamp(48px, 5vw, 72px);
    background-image: var(--brand-logo-image);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

.back-to-top {
    position: fixed;
    left: 45px;
    bottom: 45px;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-widget {
    position: fixed;
    right: 20px;
    bottom: 45px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.whatsapp-widget.active {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    position: relative;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #25d366;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2.5s ease-in-out infinite;
    overflow: visible;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #1ebe5b;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 18px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float::after {
    content: "1";
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff4f58;
    color: #ffffff;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat {
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%) translateX(30px);
    width: 220px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2f3f;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 10s ease, transform 0.4s ease;
}

.whatsapp-chat.visible {
    opacity: 5;
    transform: translateY(50%) translateX(0);
}

.whatsapp-chat::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid rgba(255, 255, 255, 0.95);
}

.whatsapp-status {
    font-size: 0.6rem;
    color: #1f2f3f;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whatsapp-status {
    font-size: 0.55rem;
    color: #1f2f3f;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-gif-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.spinner-gif {
    width: auto;
    height: auto;
    max-width: 280px;
    max-height: 280px;
    animation: pulse 2s infinite ease-in-out;
    object-fit: contain;
}

.spinner-inline-caption {
    display: block;
    font-weight: 700;
    text-transform: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}


.puffin-spinner {
    width: 128px;
    height: 128px;
}

.puffin-head {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: radial-gradient(circle at 40% 30%, #fff 45%, #fff 45%, transparent 45%),
        radial-gradient(circle at 60% 32%, #fff 45%, #fff 45%, transparent 45%);
    border-radius: 50% 50% 45% 45%;
    border: 4px solid #1f2f3f;
    animation: bob 1.5s ease-in-out infinite;
}

.puffin-eye {
    position: absolute;
    top: 40%;
    left: 32%;
    width: 12px;
    height: 12px;
    background: #1f2f3f;
    border-radius: 50%;
    box-shadow: 28px 0 0 #1f2f3f;
}

.puffin-eye--right {
    left: auto;
    right: 32%;
}

.puffin-beak {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 14px;
    height: 28px;
    margin-left: -7px;
    background: #ffb347;
    border-radius: 50% 50% 50% 50%;
    transform: rotate(25deg);
    box-shadow: 0 6px 0 #d88b3d;
}

.puffin-body {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.puffin-wing {
    position: absolute;
    width: 68px;
    height: 42px;
    background: linear-gradient(180deg, #1f2f3f, #111);
    border-radius: 50% 50% 50% 50%;
    top: 10px;
    transform-origin: center;
    animation: flap 1s ease-in-out infinite;
}

.puffin-wing--left {
    left: -8px;
    animation-delay: -0.25s;
}

.puffin-wing--right {
    right: -8px;
    animation-delay: 0.1s;
}

.puffin-wave {
    font-size: 1.8rem;
    animation: float 1.6s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes flap {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.spinner-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1f2f3f;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

/* Booking system */
.booking-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(13, 23, 36, 0.08);
}

.booking-card .form-label {
    font-weight: 600;
    color: #1f2f3f;
}

.booking-card .form-control,
.booking-card .form-select {
    border-radius: 0.85rem;
    min-height: 48px;
}

.booking-card .form-check-input {
    border-radius: 0.65rem;
}

.booking-summary {
    background: linear-gradient(145deg, #15324b, #1b4965);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(9, 20, 40, 0.32);
}

.booking-summary .summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 0.55rem 0;
    font-size: 0.95rem;
}

.booking-summary .summary-list li span {
    color: rgba(255, 255, 255, 0.65);
}

.booking-summary .summary-list li strong {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.booking-message {
    border-radius: 1rem;
    border: none;
}

.list-step {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.list-step li {
    counter-increment: step;
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 0.75rem;
}

.list-step li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.reservation-benefits .benefit-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(13, 23, 36, 0.08);
    box-shadow: 0 18px 25px rgba(5, 16, 32, 0.08);
}

.reservation-benefits .benefit-icon {
    font-size: 2rem;
    display: inline-flex;
    margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .booking-card,
    .booking-summary {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .booking-card {
        padding: 1.25rem;
    }

    .booking-summary {
        padding: 1.5rem;
    }
}

/* 404 illustration */
.error-visual-wrapper {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 60px rgba(5, 16, 32, 0.1);
}

.error-visual-frame {
    border-radius: 1rem;
    overflow: hidden;
    background: #eef4f8;
}

.error-visual-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 575.98px) {
    .error-visual-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Mini banner */
.mini-banner {
    background: linear-gradient(135deg, #fefefe, #f4fbff);
    border-radius: 1.75rem;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 25px 50px rgba(5, 16, 32, 0.08);
}

.mini-banner-content {
    flex: 1;
}

.mini-banner-media {
    max-width: 360px;
    flex: 0 0 auto;
}

.mini-banner-image {
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .mini-banner {
        flex-direction: column;
        text-align: center;
    }

    .mini-banner-media {
        max-width: 100%;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    position: relative;
    overflow: hidden;
}

.header-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7));
    z-index: 1;
}

.header-bg > * {
    position: relative;
    z-index: 2;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-carousel .hero-carousel-item {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-carousel .hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(9, 22, 34, 0) 0%, rgba(9, 22, 34, 0.85) 75%);
}

.hero-carousel .badge {
    letter-spacing: 0.05em;
}

@media (min-width: 992px) {
    .hero-carousel .hero-carousel-item {
        min-height: 420px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.651)), url(../IMAGENES/banner/banner-islandia.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.493)), url(../IMAGENES/destinos-islandia/reykjavik-ISLANDIA.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}

.destination-floor-banner {
    position: relative;
    min-height: 54px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18);
}

.destination-floor-banner img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.destination-floor-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.destination-floor-banner:hover img {
    transform: scale(1.08);
}

.destination-floor-banner__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.25rem;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .destination-floor-banner {
        min-height: 66px;
        border-radius: 0;
    }
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: #2d9a9ee8;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../IMAGENES/destinos-islandia/aurora-borial-islandia-4k.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.instagram-card {
    height: 280px;
    background-color: #000;
}

@media (max-width: 767.98px) {
    .instagram-card {
        height: 220px;
    }
}

.instagram-card img {
    transition: transform 0.4s ease;
}

.instagram-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
}

.instagram-card:hover img {
    transform: scale(1.05);
}

.instagram-card:hover .instagram-card__overlay {
    opacity: 1;
}

.instagram-banner {
    align-items: stretch;
    flex-wrap: wrap;
}

.instagram-banner__img {
    flex: 0 0 calc(50% - 0.75rem);
    min-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
}

@media (max-width: 767.98px) {
    .instagram-banner {
        flex-direction: column;
    }

    .instagram-banner__img {
        flex: 1 1 100%;
        min-height: 260px;
    }
}

.instagram-carousel .carousel-inner,
.instagram-carousel .carousel-item img {
    border-radius: 12px;
    min-height: 480px;
    max-height: 620px;
}

.instagram-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    padding: 1.25rem;
}

.instagram-carousel .carousel-caption h3 {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .instagram-carousel .carousel-inner,
    .instagram-carousel .carousel-item img {
        min-height: 260px;
    }
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}