
.logo-img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #007AFF;
    --deep-blue: #001B3D;
    --gold-accent: #D4AF37;
    --ocean-teal: #006A6B;
    --pearl-white: #F8FAFC;
    --charcoal: #2C3E50;
    --gradient-ocean: linear-gradient(135deg, #001B3D 0%, #006A6B 50%, #007AFF 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #D4AF37 100%);
    --gradient-pearl: linear-gradient(135deg, #F8FAFC 0%, #E8F4F8 50%, #E3F2FD 100%);
    --shadow-soft: 0 10px 30px rgba(0, 27, 61, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 27, 61, 0.25);
    --shadow-luxury: 0 30px 80px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
    background: var(--pearl-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER FLOTANTE ========== */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 27, 61, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 27, 61, 0.1);
}

.floating-header.scrolled {
    padding: 10px 0;
    background: rgba(0, 27, 61, 0.98);
    box-shadow: 0 8px 32px rgba(0, 27, 61, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    background: var(--gradient-ocean);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--deep-blue);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
    filter: brightness(0.8);
    position: relative;
    z-index: 3;
}

@keyframes heroZoom {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.08) rotate(0.5deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 27, 61, 0.4) 0%, rgba(0, 106, 107, 0.6) 40%, rgba(0, 122, 255, 0.7) 100%);
    z-index: 5;
    /* opacity: 0.5; */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    margin-bottom: 8px;
}

.highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunset);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 550px;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.8s;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.1s;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.4s;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-sunset);
    opacity: 0.1;
    transition: all 0.6s ease;
}

.stat-item:hover::before {
    left: 0;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-accent);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========== ANIMACIONES KEYFRAMES ========== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== SELECTOR DE EXPERIENCIAS ========== */
.experience-selector {
    padding: 120px 0;
    background: var(--gradient-pearl);
    position: relative;
    overflow: hidden;
}

.experience-selector::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.03) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--deep-blue);
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-sunset);
    border-radius: 3px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 122, 255, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.experience-card:hover::before {
    left: 0;
}

.experience-card:hover::after {
    width: 300px;
    height: 300px;
}

.experience-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    color: white;
    box-shadow: var(--shadow-luxury);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.experience-card:hover .card-icon {
    transform: scale(1.3) rotateY(15deg);
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.experience-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.experience-card p {
    font-size: 1.05rem;
    opacity: 0.85;
    transition: all 0.4s ease;
    line-height: 1.6;
}

.experience-card.selected {
    background: var(--gradient-ocean);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-luxury);
}

/* ========== SECCIÓN FLOTA ========== */
.fleet-section {
    padding: 140px 0;
    background: var(--deep-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    /* background: linear-gradient(180deg, var(--pearl-white) 0%, rgba(248, 250, 252, 0.8) 30%, rgba(0, 27, 61, 0.9) 70%, var(--deep-blue) 100%); */
    z-index: 1;
}

.fleet-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header .section-title {
    color: white;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.yacht-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.yacht-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.yacht-card.featured {
    grid-row: 1 / 3;
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.yacht-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.yacht-card.featured:hover {
    transform: scale(1.08) translateY(-20px);
}

.yacht-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.yacht-card.featured .yacht-image {
    height: 380px;
}

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.yacht-card:hover .yacht-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.yacht-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gradient-sunset);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 0.5px;
}

.yacht-info {
    padding: 35px;
}

.yacht-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gold-accent);
    letter-spacing: -0.5px;
}

.yacht-specs {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 500;
}

.yacht-info p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

.yacht-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-from {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

.btn-yacht {
    background: var(--gradient-sunset);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-yacht::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn-yacht:hover::before {
    left: 100%;
}

.btn-yacht:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.yacht-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* ========== SECCIÓN METEOROLOGÍA ========== */
.weather-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 30%, #90CAF9 100%);
    position: relative;
    overflow: hidden;
}

.weather-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
}

.weather-section .container {
    position: relative;
    z-index: 2;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.weather-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunset);
}

.weather-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 122, 255, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.weather-location {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.weather-temp {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.weather-condition {
    font-size: 1.2rem;
    color: var(--ocean-teal);
    margin-bottom: 25px;
    font-weight: 600;
}

.weather-wind, .weather-waves {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    opacity: 0.8;
    font-weight: 500;
}

/* ========== SECCIÓN EXPERIENCIAS ========== */
.experiences-section {
    padding: 0;
    background: var(--charcoal);
    position: relative;
}

.experiences-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 85vh;
}

.experience-item {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-item:hover::before {
    background: linear-gradient(
        to top, 
        rgba(0, 27, 61, 0.9) 0%, 
        rgba(0, 106, 107, 0.7) 40%, 
        rgba(0, 122, 255, 0.5) 70%,
        rgba(0, 122, 255, 0.3) 100%
    );
}

.experience-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.experience-content {
    position: relative;
    z-index: 2;
    color: white;
    transform: translateY(25px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.experience-item:hover .experience-content {
    transform: translateY(0);
    opacity: 1;
}

.experience-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--gold-accent);
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.experience-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 280px;
}

.btn-experience {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-experience::before {
    content: none;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-sunset);
    transition: all 0.6s ease;
    z-index: -1;
}
.btn-experience::after {
    content: none;
}

.btn-experience:hover::before {
    left: 0;
}

.btn-experience:hover {
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========== SECCIÓN DESTINOS ========== */
.destinations-section {
    padding: 140px 0;
    background: var(--pearl-white);
    position: relative;
    overflow: hidden;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.destinations-section .container {
    position: relative;
    z-index: 2;
}

.destinations-map {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 30%, #4FC3F7 60%, #29B6F6 100%);
    border-radius: 30px;
    margin-top: 80px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.destinations-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.destination-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.destination-point:hover {
    z-index: 20;
}

.point-marker {
    width: 24px;
    height: 24px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    animation: pulse 3s infinite;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.destination-point:hover .point-marker {
    transform: scale(1.3);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
    animation-play-state: paused;
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5); 
    }
    50% { 
        transform: scale(1.15); 
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5); 
    }
}

html{
    overflow-x: hidden;
}

.point-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
}

.destination-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
}

.point-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.point-info p {
    font-size: 1rem;
    color: var(--ocean-teal);
    font-weight: 500;
    margin: 0;
}

/* ========== SECCIÓN CONTACTO ========== */
.contact-section {
    padding: 140px 0;
    background: var(--deep-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--gold-accent);
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 480px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sunset);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gold-accent);
    letter-spacing: 0.5px;
}

.contact-item p {
    opacity: 0.9;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--gold-accent);
    text-align: center;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--deep-blue);
    color: white;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-sunset);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #000814 0%, #001d3d 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 122, 255, 0.05) 0%, transparent 50%);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 25px;
    font-size: 24px;
}

.footer-brand p {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold-accent);
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: block;
    padding: 3px 0;
}

.footer-column ul li a:hover {
    color: var(--gold-accent);
    transform: translateX(8px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 1rem;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-legal a:hover {
    color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.05);
}

/* ========== BANNER DE COOKIES ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-blue);
    color: white;
    padding: 25px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--gold-accent);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cookie-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn-accept, .btn-decline {
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-accept {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ========== RESPONSIVIDAD ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .yacht-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .yacht-card.featured {
        grid-row: auto;
        transform: none;
    }
    
    .experiences-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .experience-item {
        min-height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .destinations-map {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(0, 27, 61, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .weather-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .yacht-grid {
        gap: 25px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .destinations-map {
        height: 400px;
    }
    
    .point-info {
        position: fixed;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 280px;
        white-space: normal;
        text-align: center;
    }
    
    .destination-point:hover .point-info {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .experience-card,
    .weather-card,
    .yacht-card {
        margin: 0 10px;
    }
    
    .experience-item {
        padding: 30px 25px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .yacht-info {
        padding: 25px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    .hero-stats{
        flex-direction: column;
    }
    .hero-section{
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .footer-legal{
        flex-direction: column;
    }
}




.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
}
.text-wrapper ul{
    list-style: initial!important;
}

.text-wrapper p{
    margin-bottom: 10px;
}
