@font-face {
    font-family: "Karla";
    src: url("../fonts/karla/Karla-Regular.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Karla";
    src: url("../fonts/karla/Karla-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Karla";
    src: url("../fonts/karla/Karla-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #f58634;
    --secondary-color: #717376;

    --primary-rgb: 245, 134, 52;

    --primary-hover: #de792e;

    --primary-dark: #bf6726;
    --neutral-dark: #1c1c1c;

    --text-color: #1e1e1e;
    --neutral-color: #ede0d4;
    --white: #fff;

    --gray-light: #f1f1f1;
    --primary-light: #feede8;

    --gray-100: #f2f2f2;
    --gray-200: #e1e1e1;
    --gray-300: #c7c7c7;
    --gray-400: #9a9a9a;
    --gray-500: #6e6e6e;
    --gray-600: #4a4a4a;
    --gray-700: #2e2e2e;
    --gray-800: #1e1e1e;
    --gray-900: #121212;

    --green-whatsapp: #16a34b;
    --red: #ff0000;

    --font-primary: "Karla", sans-serif;
    --font-secondary: "Karla", sans-serif;

    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem;
    --font-size-lg: 1.5rem; /* 24px */
    --font-size-xl: 1.8rem;
    --font-size-xxl: 2.75rem; /* 48px */

    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem; /* 8px */
    --radius-lg: 1rem; /* 16px */
    --radius-xl: 1.25rem; /* 18px */
    --radius-full: 2rem;

    --radius-card: var(--radius-lg) 4rem var(--radius-lg) 4rem;

    --filter-primary: brightness(0) saturate(100%) invert(57%) sepia(91%)
        saturate(1081%) hue-rotate(338deg) brightness(100%) contrast(93%);
    --filter-secondary: ;

    --transition: 220ms cubic-bezier(0.2, 0.9, 0.3, 1);

    /* Safe areas (notch, home bar) */
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);

    /* Touch targets */
    --touch-min: 44px;
    --touch-comfortable: 48px;
    --touch-optimal: 56px;
    --thumb-zone-top: 60vh;
}

*,
*::before,
*::after {
    font-family: "Karla", sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "karla", sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.2;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.small,
small {
    font-size: 0.875rem;
}

.bodyPag.scrollnone {
    overflow: hidden;
}

/*===== INICIO UTILITARIOS =====*/

.container-fluid {
    max-width: 1440px;
}

.padding-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.padding-first-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.padding-last-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.heading-section {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 590px;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 5;
}

.title-section {
    position: relative;
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    z-index: 2;
}

.title-section span {
    color: var(--primary-color);
}

.desc-section {
    position: relative;
    font-size: var(--font-size-base);
    margin-bottom: 0;
    max-width: 500px;
    line-height: 1.4;
    z-index: 2;
}

.vector-section {
    margin-top: -2rem;
}

.vector-section img {
    max-width: 460px;
    width: 100%;
}

.btn-hover {
    position: relative;
    overflow: hidden;
}

.btn-hover span {
    position: relative;
    z-index: 10;
}

.btn-hover::before,
.btn-hover::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.btn-hover::before {
    content: "";
    background: var(--primary-color);
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn-hover:hover::before {
    transform: translate3d(100%, 0, 0);
}

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

/*==== FIN UTILITARIOS =====*/

/*==== INICIO BOTONES =====*/

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    min-height: 48px;
    min-width: 110px;
    padding: 0.875rem 1.25rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    color: var(--white);
    background-color: var(--primary-hover);
}

.btn-outline-secondary {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-secondary:hover {
    color: var(--white);
    background-color: var(--primary-hover);
}

.btn:focus,
.btn:active {
    border: 1px solid var(--primary-color);
}

/*==== FIN BOTONES =====*/

/*==== INICIO formularios =====*/

.form-label {
    display: flex;
    align-items: start;
    gap: 0.25rem;
    font-size: 1.15rem;
}

.form-required {
    color: var(--primary-color);
}

/*==== FIN formularios =====*/

/* === INICIO HEADER === */

.topbar {
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: var(--font-size-sm);
    width: 100%;
    z-index: 99;
}

.topbar .container-fluid {
    --bs-gutter-x: 0.875rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.topbar-grid {
    display: flex;
    justify-content: space-between;
    gap: 0.875rem;
}

.topbar-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.875rem;
    padding: 0.8rem 0;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s ease;
    min-height: 22px;
    min-width: 22px;
}

.topbar-item:hover {
    color: var(--primary-color);
}

.topbar-lang-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
    flex-shrink: 0;
}

.topbar-lang-btn {
    background: none;
    border: none;
    padding: 0.2rem;
    cursor: pointer;
    border-radius: 3px;
    line-height: 0;
    opacity: 0.8;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.topbar-lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    color: inherit;
}

.topbar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.desktop-only {
    display: none;
}

/* === FIN HEADER === */

/*==== INICIO INDEX ====*/

/* = inicio hero = */

.hero-section {
    position: relative;
    min-height: 80vh;
    color: var(--white);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    min-height: 80vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--white);
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__logo {
    filter: brightness(0) invert(1);
    max-width: 100px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

/* = fin hero = */

/* = inicio servicios = */

.travel-section {
    position: relative;
    overflow: hidden;
}

.travel-section .avion-illustration {
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 1;
    width: 100%;
    max-width: 15vw;
    z-index: 2;
}

.travel-section .crucero-illustration {
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 1;
    width: 100%;
    max-width: 10vw;
    z-index: 2;
}

.travel-section .shape-1 {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    z-index: 1;
    width: 100%;
}

.travel-section .shape-1 img {
    width: 100%;
}

.travel-card {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    border-radius: var(--radius-card);
    overflow: hidden;
    color: var(--white);
    background-image: url("../images/destination.jpg");
    background-size: cover;
    background-position: center;
    transition: all var(--transition);
}

.travel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: all var(--transition);
}

.travel-card:hover::before {
    /* background-color: rgba(var(--primary-rgb), 0.5); */
    background: linear-gradient(
        to top,
        rgba(var(--primary-rgb), 0.75),
        rgba(var(--primary-rgb), 0.35),
        rgba(var(--primary-rgb), 0.1)
    );
}

.travel-card__content {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.travel-card__title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.travel-card__description {
    font-size: var(--font-size-sm);
    margin-bottom: 1.4rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.travel-card__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all var(--transition);
}

.travel-card__button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* = fin servicios = */

/* = inicio why us = */

.whyus-section {
    position: relative;
    background: var(--primary-light);
}

.whyus-title {
    font-size: var(--font-size-xxl);
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

.whyus-intro {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray-700);
}

.whyus-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
}

.whyus-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-card);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

.whyus-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-lg);
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    width: 52px;
}

.whyus-icon img {
    filter: var(--filter-primary);
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    width: 32px;
}

.whyus-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.whyus-content p {
    font-size: var(--font-size-base);
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0;
}

.whyus-gallery {
    overflow: hidden;
    margin-top: 3rem;
}

.whyus-slide-wrapper {
    position: relative;
}

.whyus-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.whyus-img-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(var(--primary-rgb), 0.92);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
}

.whyus-gallery-image {
    aspect-ratio: 6 / 7;
    object-fit: cover;
    border-radius: var(--radius-card);
    width: 100%;
}

.featured-swiper .swiper-slide-shadow {
    background: rgba(var(--primary-rgb), 0.4);
    border-radius: var(--radius-card);
}

.featured-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* = fin why us = */

/* = inicio cta = */

.cta-section {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 0;
    overflow: hidden;
}

.cta-section .shape-2 {
    position: absolute;
    top: -0.5rem;
    left: 0;
    z-index: 1;
    width: 100%;
}

.cta-section .shape-2 img {
    width: 100%;
}

.cta-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.cta-item-image {
    position: relative;
    height: 100%;
}

.cta-item-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cta-item-image .shape-right {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    height: 100%;
    width: 100px;
}

.cta-item-image .shape-left {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    height: 100%;
    width: 100px;
}

.cta-item-image .shape-right svg,
.cta-item-image .shape-left svg {
    fill: var(--primary-color);
    width: 100%;
    height: 100%;
}

.cta-item-image .shape-right svg path,
.cta-item-image .shape-left svg path {
    fill: var(--primary-color);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    background-color: var(--primary-light);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 1rem;
}

/* = fin cta = */

/* = inicio modal cta = */

.custom-modal {
    border-radius: var(--radius-lg);
    padding: 0.875rem;
}

.custom-modal .modal-title {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    line-height: 1.2;
}

.custom-input {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px; /* Previene zoom automático en iOS */
    min-height: var(--touch-comfortable);
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
    outline: none;
}

.form-step {
    transition: opacity 0.3s ease;
}

.form-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.bagde-date {
    display: block;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 0.875rem;
}

.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-item.active .step-title {
    color: var(--primary-color);
}

.step-number {
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-500);
}

.step-divider {
    width: 40px;
    height: 2px;
    background-color: var(--gray-200);
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.form-step.active-step {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.group-modal-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}

.group-modal-btns .btn-primary,
.group-modal-btns .btn-outline-secondary {
    width: 100%;
}

/* = fin modal cta = */

/* === BOTTOM-SHEET MODAL (mobile ≤575px) === */
@media screen and (max-width: 575px) {
    #travelModal .modal-dialog,
    #successModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        align-items: flex-end;
        min-height: 100%;
        display: flex;
    }

    #travelModal .modal-content,
    #successModal .modal-content {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding-bottom: calc(1rem + var(--safe-bottom));
        max-height: 92dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .modal.fade .modal-dialog {
        transform: translateY(100%);
    }

    .modal.fade.show .modal-dialog {
        transform: translateY(0);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
/* === FIN BOTTOM-SHEET MODAL === */

/* = inicio testimonios = */

.testimonial-section {
    position: relative;
    background-color: var(--primary-light);
    background-image: url(../images/bg-testimonial.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-section::before {
    content: "";
    background-image: url(../images/bg-testimonial-1.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 80%;
    width: 80%;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    border-radius: var(--radius-card);
    cursor: pointer;
}

.testimonial-card__image {
    border-radius: var(--radius-lg);
}

.testimonial-card__image img {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform var(--transition);
}

@media (hover: hover) {
    .testimonial-card:hover img {
        transform: scale(1.05);
    }
}

.testimonial-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4),
        transparent
    );
    border-radius: var(--radius-lg);
    color: var(--white);
    padding: 1.5rem 2rem;
    width: 100%;
    z-index: 5;
}

.testimonial-card__content h3 {
    border-bottom: 1px solid var(--white);
    font-size: clamp(1.15rem, 4vw, var(--font-size-lg));
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    /* height: calc(2 * 1.4em); */
}

.testimonial-card__content p {
    font-size: var(--font-size-base);
    opacity: 0.95;
    margin-bottom: 0.5rem;
    text-align: end;
}

.testimonial-card__hover {
    position: relative;
    inset: unset;
    background: var(--primary-color);
    color: var(--white);
    opacity: 0;
    overflow: hidden;
    max-height: 0;
    visibility: visible;
    padding: 0 1.25rem;
    transition:
        max-height 400ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 300ms ease,
        padding 300ms ease;
}

.testimonial-card.active .testimonial-card__hover {
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem;
}

.testimonial-card__toggle {
    display: inline-block;
    margin-top: 0.75rem;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    transition: var(--transition);
}

.testimonial-card__toggle:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* = fin testimonios = */

/* = inicio contacto = */

.contact-section {
    position: relative;
    color: var(--text-color);
    background-image: url("../images/map_xplore.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
}

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

.contact-section__info {
    margin-bottom: 2.5rem;
}

.contact-section__title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-section__item {
    margin-bottom: 1.5rem;
}

.contact-section__item strong {
    display: block;
    font-size: var(--font-size-md);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-section__item a,
.contact-section__item p {
    font-size: 1.15rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-section__item a:hover {
    color: var(--primary-color);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    border: 1px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    min-height: 48px;
    text-decoration: none;
    -webkit-box-shadow: 5px 5px 14px 4px #feede8;
    box-shadow: 5px 5px 14px 4px #feede8;
}

.contact-section__map {
    display: flex;
    justify-content: center;
}

.map-wrapper {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-card);
    overflow: hidden;
    -webkit-box-shadow: 5px 5px 14px 4px #feede8;
    box-shadow: 5px 5px 14px 4px #feede8;
}

/* = fin contacto = */

/*==== FIN INDEX ====*/

/*==== INICIO FOOTER ====*/

.footer {
    background-image: url(../images/bg-footer-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-width: 160px;
}

.footer-senatur {
    filter: brightness(0) invert(1);
    max-width: 120px;
    transition: var(--transition);
}

.footer-senatur-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.footer-senatur-link p {
    color: var(--white);
    font-size: var(--font-size-xs);
    margin-bottom: 0;
    text-align: center;
}

.footer-senatur-link:hover .footer-senatur {
    transform: scale(1.05);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border-radius: var(--radius-full);
    border: 1px solid var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-md);
    padding: 0.65rem 1.25rem;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    transform: scale(1.05);
}

.footer-contact,
.footer-social {
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.05);
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-email-btn {
    color: var(--text-color);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.copy-email-btn:hover {
    transform: scale(1.1);
}

.copy-email-btn svg {
    width: 22px;
    height: 22px;
}

.copy-feedback {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-color: var(--white);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    opacity: 0;
    text-wrap: nowrap;
    transition: opacity 0.3s ease;
}

.copy-feedback.active {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--white);
    padding-top: 1.5rem;
    font-size: var(--font-size-xs);
    color: var(--white);
    margin-top: 2rem;
}

.footer-copyright {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

.footer-copyright svg {
    height: 14px;
    width: auto;
    object-fit: contain;
    margin-top: 2px;
}

/*==== FIN FOOTER ====*/

/* === INICIO CUSTOMIZACION NAVIGATION SWIPER === */

.customization-button-prev,
.customization-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    color: var(--primary-color);
    height: 48px;
    width: 48px;
    transition:
        color 0.3s,
        background 0.3s,
        border 0.3s;
}

.customization-button-prev {
    left: 0;
}

.customization-button-next {
    right: 0;
}

.customization-button-prev:hover,
.customization-button-next:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--white);
    color: var(--white);
}

.customization-button-prev svg,
.customization-button-next svg {
    height: 32px;
    width: 32px;
}

/* === FIN CUSTOMIZACION NAVIGATION SWIPER === */

@media screen and (min-width: 575px) {
    /*==== INICIO INDEX ====*/
    .whyus-item {
        flex-direction: row;
    }
    /*==== FIN INDEX ====*/
}

@media screen and (min-width: 768px) {
    /*==== INICIO UTILITARIOS ====*/
    .padding-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .padding-first-section {
        padding-top: 4rem;
        padding-bottom: 8rem;
    }

    .padding-last-section {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    .cta-section {
        padding-top: 6rem;
        padding-bottom: 0;
    }

    .title-section {
        font-size: var(--font-size-xxl);
    }

    .desc-section {
        font-size: 1.35rem;
    }

    .customization-button-prev,
    .customization-button-next {
        display: flex;
    }

    /*==== INICIO UTILITARIOS ====*/

    /*==== INICIO HEADER ====*/
    .topbar .container-fluid {
        --bs-gutter-x: 1.5rem;
    }

    .topbar-item {
        min-height: 32px;
        min-width: 32px;
    }

    .topbar-item svg {
        width: 22px;
        height: 22px;
    }
    /*==== FIN HEADER ====*/

    /*==== INICIO INDEX ====*/

    /* = inicio hero = */
    .hero-section {
        min-height: 100vh;
    }

    .hero-swiper .swiper-slide {
        min-height: 100vh;
        padding: 3rem;
    }

    .hero__logo {
        max-width: 150px;
    }

    .hero__title {
        font-size: 4.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }
    /* = fin hero = */

    /* = inicio servicios = */

    .travel-section .avion-illustration {
        top: 4rem;
        left: 3rem;
    }
    .travel-section .crucero-illustration {
        top: 3rem;
        right: 3rem;
    }

    /* = fin servicios = */

    /* = inicio why us = */
    .whyus-grid {
        display: grid;
        grid-template-columns: calc(50% - 4rem) 50%;
        gap: 4rem;
        align-items: start;
    }

    .whyus-gallery-sticky {
        position: sticky;
        top: 0;
    }

    .whyus-gallery {
        padding: 1rem 4rem;
        margin-top: 0;
    }
    /* = fin why us = */

    /* = inicio cta = */
    .cta-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr 0.8fr;
        align-items: center;
    }

    .cta-item-image img {
        aspect-ratio: 47 / 56;
    }

    .cta-item-image .shape-right svg path,
    .cta-item-image .shape-left svg path {
        fill: #fff;
    }
    /* = fin cta = */

    /* = inicio modal cta = */
    .group-modal-btns {
        flex-direction: row;
    }

    .group-modal-btns .btn-primary,
    .group-modal-btns .btn-outline-secondary {
        width: fit-content;
    }

    /* = fin modal cta = */

    /*==== FIN INDEX ====*/
}

@media screen and (min-width: 992px) {
    /* === INICIO HEADER === */
    .topbar-row {
        gap: 1.2rem;
        padding: 0.8rem 0;
    }

    .desktop-only {
        display: inline;
    }

    .topbar-contact {
        justify-content: flex-start;
        gap: 1.25rem;
    }

    .social-row {
        justify-content: flex-end;
        gap: 1rem;
    }
    /* === FIN HEADER === */

    /*==== INICIO INDEX ====*/

    /* = inicio servicios = */
    .travel-swiper {
        padding-bottom: 40px;
    }

    .travel-swiper .swiper-slide:nth-child(even) .travel-card {
        transform: translateY(40px);
    }

    .travel-card {
        min-height: 450px;
        padding: 2rem;
    }

    .travel-card__title {
        font-size: 2.25rem;
    }

    .travel-card__description {
        font-size: var(--font-size-base);
    }
    /* = fin servicios = */

    /* = inicio testimonios = */

    .testimonial-card__toggle {
        display: none;
    }

    .testimonial-card__hover {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(var(--primary-rgb), 0.9);
        color: var(--white);
        font-size: 1.15rem;
        opacity: 0;
        visibility: hidden;
        max-height: unset;
        padding: 1.5rem;
        text-align: center;
        transition: var(--transition);
        z-index: 8;
    }

    .testimonial-card:hover .testimonial-card__hover {
        opacity: 1;
        visibility: visible;
    }

    .testimonial-card:hover .testimonial-card__content {
        opacity: 0;
    }

    /* = fin testimonios = */

    /* = inicio contacto = */
    .contact-section {
        text-align: start;
    }

    .contact-section__info {
        padding-right: 3rem;
    }

    .contact-email {
        justify-content: start;
    }

    .map-wrapper {
        height: 400px;
    }
    /* = fin contacto = */

    /*==== FIN INDEX ====*/

    /*==== INICIO FOOTER ====*/
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: start;
        text-align: left;
    }

    .footer-logos {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-contact {
        margin-left: auto;
    }

    /*==== FIN FOOTER ====*/
}
