:root {
    --toa-navy: #0c2d4a;
    --toa-deep-navy: #081d32;
    --toa-sky: #1f6bb3;
    --toa-aqua: #2aa4d6;
    --toa-sun: #f2942a;
    --toa-sand: #f6efe7;
    --toa-ink: #1f1f1f;
    --toa-muted: #6f7a85;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Raleway', 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--toa-ink);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.toa-navbar {
    position: relative;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(12, 45, 74, 0.08);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.toa-navbar .navbar-brand img {
    height: 48px;
    width: auto;
}

.toa-navbar .nav-link {
    font-weight: 500;
    color: var(--toa-navy);
    margin-right: 0.75rem;
    position: relative;
}

.toa-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--toa-sun), var(--toa-sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

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

.toa-navbar .nav-link:hover::after,
.toa-navbar .nav-link:focus::after,
.toa-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.toa-navbar .dropdown-menu {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 16px 40px rgba(12, 45, 74, 0.12);
    z-index: 1060;
}

.toa-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background-color: #101216;
    color: #fff;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    box-shadow: none;
}

.toa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 25%, rgba(120, 120, 120, 0.18), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.toa-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.toa-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.toa-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.toa-hero-slide-media {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
    transform: scale(1.05);
    transition: transform 7s ease;
}

.toa-hero-slide.is-active .toa-hero-slide-media {
    transform: scale(1);
}

.toa-hero-slide iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .toa-hero-slide iframe {
        width: 100%;
        height: 177.78%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .toa-hero-slide iframe {
        width: 177.78%;
        height: 100%;
    }
}

.toa-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.toa-hero-overlay::before,
.toa-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.toa-hero-overlay::before {
    background-image:
        linear-gradient(to right, rgba(8, 8, 12, 0.85) 0%, rgba(8, 8, 12, 0) 70%),
        linear-gradient(to left, rgba(8, 8, 12, 0.85) 0%, rgba(8, 8, 12, 0) 70%);
    background-position: left top, right top;
    background-size: clamp(120px, 22vw, 280px) 85%, clamp(120px, 22vw, 280px) 85%;
    background-repeat: no-repeat;
}

.toa-hero-overlay::after {
    background-image: linear-gradient(to bottom, rgba(8, 8, 12, 0.88) 0%, rgba(8, 8, 12, 0) 65%);
    background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
    .toa-hero-overlay::before {
        background-size: clamp(90px, 35vw, 200px) 92%, clamp(90px, 35vw, 200px) 92%;
    }
    .toa-hero-overlay::after {
        background-image: linear-gradient(to bottom, rgba(8, 8, 12, 0.88) 0%, rgba(8, 8, 12, 0) 70%);
    }
}

.toa-hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.toa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    padding: 0.35rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.toa-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.toa-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.toa-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.toa-btn-primary {
    background: linear-gradient(120deg, var(--toa-sun), #f5b55e);
    border: none;
    color: #1b1b1b;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 0.6rem;
    box-shadow: 0 12px 24px rgba(242, 148, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toa-btn-primary:hover,
.toa-btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(242, 148, 42, 0.45);
    color: #1b1b1b;
}

.toa-btn-outline {
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.toa-btn-outline:hover,
.toa-btn-outline:focus {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.toa-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.toa-section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--toa-navy);
}

.toa-section-subtitle {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--toa-muted);
    font-size: 1rem;
}

.toa-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(12, 45, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
    overflow: hidden;
}

.toa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(12, 45, 74, 0.12);
}

.toa-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.toa-card .card-body {
    padding: 1.5rem;
}

.toa-card .btn.btn-outline-primary {
    border-radius: 0.55rem;
    border: 1px solid var(--toa-navy);
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    color: var(--toa-navy);
    box-shadow: 0 8px 20px rgba(12, 45, 74, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.toa-card .btn.btn-outline-primary:hover,
.toa-card .btn.btn-outline-primary:focus {
    background: linear-gradient(120deg, var(--toa-sky), var(--toa-navy));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 45, 74, 0.2);
}

.toa-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.55rem;
    background-color: rgba(31, 107, 179, 0.08);
    color: var(--toa-sky);
    font-weight: 600;
    font-size: 0.85rem;
}

.toa-map-card {
    border-radius: 0.85rem;
    border: none;
    background: #fff;
    box-shadow: 0 22px 45px rgba(12, 45, 74, 0.1);
}

.toa-map-card .card-body {
    padding: 1.75rem;
}

.toa-map-card .ratio {
    border-radius: 0.65rem;
    overflow: hidden;
}

.toa-footer {
    background: var(--toa-deep-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.toa-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.toa-footer a:hover {
    color: var(--toa-sun);
}

.toa-footer h6 {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.toa-footer hr {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.toa-footer .toa-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.toa-section .nav-pills .nav-link {
    border-radius: 0.55rem;
    padding: 0.5rem 1.2rem;
    color: var(--toa-navy);
    border: 1px solid rgba(12, 45, 74, 0.15);
    transition: all 0.2s ease;
}

.toa-section .nav-pills .nav-link.active,
.toa-section .nav-pills .nav-link:hover {
    background: linear-gradient(120deg, rgba(31, 107, 179, 0.15), rgba(42, 164, 214, 0.25));
    color: var(--toa-navy);
    border-color: transparent;
}

.toa-badge-muted {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.55rem;
    background: rgba(12, 45, 74, 0.06);
    color: var(--toa-muted);
    font-weight: 500;
    font-size: 0.85rem;
}

.toa-badge-soft {
    background-color: rgba(255, 204, 112, 0.18);
    color: #c77700;
    font-weight: 600;
    border-radius: 0.55rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.toa-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.toa-list-inline li {
    background: rgba(12, 45, 74, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.85rem;
    color: var(--toa-navy);
}

.toa-social-links a {
    font-size: 1.5rem;
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin: 0 0.35rem;
}

.toa-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
}

.toa-social-links a:hover {
    transform: translateY(-3px);
    background: rgba(242, 148, 42, 0.35);
    color: #fff;
}

.section-divider {
    width: 80px;
    height: 3px;
    margin: 0.5rem auto 2rem;
    background: linear-gradient(90deg, var(--toa-sun), var(--toa-sky));
    border-radius: 0.35rem;
}

.booking-filter-card {
    background: #fff;
    border-radius: 0.85rem;
    box-shadow: 0 18px 40px rgba(12, 45, 74, 0.1);
    padding: 1.25rem 1.75rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.booking-filter-card label {
    font-weight: 600;
    color: var(--toa-navy);
}

.booking-filter-card input[type="date"] {
    border-radius: 0.45rem;
    border: 1px solid rgba(12, 45, 74, 0.2);
    padding: 0.6rem 0.85rem;
}

.booking-card {
    border-radius: 0.75rem;
    border: 1px solid rgba(12, 45, 74, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 35px rgba(12, 45, 74, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

    .toa-hero {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }

    .booking-filter-card {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .toa-hero {
        border-radius: 0;
        padding: 3rem 1.5rem 2.75rem;
        margin: 0;
    }

    .toa-navbar .navbar-brand img {
        height: 40px;
    }
}

.destino-card .card-body {
    padding: 1.5rem;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(12, 45, 74, 0.18);
}

.destino-card-social {
    margin-top: 0.5rem;
}

.destino-card-social .btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 0.5rem;
    border-color: rgba(12, 45, 74, 0.12);
    color: rgba(12, 45, 74, 0.75);
    background-color: rgba(12, 45, 74, 0.03);
}

.destino-card-social .btn:hover {
    background-color: rgba(31, 107, 179, 0.12);
    border-color: rgba(31, 107, 179, 0.35);
    color: #0C2D4A;
}

.destino-card-social .btn .bi {
    font-size: 0.85rem;
}

.destino-card .destino-icono {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.destino-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destino-card:hover .destino-card-media img {
    transform: scale(1.08);
}

.destino-card .btn {
    margin-top: 0.5rem;
}

.destino-card .btn.btn-outline-primary {
    border: none;
    border-radius: 0.55rem;
    background: linear-gradient(120deg, var(--toa-sky), var(--toa-navy));
    color: #fff;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    box-shadow: 0 10px 24px rgba(12, 45, 74, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.destino-card .btn.btn-outline-primary:hover,
.destino-card .btn.btn-outline-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(12, 45, 74, 0.26);
    color: #fff;
    filter: brightness(1.1);
}

.toa-highlight-card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.toa-highlight-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.toa-highlight-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.toa-highlight-card:hover .toa-highlight-card__media img {
    transform: scale(1.08);
}

.toa-media-section {
    position: relative;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.08), transparent 50%),
        linear-gradient(160deg, rgba(20, 22, 27, 0.95), rgba(12, 21, 33, 0.88));
}

.toa-media-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(65, 105, 225, 0.25), transparent 55%);
    pointer-events: none;
}

.toa-media-section .container {
    position: relative;
    z-index: 1;
}

.toa-media-card {
    border-radius: 0.75rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.toa-media-card__media {
    border-radius: 0.65rem;
    overflow: hidden;
    background: rgba(9, 16, 26, 0.45);
}

.toa-media-card__media iframe {
    border-radius: 0.65rem;
    border: none;
}

.toa-media-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.65rem;
    display: block;
}

.toa-media-card .btn {
    border-radius: 0.55rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}

.destino-category-badge {
    --destino-category-color: var(--destino-category-color, #1f6bb3);
    background: color-mix(in srgb, var(--destino-category-color) 16%, #ffffff 84%);
    color: var(--destino-category-color);
    border: 1px solid color-mix(in srgb, var(--destino-category-color) 22%, #ffffff 78%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.destino-category-badge .bi {
    color: currentColor;
}

.destino-marker-wrapper {
    background: transparent;
}

.destino-marker {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--marker-color, #1f6bb3), rgba(12, 45, 74, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #ffffff;
    box-shadow: 0 14px 26px rgba(12, 45, 74, 0.32);
    overflow: visible;
}

.destino-marker::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    opacity: 0.85;
}

.destino-marker-pointer {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 14px solid var(--marker-color, #1f6bb3);
    filter: drop-shadow(0 6px 10px rgba(12, 45, 74, 0.32));
}

.destino-marker-icon {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(2px);
    font-size: 1.15rem;
    line-height: 1;
}

.destinos-map-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.destinos-map-frame {
    border-radius: 0.65rem;
    overflow: hidden;
    --bs-aspect-ratio: 56.25%;
}

.destinos-map-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.destinos-map-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.destinos-map-filter-button {
    --destinos-filter-color: var(--destinos-category-color, #1f6bb3);
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.65);
    border-color: rgba(12, 45, 74, 0.18);
    color: #0c2d4a;
}

.destinos-map-filter-button .destinos-map-filter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--destinos-filter-color);
}

.destinos-map-filter-button .destinos-map-filter-label {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.destinos-map-filter-button:hover,
.destinos-map-filter-button.active {
    background: linear-gradient(
        135deg,
        var(--destinos-filter-color),
        color-mix(in srgb, var(--destinos-filter-color) 70%, #0c2d4a)
    );
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(12, 45, 74, 0.25);
}

.destinos-map-filter-button:hover .destinos-map-filter-icon,
.destinos-map-filter-button.active .destinos-map-filter-icon {
    color: #fff;
}

.destino-popup-container .leaflet-popup-content-wrapper {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 20px 40px rgba(12, 45, 74, 0.2);
    padding: 0;
    overflow: hidden;
}

.destino-popup-container .leaflet-popup-tip {
    background: #fff;
}

.destino-popup {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    max-width: 360px;
}

.destino-popup-logo {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid rgba(12, 45, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 18px rgba(12, 45, 74, 0.15);
}

.destino-popup-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.destino-popup-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.destino-popup-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.destino-popup-body h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

.destino-popup-category {
    font-size: 0.75rem;
    color: var(--toa-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.destino-popup-body p {
    font-size: 0.85rem;
    color: #5d6a76;
    margin: 0;
}

.destino-popup-socials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}

.destino-popup-social {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(12, 45, 74, 0.08);
    color: #0C2D4A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 1rem;
}

.destino-popup-social:hover {
    background: #1F6BB3;
    color: #fff;
    text-decoration: none;
}

.destino-popup-link {
    margin-top: auto;
    color: var(--toa-primary);
    font-weight: 600;
    text-decoration: none;
}

.destino-popup-link:hover {
    color: #10365d;
}

.destino-card {
    position: relative;
}

.destino-card-media {
    position: relative;
}

.destino-card-logo {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(12, 45, 74, 0.18);
    border: 1px solid rgba(12, 45, 74, 0.08);
    padding: 0.35rem;
}

.destino-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.destino-hero-logo {
    width: 96px;
    height: 96px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.destino-hero-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .destino-popup {
        grid-template-columns: 1fr;
    }

    .destino-popup-image {
        width: 100%;
        height: 180px;
    }

    .destinos-map-frame {
        --bs-aspect-ratio: 110%;
    }
}

@media (max-width: 768px) {
    .destinos-map-frame {
        --bs-aspect-ratio: 90%;
    }
}
@media (max-width: 767.98px) {
    .destinos-map-legend {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
        backdrop-filter: none;
    }

    .destinos-map-legend-list {
        gap: 0.5rem;
    }
}

.share-actions {
    background: rgba(15, 76, 129, 0.05);
    border: 1px solid rgba(12, 45, 74, 0.08);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.share-actions__label {
    letter-spacing: 0.18em;
    font-weight: 600;
}

.share-actions__buttons .btn {
    border-radius: 0.55rem;
    font-weight: 600;
}

.share-actions__buttons .btn-primary {
    background: linear-gradient(135deg, #1f6bb3, #0c2d4a);
    border-color: transparent;
}

.share-actions__buttons .btn-outline-secondary {
    color: #0c2d4a;
    border-color: rgba(12, 45, 74, 0.18);
}

.combo-card .badge.text-bg-primary {
    background: linear-gradient(135deg, #d97b0d, #ad3572);
    border: none;
}

.combo-card .badge.bg-light {
    border: 1px solid rgba(12, 45, 74, 0.15);
}

.icon-select {
    position: relative;
}

.icon-select__toggle {
    min-height: 3.125rem;
    text-align: left;
    gap: 0.75rem;
}

.icon-select__toggle .icon-select__icon .bi {
    font-size: 1.5rem;
    color: var(--toa-primary-500);
}

.icon-select__menu {
    max-height: 18rem;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.icon-select__item .icon-select__icon .bi {
    font-size: 1.35rem;
    color: var(--toa-primary-400);
}

.icon-select__item.active .icon-select__icon .bi {
    color: var(--toa-primary-600);
}

.icon-select__item.active,
.icon-select__item:focus,
.icon-select__item:hover {
    background: rgba(18, 87, 140, 0.08);
}

.icon-select__item--clear {
    font-size: 0.875rem;
}

.icon-select__item {
    position: relative;
}

.icon-select__item.active::after {
    font-family: 'bootstrap-icons';
    content: "\F26E";
    position: absolute;
    right: 1rem;
    font-size: 1.1rem;
    color: var(--toa-primary-600);
}

.toa-section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.toa-category-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1rem 0;
}

.toa-category-track {
    flex: 1 1 auto;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.5rem 0;
}

.toa-category-track.is-centered {
    justify-content: center;
}

.toa-category-track::-webkit-scrollbar {
    display: none;
}

.toa-category-card {
    flex: 0 0 240px;
    min-height: 180px;
    background: #fff;
    border-radius: 0.85rem;
    box-shadow: 0 18px 35px rgba(12, 45, 74, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    color: var(--toa-navy);
    text-decoration: none;
    border: 1px solid rgba(12, 45, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    scroll-snap-align: center;
}

.toa-category-card:hover,
.toa-category-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(12, 45, 74, 0.12);
    border-color: rgba(31, 107, 179, 0.3);
}

.toa-category-icon {
    width: 72px;
    height: 72px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(31, 107, 179, 0.08), rgba(12, 45, 74, 0.12));
    color: var(--toa-sun);
    font-size: 2.15rem;
    margin-bottom: 1.15rem;
}

.toa-category-name {
    font-weight: 600;
    font-size: 1rem;
}

.toa-category-nav {
    border-radius: 0.65rem;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(12, 45, 74, 0.12);
}

.toa-category-nav.disabled,
.toa-category-nav[disabled] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.toa-search-card {
    background: #fff;
    border-radius: 0.85rem;
    padding: 2rem;
    box-shadow: 0 20px 48px rgba(8, 29, 50, 0.12);
    border: 1px solid rgba(12, 45, 74, 0.08);
    margin-bottom: 2rem;
}

.toa-search-card--floating {
    transform: translateY(0%);
    margin-bottom: 0;
}

.toa-hero-search {
    position: relative;
    z-index: 4;
    margin-top: clamp(-5.5rem, -9vw, -4rem);
    margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.toa-hero-search .container {
    position: relative;
}

.toa-search-card .btn-lg {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.toa-whatsapp-float {
    position: fixed;
    right: clamp(1rem, 4vw, 1.75rem);
    bottom: clamp(1rem, 4vw, 1.75rem);
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
}

.toa-whatsapp-float .toa-whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toa-whatsapp-float:hover .toa-whatsapp-icon,
.toa-whatsapp-float:focus .toa-whatsapp-icon {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.45);
}

.toa-whatsapp-bubble {
    background: rgba(15, 17, 22, 0.88);
    color: #fff;
    padding: 0.4rem 0.85rem;
    border-radius: 0.55rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: toa-whatsapp-bubble 4.5s ease-in-out infinite;
    pointer-events: none;
    box-shadow: 0 12px 24px rgba(15, 17, 22, 0.25);
}

@keyframes toa-whatsapp-bubble {
    0%,
    55% {
        opacity: 0;
        transform: translateY(4px);
    }
    15%,
    40% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

@media (max-width: 575.98px) {
    .toa-whatsapp-float {
        gap: 0.5rem;
        right: 0.85rem;
        bottom: 0.85rem;
    }

    .toa-whatsapp-float .toa-whatsapp-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .toa-whatsapp-bubble {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }
}

@media (max-width: 767.98px) {
    .toa-category-card {
        flex-basis: min(75vw, 220px);
        min-height: 150px;
        padding: 1.35rem 1rem;
    }

    .toa-category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .toa-category-carousel {
        gap: 0.75rem;
    }

    .toa-search-card {
        padding: 1.5rem;
    }

    .toa-search-card--floating {
        transform: none;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .toa-hero-search {
        margin-top: -2rem;
        margin-bottom: 2.5rem;
    }
}
