/* --- VARIABLES & RESET --- */
:root {
    --color-gold: #F4C430;
    /* Dorado elegante */
    --color-green: #00E676;
    /* Verde brillante CTA */
    --color-dark: #0a192f;
    /* Azul marino profundo */
    --color-darker: #020c1b;
    /* Azul casi negro para secciones */
    --color-white: #ffffff;
    --color-text-gray: #a8b2d1;
    /* Gris suave para textos */
    --color-turquoise: #40E0D0;
    /* Turquesa para acentos */

    /* Explore Section Colors */
    --explore-turquoise: #3EC6C9;

    /* Destination Colors */
    --dest-bg: #081B2F;
    --dest-bg-light: #0E2A47;
    --dest-accent-red: #E64646;
    --dest-accent-cyan: #7FDAD3;
    --dest-card-bg: rgba(255, 255, 255, 0.9);

    /* Cabo Experience Colors */
    --cabo-bg: #EEF2F1;
    --cabo-title: #0A5EA8;
    --cabo-text: #1C6FB5;
    --cabo-icon-bg: #0B3D91;
    --cabo-accent-red: #E14A4A;
    --cabo-accent-teal: #2CCED2;

    /* Fleet Gallery Colors */
    --fg-bg: #071C2F;
    --fg-card-bg: #E6ECEF;
    --fg-text-dark: #1A2A3A;
    --fg-btn-teal: #2EC4C6;

    /* Mission Section Colors */
    --mission-glass-bg: rgba(255, 255, 255, 0.1);
    --mission-glass-border: rgba(255, 255, 255, 0.3);
    --mission-text: rgba(255, 255, 255, 0.9);

    /* Vision Section Colors */
    --vision-bg: #051121;
    --vision-gold: #D4AF37;

    /* Inquiry Section Colors (Palette Fix) */
    --inq-bg-overlay: rgba(2, 12, 27, 0.7);
    --inq-card-dark: #020c1b;
    --inq-card-light: #061a2f;
    --inq-aqua: #40E0D0;
    --inq-gray: #B0B8C4;
    --inq-input-border: #E0E0E0;

    /* Seal Colors */
    --seal-romance: #E63946;
    --seal-party: #00B4D8;
    --seal-adventure: #FFB703;
    --seal-luxury: #4361EE;

    --font-ui: 'Montserrat', sans-serif;
    --font-script: 'Allura', cursive;
    --nav-height: 80px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-ui);
    color: var(--color-white);
    overflow-x: hidden;
    background-color: var(--color-dark);
    position: relative;
}


.main-container::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("../images/yachtvilleWEB1Home-24-v2.webp");
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.4;

    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* _________________________________________________________________________________________________________  */

ul {
    list-style: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(2, 12, 27, 0.9) 0%, rgba(2, 12, 27, 0) 100%);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 12, 27, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1001;
}

.logo-icon {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu Links */
.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg,
            #2EC4FF 0%,
            #FF3B3B 50%,
            #FFB703 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #eee;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            #2EC4FF 0%,
            #FF3B3B 50%,
            #FFB703 100%);

    border-radius: 2px;
    box-shadow: 0 0 8px rgba(46, 196, 255, 0.6);

    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 5px;
    backdrop-filter: blur(5px);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: #eee;
}

.lang-btn.active {
    color: #000;
}

/* Indicador animado */
.lang-indicator {
    position: absolute;
    height: 80%;
    width: 50%;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    background: linear-gradient(90deg,
            #2EC4FF 0%,
            #FF3B3B 50%,
            #FFB703 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Cuando está en inglés */
.lang-switch.en .lang-indicator {
    left: calc(50% - 5px);
}

.hidden-element {
    display: none;
}

/* _________________________________________________________________________________________________________  */

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Centrado vertical */
    padding-left: 10%;
    /* Alineación a la izquierda */
    z-index: 1;
}

.section-parallax {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* border-bottom: 1px solid #222; */
}

.section-parallax__layer {
    position: absolute;
    will-change: transform;
    /* Optimiza para GPU */
}

.section-parallax__content {
    position: relative;
    z-index: 10;
    text-align: start;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    left: -25%;
    top: 10%;
    max-width: 700px;
    /* opacity: 0; */
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.section-parallax__content img {
    width: 500px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

/* --- SECCIÓN 1: Profundidad Clásica --- */
.hero-bg {
    width: 120%;
    height: 120%;
    opacity: 0.5;
}

.hero-bg.home {
    background: url('../images/banner-home4.webp') center/cover;
}

.hero-bg.discover {
    background: url('../images/DESCUBRE_LA_BAJA_2.webp') center/cover;
}

.hero-bg.fleet-bg {
    background: url('../images/FLOTA2.webp') center/cover;
}

.hero-bg.aboutus {
    background: url('../images/ABOUT_US.webp') center/cover;
}

.hero-bg.contact {
    background: url('../images/CONTACTO2.webp') center/cover;
}

.hero-bg.yate-ejemplo {
    background-image: url('../images/yateejemplo.webp');
    background-position: center;
}




/* Título Script */
.hero-title {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 8vw, 6rem);
    /* Responsivo */
    color: var(--color-gold);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-subtitle-discover {
    font-family: Montserrat, Poppins, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.65;
    color: rgba(220, 225, 230, 0.75);
    max-width: 100%;
    margin-top: 1.2rem;
    text-shadow: rgba(0, 0, 0, 0.45) 0px 1px 6px;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 1s ease forwards 0.5s;
    /* animation: 1.2s ease-out 0.7s 1 normal forwards running heroSubtitleIn; */
}

/* Botón CTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
            #7CFF4F 0%,
            #38D94E 100%);

    color: #ffffff;
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 38px;
    border-radius: 999px;
    margin: 0 auto;
    /* pill perfecto */

    font-size: 0.85rem;

    box-shadow:
        0 0 20px rgba(124, 255, 79, 0.55),
        0 6px 18px rgba(56, 217, 78, 0.45);

    border: none;
    cursor: pointer;

    /* transition: transform 0.25s ease, box-shadow 0.25s ease; */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

/* Hover */
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(124, 255, 79, 0.7),
        0 10px 25px rgba(56, 217, 78, 0.6);
}

/* Active (click) */
.btn-cta:active {
    transform: translateY(0);
    box-shadow:
        0 0 16px rgba(124, 255, 79, 0.5);
}

.hero-title-discover {
    font-family: 'Montserrat', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(220, 225, 230, 0.85);
    line-height: 1.1;
    margin: 0;
    margin-top: 40%;
    margin-bottom: 5%;
    /* Mejora visual sobre imagen */
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.35);

    /* transition: transform 0.25s ease, box-shadow 0.25s ease; */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-title-discover span {
    color: rgba(220, 225, 230, 1);
}



/* Animación de entrada */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ___________________________________________________________________________________________________________________________________ */

/* --- EXPERIENCE SECTION --- */
.experience {
    position: relative;
    background-color: rgba(255, 255, 255, 0.908);
    /* background-image: radial-gradient(var(--color-text-gray) 1px, transparent 1px); */
    background-image: url('../images/yachtvilleWEB5-ContactTextura2.webp');
    /* background-size: cover; */
    background-position: 0 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);

    padding: 120px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.experience__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.experience__logo-wrapper {
    flex: 0 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.experience__logo-svg {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.15));
}

.experience__content {
    flex: 1;
    max-width: 600px;
}

.experience__title {
    font-family: var(--font-ui);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.experience__text {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    color: var(--color-dark);
    line-height: 1.8;
    font-weight: 300;
    text-align: justify;
}

/* ________________________________________________________________________________________________________________________________________________ */

/* Contenido Explore */
.explore-cabo-bg {
    width: 120%;
    height: 120%;
    background: url('../images/yachtvilleWEB1Home-03.webp') center/cover;
    opacity: 1;
}


.explore-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    /* JS Animation fade in */
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.explore-title {
    font-family: var(--font-ui);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.explore-subtitle {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botones Switcher */
.explore-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.explore-btn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.explore-btn:hover {
    border-color: var(--explore-turquoise);
    background: rgba(62, 198, 201, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.explore-btn.active {
    background-color: var(--explore-turquoise);
    border-color: var(--explore-turquoise);
    color: #fff;
    box-shadow: 0 5px 20px rgba(62, 198, 201, 0.4);
}



/* __________________________________________________________________________________________________________________________________________  */


/* --- DESTINATION SECTION (NUEVO) --- */
.destination {
    position: relative;
    padding: 120px 15%;
    /* background-color: var(--color-darker); */
    /* Patrón geométrico */
    /* background-image: url('../images/yachtvilleWEB1Home-24.webp'); */
    background-size: cover;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    overflow: hidden;
    opacity: 1;
    /* Entrada fade */
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.destination.visible {
    opacity: 1;
    transform: translateY(0);
}

.dest-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Left Column: Images + Map --- */
.dest-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dest-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dest-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.dest-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.dest-carousel-slide:hover {
    transform: scale(1.03);
    /* Hover Zoom */
}

.dest-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dest-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dest-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

.dest-map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Placeholder Map Styling */
    background-color: #e5e9ed;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_map_blank_without_borders.svg/2000px-World_map_blank_without_borders.svg.png');
    /* Simple map background */
    background-size: cover;
    background-position: center;
    position: relative;
}

.dest-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--dest-accent-red);
    border: 3px solid white;
    border-radius: 50% 50% 0 50%;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dest-map-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- Right Column: Info --- */
.dest-right {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dest-title {
    font-family: var(--font-ui);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dest-accent-cyan);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.dest-subtitle {
    font-style: italic;
    color: #a8b2d1;
    font-size: .9rem;
}

.dest-desc {
    font-size: 1.1rem;
    color: #dbe4ef;
    /* Light gray-blue */
    line-height: 1.3;
    font-weight: 300;
    max-width: 90%;
    text-align: justify;
}

.dest-favorite-title {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 500;
}

.highlight-romance {
    color: var(--dest-accent-red);
    font-weight: 600;
}

.highlight-party {
    color: var(--dest-accent-cyan);
    font-weight: 600;
}

.dest-seals-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.dest-seal-mini {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.dest-seal-mini svg {
    width: 24px;
    height: 24px;
}

.seal-red svg {
    fill: var(--dest-accent-red);
}

.seal-cyan svg {
    fill: var(--dest-accent-cyan);
}

/* Floating Offers Card */
.dest-offers-card {
    background: var(--dest-card-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    margin-top: 7px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--color-dark);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.dest-offers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dest-offers-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

.dest-offers-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.offer-icon {
    width: 24px;
    height: 24px;
    fill: #555;
}



/* CARRUSEL DE GIFS  */

.gif_carrusel {
    /* border: solid red; */
    width: 100%;
    height: 100vh;
    padding: 5% 8%;
}

.dest-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.dest-carousel-slide {
    position: absolute;
    inset: 0;
    /* top:0 right:0 bottom:0 left:0 */
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease;
}

.dest-carousel-slide.active {
    opacity: 1;
    position: relative;
}

.dest-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Overlay */
.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    text-align: end;
}

.dest-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5%;
}

/* Controles */
.dest-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.dest-control.prev {
    left: 10px;
}

.dest-control.next {
    right: 10px;
}

.dest-control:hover {
    background: rgba(0, 0, 0, .8);
}

/* CARRUSEL DE GIFS  */




/* __________________________________________________________________________________________________________________________________________________________  */

/* --- EXPERIENCE SEAL SECTION --- */
.experience-seal {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/EXPERIENCIE VIBES _ BEYOND THE YACHT.webp') center/cover;
    background-attachment: fixed;
    /* Parallax simple */
    padding: 80px 80px 0px 80px;
}

.seal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 12, 27, 0) 10%, rgba(2, 12, 27, 0) 100%);
    z-index: 1;
}

.seal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.seal-heading {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.seal-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 99%;
    height: 3px;
    background-color: var(--color-gold);
}

/* Grid de Sellos */
.seal-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* FLIP CARD STYLES */
.seal-card-wrapper {
    flex: 1;
    min-width: 210px;
    height: 280px;
    perspective: 1000px;
    /* Crucial para 3D */
    cursor: pointer;
}

.seal-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.seal-card.flipped {
    transform: rotateY(180deg);
}

/* Front & Back Faces */
.seal-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Oculta el reverso al girar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Estilo específico Frontal (Diseño Hexagonal Visual) */
.seal-front {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Inner Hexagon Shape */
.seal-hexagon {
    width: 120px;
    height: 120px;
    /* background: rgba(0, 0, 0, 0.3); */
    /* Hexagon Clip Path */
    /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.seal-card-wrapper:hover .seal-hexagon {
    transform: scale(1.1);
}

.seal-hexagon img {
    filter: drop-shadow(0 20px 10px rgba(3, 3, 3, 0.5));
    transition: 0.3s ease;
}

.seal-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

/* Estilo Reverso */
.seal-back {
    background: var(--color-darker);
    transform: rotateY(180deg);
    border: 1px solid;
    /* Color definido inline */
}

.seal-back h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.seal-cta {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid currentColor;
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease;
}

.seal-cta:hover {
    background: currentColor;
    color: var(--color-darker);
}

/* Theme Colors Classes */
.theme-romance {
    color: var(--seal-romance);
}

.theme-party {
    color: var(--seal-party);
}

.theme-adventure {
    color: var(--seal-adventure);
}

.theme-luxury {
    color: var(--seal-luxury);
}

.beyond-div {
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.beyond-div-bg {
    width: 100vw;
    height: 350px;
    position: absolute;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(10, 25, 47, 0.6);
}

.card-beyond {
    padding: 0 26% 0 18%;
}

/* _______________________________________________________________________________________________________________________________________________ */

/* --- FLEET SECTION --- */
.fleet {
    position: relative;
    min-height: 100vh;
    /* background-color: var(--color-dark); */
    /* Patrón geométrico sutil */
    /* background-image: radial-gradient(circle at 50% 50%, #112240 0%, #0a192f 100%); */
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Geometric pattern overlay */
.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../images/yachtvilleWEB1Home-24.webp');
     background-size: cover; */
    opacity: 0.3;
    pointer-events: none;
}

.fleet-header {
    position: absolute;
    top: 50px;
    left: 5%;
    z-index: 10;
}

.fleet-title {
    font-family: var(--font-ui);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    /* Azul muy claro casi transparente */
    text-transform: uppercase;
    letter-spacing: 15px;
    margin: 0;
    line-height: 1;
}

/* Main Container for Yacht Composition */
.fleet-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 60vh;
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0; */
    /* Animación de entrada */
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fleet-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Caja de fondo con interior */
.fleet-bg-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/Fleet-Background.webp');
    /* Interior luxury */
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

.fleet-container:hover .fleet-bg-box {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.fleet-overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.6);
    /* Azul translúcido */
    transition: background 0.5s ease;
}

.fleet-container:hover .fleet-overlay-box {
    background: rgba(10, 25, 47, 0.4);
    /* Aclara en hover */
}

/* Yacht PNG Superpuesto */
.fleet-yacht-img {
    position: absolute;
    bottom: -35%;
    right: 15%;
    /* Entra desde derecha */
    width: 85%;
    height: auto;
    z-index: 5;
    filter: drop-shadow(-20px 20px 30px rgba(0, 0, 0, 0.5));
    transform: translateX(100px);
    /* Estado inicial animacion */
    /* opacity: 0; */
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 1s ease 0.3s;
    /* Nota: Usamos una imagen con fondo transparente (o simulado visualmente para el ejemplo) */
    /* En producción, esto debe ser un PNG real con transparencia */
}

.fleet-container.visible .fleet-yacht-img {
    transform: translateX(10%);
    /* Posición final */
    opacity: 1;
}

/* CTA Button Fleet */
/* .fleet-cta-container {
    position: absolute;
    bottom: 40px;
    left: 15%;
    z-index: 20;
} */

.fleet-wrapper-2 {
    position: absolute;
    bottom: 40px;
    left: 15%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
    top: 5vh;
}

.fleet-title-2 {
    color: var(--color-white);
    font-family: var(--font-ui);
    font-size: 1.1rem;
    line-height: 1.6;
    /* font-size: 0.8rem; */
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    width: 50%;
    /* text-align: justify; */
}

.fleet-buttons {
    display: flex;
    gap: 15px;
    /* espacio entre botones */
}

.fleet-btn {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    /* text-transform: uppercase; */
    font-size: 0.9rem;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    /* Slightly rounded */
    transition: all 0.3s ease;
    position: relative;
    /* top: -40vh; */
    overflow: hidden;
}

.fleet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.fleet-btn:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.fleet-btn:hover::before {
    left: 100%;
}


/* --- FLEET GALLERY SECTION (NUEVO) --- */
.fleet-gallery {
    position: relative;
    padding: 100px 5%;
    /* background-color: var(--fg-bg); */
    /* Patrón geométrico sutil */
    /* background-image:
         linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02)),
         linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02));
     background-size: 20px 20px;
     background-position: 0 0, 10px 10px; */
}

.fleet-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Cols Desktop */
    gap: 30px;
}

/* Yacht Card */
.fg-card {
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fg-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top Image */
.fg-card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.fg-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fg-card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}

.fg-card:hover .fg-card-img {
    transform: scale(1.05);
    /* Zoom effect */
}

.fg-card:hover .fg-card-img-wrapper::after {
    background: rgba(0, 0, 0, 0.15);
    /* Slight darken */
}

/* Bottom Content */
.fg-card-content {
    background-color: var(--fg-card-bg);
    padding: 25px;
    border-radius: 0 0 12px 12px;
    color: var(--fg-text-dark);
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.fg-yacht-name {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--fg-text-dark);
}

.fg-yacht-specs {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.fg-spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.fg-spec-label {
    font-weight: 600;
    color: #333;
}

/* Button */
.fg-btn-more {
    margin-top: auto;
    /* Push to bottom */
    background-color: var(--fg-btn-teal);
    color: white;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 30px;
    /* Pill shape */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.fg-btn-more::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.fg-btn-more:active::after {
    width: 300px;
    height: 300px;
}

.fg-btn-more:hover {
    background-color: #26aeb0;
    /* Darker teal */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 196, 198, 0.4);
}

/* _______________________________________________________________________________________________________________________________________________ */

/* --- MISSION SECTION (NUEVO) --- */
.mission {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0b1a2a;
    /* Fallback */
}

/* Background Parallax Image */
.mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    /* background-image: url('../images/about_mision.webp'); */
    /* Sea & Mountains */
    /* background-size: cover;
    background-position: center; */
    background:
        radial-gradient(circle at 50% 35%,
            rgba(255, 255, 255, .35) 0%,
            rgba(255, 255, 255, .15) 15%,
            transparent 40%),

        linear-gradient(90deg,
            rgba(10, 48, 102, .85) 0%,
            rgba(17, 73, 138, .65) 30%,
            rgba(17, 73, 138, .20) 55%,
            transparent 75%),

        url('../images/about_mision.webp');

    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(11, 26, 42, 0.4) 0%, rgba(11, 26, 42, 0.6) 100%); */
    z-index: 2;
}

/* Top Text */
.mission-content {
    position: relative;
    z-index: 4;
    /* Above boat in some layouts, managed by flex */
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
}

.mission-text-top {
    width: 70%;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.mission-text-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-text-top p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-ui);
    letter-spacing: 1px;
    text-align: left;
}

/* Mission Card */
.mission-card-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    /* Right aligned */
    width: 100%;
    margin-bottom: 50px;
    /* Space for boat */
}

.mission-card {
    /* background: var(--mission-glass-bg);
    backdrop-filter: blur(15px);
    border: 5px solid var(--color-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s; */
    max-width: 420px;
    padding: 2rem;

    background: rgba(14, 38, 73, 0.55);

    border: 1px solid rgba(72, 189, 207, 0.35);

    border-radius: 24px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 0 0 1px rgba(72, 189, 207, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.20);

    position: relative;
    /* Delay */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.mission-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-turquoise);
    display: block;
}

.mission-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Boat Image */
.mission-boat-img {
    position: absolute;
    bottom: -60px;
    /* Start slightly hidden */
    left: 30%;
    /* Left positioning */
    width: 50%;
    /* Large but responsive */
    max-width: 700px;
    height: auto;
    z-index: 9;
    /* Between bg and text? Or top? Let's engage layering */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    will-change: transform;
    transition: transform 0.1s linear;
    /* Smooth scroll sync */
    /* Initial state handled by JS or simple CSS entry */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.2s ease 0.5s, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.mission-boat-img.visible {
    opacity: 1;
    transform: translateY(0);
}



/* --- VISION SECTION (NUEVO - ILLUSTRATED) --- */
.vision-card {
    background: var(--mission-glass-bg);
    backdrop-filter: blur(15px);
    border: 5px solid var(--color-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
    /* Delay */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vision {
    position: relative;
    min-height: 100vh;
    /* background-color: var(--vision-bg);
     background-image:
         radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 10%),
         radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 10%); */
    /* Nautical pattern overlay - subtle repeating waves/lines */
    background-size: 40px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
}

/* Abstract Pattern Overlay */
.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 20px);
    opacity: 0.5;
    pointer-events: none;
}

.vision-container {
    width: 100%;
    max-width: 1400px;

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr;

    gap: 50px;

    justify-items: center;
    text-align: center;
}

/* Left Column: Visuals */
.vision-visuals {
    position: relative;
    height: 600px;
    text-align: center;
    /* Definitive height for composition */
}

/* Vision Card */
.vision-card {
    /* position: absolute;
     top: 0;
     left: 0;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     width: 300px;
     z-index: 10;
     opacity: 0;
     transform: translateY(-30px);
     transition: opacity 1s ease, transform 1s ease; */
    /* position: absolute;
    top: -30%;
    left: 0;
    background: var(--mission-glass-bg);
    backdrop-filter: blur(15px);
    border: 5px solid var(--color-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s; */
    /* Delay */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);  */
}

.vision-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vision-label {
    color: var(--color-turquoise);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.vision-text-small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Boat Composition */
.vision-boat-comp {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.v-boat {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    max-width: 600px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease 0.3s, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.v-boat.visible {
    opacity: 1;
    transform: translateY(0);
}

/* City Illustration on top of boat */
.v-city {
    position: absolute;
    bottom: 35%;
    /* Adjust to sit on boat deck */
    left: 20%;
    width: 40%;
    height: auto;
    z-index: 6;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
    mix-blend-mode: overlay;
    /* Integration effect */
}

.v-city.visible {
    opacity: 0.6;
    transform: scale(1);
}

/* Captain Character */
.v-captain {
    position: absolute;
    right: 5%;
    /* Top right of boat area */
    width: 80%;
    height: auto;
    z-index: 7;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease 0.8s, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s;
    animation: captainFloat 6s ease-in-out infinite;
    /* Floating idle */
}

.v-captain.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes captainFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Right Column: Narrative Text */
.vision-text {
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.vision-p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.vision-p.highlight {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--vision-gold);
}

.vision-p.visible {
    opacity: 1;
    transform: translateX(0);
}

.v-signature {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-turquoise);
    margin-top: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.v-signature.visible {
    opacity: 1;
    transform: translateX(0);
}



/* ___________________________________________________________________________________________________________________________________________ */

/* --- FOOTER (NUEVO) --- */
.footer {
    background-color: #050e1a;
    /* Más oscuro que el dark base */
    padding: 60px 5% 30px;
    color: var(--color-text-gray);
    font-family: var(--font-ui);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 85px 85px 0 0;
    margin: 0 125px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-turquoise);
    border-color: var(--color-turquoise);
    color: var(--color-dark);
    box-shadow: 0 0 15px rgba(62, 198, 201, 0.4);
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-legal {
    display: flex;
    gap: 30px;
    font-size: 0.85rem;
    font-weight: 300;
}

.legal-link {
    color: var(--color-text-gray);
    transition: color 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-turquoise);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: var(--color-white);
}

.legal-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    letter-spacing: 1px;
}

/* _______________________________________________________________________________________________________________________________________________  */

/* MODAL STYLE GLOBAL  */
/* --- MODAL --- */
.seal-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seal-modal.open {
    display: flex;
    opacity: 1;
}

.seal-modal-content {
    background: #0B1D36;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seal-modal.open .seal-modal-content {
    transform: scale(1) translateY(0);
}

.modal-header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-title {
    font-size: 2rem;
    color: var(--color-turquoise);
    margin-bottom: 15px;
    font-family: var(--font-script);
    /* Toque elegante */
}

.modal-desc {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menus-cards-buttons {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.menus-cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* MODAL STYLE GLOBAL  */

/* _____________________________________________________________________________________________________________________________________________________________  */



/* --- INQUIRY SECTION (PIXEL PERFECT UPDATE) --- */
.inquiry {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 5%;
    margin-top: -550px;
}

/* Full-width Background with Parallax */
.inquiry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    /* background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?q=80&w=2094&auto=format&fit=crop'); */
    /* Yacht Lifestyle */
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

/* Overlay Dark */
.inquiry-overlay {
    /* position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%; */
    /* background-color: var(--inq-bg-overlay); */
    /* Semi-transparent dark navy */
    /* z-index: 2;
     border: solid red; */
}

/* Main Card Container */
.inquiry-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    /* Gradient Background: Deep Navy to Lighter Navy */
    background: linear-gradient(135deg, var(--inq-card-dark) 0%, var(--inq-card-light) 100%);
    border-radius: 24px;
    /* Large Rounded Corners */
    /* Deep Luxury Shadow */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    padding: 60px;
    display: grid;
    grid-template-rows: 0.8fr;
    /* 2 Columns Layout */
    gap: 20px;
    align-items: start;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.inquiry-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left Side: Illustration + Text */
.inquiry-left {
    display: flex;
    flex-direction: row;
    gap: 2px;
}

/* Floating 3D Icon Container */
.inquiry-icon-container {
    width: 30%;
    height: auto;
    position: relative;
    animation: floatY 4s ease-in-out infinite;
    /* Floating Loop */
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* SVG Composition */
.inquiry-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    /* Shadow for depth */
}

.inquiry-text-container {
    width: 100%;
}

/* Text Content */
.inquiry-title {
    font-family: var(--font-ui);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--inq-aqua);
    /* Turquoise */
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.inquiry-desc {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--inq-gray);
    /* Light Gray */
    line-height: 1.7;
    font-weight: 300;
    /* max-width: 480px; */
    /* Controlled width */
}

/* Right Side: Form */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Generous Spacing */
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    height: 56px;
    /* Generous Height */
    padding: 0 24px;
    border-radius: 12px;
    /* Subtle rounding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #ffffff;
    /* Pure White Bg */
    color: #333;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 400;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 300;
}

.form-input:focus {
    outline: none;
    border-color: var(--inq-aqua);
    box-shadow: 0 0 0 4px rgba(64, 224, 208, 0.15);
    transform: translateY(-2px);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    /* si el fondo es oscuro */
    letter-spacing: 0.5px;
}



.form-select {
    width: 100%;
    padding: 18px 22px;
    border-radius: 14px;
    border: none;
    outline: none;

    background-color: #ffffff;
    color: #0b1a2a;

    font-size: 16px;
    font-family: inherit;

    /* Quitar estilo nativo */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Flecha personalizada */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b1a2a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

/* Hover */
.form-select:hover {
    cursor: pointer;
}

/* Focus igual al input */
.form-select:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

/* Placeholder style (opción disabled) */
.form-select option[disabled] {
    color: #9aa3af;
}


.btn-submit {
    background-color: var(--inq-aqua);
    color: #020c1b;
    /* Dark text for contrast on aqua */
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 56px;
    border: none;
    border-radius: 50px;
    /* Pill Shape */
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(64, 224, 208, 0.2);
}

.btn-submit:hover {
    background-color: #fff;
    color: var(--inq-aqua);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(64, 224, 208, 0.3);
}


/* ____________________________________________________________________________________________________________________________________________  */


/* --- CABO EXPERIENCE SECTION (NUEVO) --- */
.cabo-experience {
    position: relative;
    padding: 100px 5%;
    background-color: var(--cabo-bg);
    /* Patrón de líneas verticales sutiles */
    /* background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px); */
    background-image: url(../images/yachtvilleWEB5-ContactTextura2.webp);
    /* background-size: cover; */
    background-position: 0 0;
    overflow: hidden;
    color: var(--cabo-text);
}

.cabo-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    /* Fade in animation */
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.cabo-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.cabo-title {
    font-family: var(--font-ui);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cabo-title);
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 800px;
}

.cabo-desc {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--cabo-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 60px;
}

/* Charter Types */
.cabo-block-title {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cabo-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: block;
}

.charter-types {
    margin-bottom: 60px;
}

.charter-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.charter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.charter-item:hover {
    transform: translateY(-5px);
}

.charter-icon {
    width: 70px;
    height: 70px;
    background-color: var(--cabo-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.charter-item:hover .charter-icon {
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.4);
    transform: scale(1.05);
}

.charter-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.charter-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cabo-title);
}

.cabo-subtext {
    font-size: 0.95rem;
    color: #667;
    font-style: italic;
}

/* Cabo Seals */
.cabo-seals-wrapper {
    margin-top: 40px;
}

.cabo-seals-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cabo-seal {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.cabo-seal:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Pulse animation for seals */
.cabo-seal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor;
    opacity: 0.3;
    animation: pulse-glow 2s infinite;
    z-index: -1;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }
}

.cabo-seal svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.cabo-seal-red {
    color: var(--cabo-accent-red);
}

.cabo-seal-teal {
    color: var(--cabo-accent-teal);
}

.cabo-seal-blue {
    color: var(--cabo-icon-bg);
}



/* ___________________________________________________________________________________________________________________________________________ */


.h-info {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.h-info.dicover-cabo {
    background: linear-gradient(rgba(2, 12, 27, 0.5), rgba(2, 12, 27, 0.8)),
        url('../images/Discover-Cabo.webp') center/cover;
}

.h-info.dicover-lapaz {
    background: linear-gradient(rgba(2, 12, 27, 0.5), rgba(2, 12, 27, 0.8)),
        url('../images/Discover-Lapaz.webp') center/cover;
}

.h-info.cabo {
    background: linear-gradient(rgba(2, 12, 27, 0.5), rgba(2, 12, 27, 0.8)),
        url('../images/CABO_FLEET_3.webp') center/cover;
}

.h-info.lapaz {
    background: linear-gradient(rgba(2, 12, 27, 0.5), rgba(2, 12, 27, 0.8)),
        url('../images/LA_PAZ_FLEET.webp') center/cover;
}

.h-content {
    animation: fadeIn 1.2s ease-out forwards;
    z-index: 2;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.h-info h1 {
    font-size: clamp(2rem, 8vw, 5rem) !important;
    /* letter-spacing: 8px;
    font-weight: 300;
    margin-bottom: 20px; */
}

.h-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-turquoise);
}

.btn-turquoise {
    background-color: var(--accent-turquoise);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(56, 192, 201, 0.3);
}

.btn-turquoise:hover {
    transform: scale(1.05);
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(56, 192, 201, 0.5);
}



/* ___________________________________________________________________________________________________________________________________________ */





/* --- MODAL --- */
.seal-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seal-modal.open {
    display: flex;
    opacity: 1;
}

.seal-modal-content {
    background: #0B1D36;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seal-modal.open .seal-modal-content {
    transform: scale(1) translateY(0);
}

.modal-header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-title {
    font-size: 2rem;
    color: var(--color-turquoise);
    margin-bottom: 15px;
    font-family: var(--font-script);
    /* Toque elegante */
}

.modal-desc {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menus-cards-buttons {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.menus-cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.font-menu {
    background-image: url('../images/yachtvilleWEB3-CaboFleet-02.webp');
    background-size: cover;
    background-position: center;

}

.font-menu-cus {
    background-image: url('../images/yachtvilleWEB3-CaboFleet-03.webp');
    background-size: cover;
    background-position: center;

}

.font-menu-add {
    background-image: url('../images/yachtvilleWEB3-CaboFleet-04.webp');
    background-size: cover;
    background-position: center;

}




/* ___________________________________________________________________________________________________________________________________________ */


/* Map de discover la baja */
#map-cabo {
    margin: 120px 15%;
    display: none;
}

#map {
    width: 100%;
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(72, 189, 207, .3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.leaflet-popup-content {
    font-family: inherit;
}

.location-popup {
    min-width: 180px;
}

.location-popup h4 {
    margin: 0 0 .5rem;
    color: #48BDCF;
    font-size: 1rem;
}

.location-popup p {
    margin: 0;
    font-size: .9rem;
}

.location-content {
    display: none;
}

.location-content.active {
    display: block;
}

#map-cabo {
    display: none;
}

#map-cabo.active {
    display: block;
}


/* _______________________________________________________________________________________________________________________________  */





/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .experience {
        padding: 80px 20px;
    }

    .experience__container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .experience__logo-svg {
        width: 140px;
    }

    .experience__title {
        font-size: 2rem;
    }

    .experience__text {
        text-align: center;
    }

    .section-parallax__content {
        left: 5%;
        max-width: 100%;
    }

    .section-parallax__content img {
        width: 300px;
    }

    .section-parallax__content a {}

    /* Grid Tablet: 2x2 */
    .seal-grid {
        justify-content: center;
    }

    .menus-cards-grid {
        justify-content: center;
    }

    .seal-card-wrapper {
        flex: 0 0 calc(50% - 20px);
        max-width: 300px;
    }

    /* Fleet Responsive */
    .fleet-container {
        height: auto;
        min-height: auto;
        flex-direction: column;
    }

    .fleet-bg-box {
        width: 100%;
        height: 400px;
        margin-bottom: 50px;
    }

    .fleet-yacht-img {
        width: 90%;
        position: relative;
        right: auto;
        bottom: 35vh;
        margin-top: -190px;
        /* Superposición vertical */
        transform: translateX(0);
        /* Reset transform */
    }

    .fleet-container.visible .fleet-yacht-img {
        transform: translateX(0);
    }

    .fleet-cta-container {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }

    .fleet-title {
        font-size: 3rem;
        letter-spacing: 5px;
        top: 20px;
    }

    /* Destination Responsive (Updated) */
    .destination {
        padding: 80px 5%;
    }

    /* Reduce padding */
    .dest-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dest-right {
        align-items: center;
        text-align: center;
    }

    .dest-desc {
        text-align: center;
        max-width: 100%;
    }

    /* Ensure full width text */
    .dest-seals-row {
        justify-content: center;
    }

    .dest-title {
        font-size: 3rem;
    }

    .dest-offers-card {
        margin: 20px auto;
        width: 100%;
    }

    /* Center card */

    /* Cabo Section Responsive */
    .cabo-container {
        text-align: center;
    }

    .cabo-title {
        font-size: 2.5rem;
        margin: 0 auto 20px;
    }

    .cabo-desc {
        margin: 0 auto 40px;
    }

    .charter-list,
    .cabo-seals-list {
        justify-content: center;
    }

    /* Fleet Gallery  */
    .fleet-gallery-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 60px;
    }


    .fleet-wrapper-2 {
        left: 0;
        top: 30vh;
        padding: 5%;
    }

    .fleet-title-2 {
        width: 100%;
    }


    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }


    /* Mission Responsive */
    .mission-text-top {
        width: 100%;
        text-align: justify;
        margin-bottom: 30px;
    }

    .mission-content {
        padding-top: 10px;
    }

    .mission-card-wrapper {
        justify-content: center;
        margin-bottom: 20px;
    }

    .mission-card {
        margin: 0 auto;
        text-align: center;
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.4);
    }

    .mission-label {
        font-size: 1.1rem;
    }

    .mission-desc {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* Darker bg for readability on mobile image */
    .mission-boat-img {
        left: 50%;
        bottom: 1%;
        transform: translateX(-50%) translateY(100px);
        width: 80%;
    }


    .mission-text-top {
        margin-bottom: 25px;
    }

    .mission-boat-img.visible {
        transform: translateX(-50%) translateY(0);
    }

    /* Vision Responsive (Nuevo) */
    .vision-container {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
    }

    .vision-visuals {
        height: 400px;
        margin-bottom: 30px;
    }

    .vision-card {
        /* left: 50%;
         transform: translateX(-50%) translateY(-20px);
         width: 280px; */
        top: -15%;
        padding: 24px;
        margin: 0 auto;
        width: 90%;
    }

    .vision-boat-comp {
        left: 0;
    }

    .v-boat {
        width: 90%;
        left: 5%;
    }

    .v-captain {
        right: 0;
        width: 100%;
        /* max-width: 150px; */
        bottom: -30%;
    }

    .v-city {
        left: 10%;
        bottom: 45%;
    }

    .vision-text {
        align-items: center;
        text-align: center;
    }

    .vision-p {
        transform: translateY(20px);
        margin-bottom: 15px;
    }

    .vision-p.visible {
        transform: translateY(0);
    }

    .v-signature {
        margin-top: 10px;
        font-size: 3rem;
        transform: translateY(20px);
    }

    .v-signature.visible {
        transform: translateY(0);
    }

    .inquiry-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2px;
    }

    .inquiry-card {
        padding: 5%;
    }

    .gif_carrusel {
        height: auto;
    }

    #map-cabo {
        margin: 10% 5%;
    }

    #map {
        height: 350px;
    }

    .h-stats {
        gap: 10px;
        margin-bottom: 20px;
    }

    .h-stats img {
        width: 55px;
    }
}





















/* max-width: 768px */


@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .hamburger {
        display: block;
    }

    /* Hamburger animations */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #05101e;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        margin-bottom: 2.5rem;
    }

    /* Mobile Seal: 1 Column */
    .seal-card-wrapper {
        flex: 0 0 100%;
        max-width: 320px;
        margin-bottom: 20px;
    }

    .seal-heading {
        font-size: 1.5rem;
        text-align: center;
        display: block;
    }

    .seal-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .beyond-div {
        height: 280px;
        margin-top: 25%;
        flex-direction: column;
        margin-bottom: 25%;
    }

    .beyond-div-bg {
        /* border: solid red; */
        height: 450px;
    }

    .card-beyond {
        padding: 0;
        width: 100%;
    }

    /* Explore Mobile */
    .explore-title {
        font-size: 2.5rem;
    }

    .explore-content {
        padding-bottom: 50px;
    }

    .explore-switcher {
        flex-direction: row;
        gap: 15px;
    }

    .explore-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }



    .destination {
        padding: 70px 5%;
    }

    .dest-container {
        grid-template-columns: 1fr;
    }

    .dest-carousel-wrapper {
        height: 240px;
        border-radius: 20px;
    }

    .dest-map-wrapper {
        height: 180px;
        border-radius: 20px;
    }

    .dest-title {
        font-size: 2.1rem;
    }

    .dest-desc {
        font-size: 0.95rem;
        text-align: justify;
    }

    .dest-dot {
        width: 8px;
        height: 8px;
    }

    .dest-offers-card {
        border-radius: 20px;
        padding: 20px;
    }

    .dest-offers-title {
        font-size: 1rem;
    }

    .offer-item {
        font-size: 0.9rem;
    }

    .offer-icon {
        width: 22px;
        height: 22px;
    }

    .gif_carrusel {
        height: auto;
    }

    .dest-title {
        font-size: 10px;
    }

    /* Controles */
    .dest-control {
        /* position: absolute;
         top: 50%;
         transform: translateY(-50%);
         background: rgba(0, 0, 0, .5);
         color: #fff;
         border: none; */
        font-size: 10px;
        /* padding: 10px 15px;
         cursor: pointer;
         z-index: 10; */
    }

    .mission {
        height: 10vh;
    }

    .h-stats {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .h-stats img {
        width: 50px !important;
    }

    .footer {
        border-radius: 0 0 0 0;
        margin: 0;
    }
}