/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 77, 122, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}
.logo-img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 1!important;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #fff;
    color: #004d7a;
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Floating Header */
.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #004d7a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #004d7a;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #004d7a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #004d7a;
    transition: all 0.3s ease;
}

/* Hero Section - Diagonal Split */
.hero-diagonal {
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004d7a 0%, #0066a0 100%);
    /* clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%); */
    z-index: 2;
}

.hero-text {
    color: white;
    max-width: 500px;
    padding: 0 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    color: #ffd700;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.cta-primary {
    background: #ffd700;
    color: #004d7a;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #004d7a;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Offering - Hexagonal Grid */
.service-offering {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.service-grid {
    display: flex;
    /* grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr; */
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
    height: 600px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    left: 100%;
}

.main-service {
    grid-row: span 2;
    background: linear-gradient(135deg, #004d7a, #0066a0);
    color: white;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price-tag {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.main-service .price {
    color: #ffd700;
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.book-now {
    background: #ffd700;
    color: #004d7a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.book-now:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Experiencias Section - Vertical Carousel */
.experiencias-section {
    padding: 100px 0;
    background: #004d7a;
    color: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffd700;
}

.vertical-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-card {
    display: flex;
    gap: 40px;
    align-items: center;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.experience-card.active {
    opacity: 1;
    transform: scale(1);
}

.experience-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 250px;
    opacity: 1!important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card.active .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    flex: 1;
}

.experience-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ffd700;
    transform: scale(1.3);
}

/* Rutas Secretas - Interactive Map */
.rutas-secretas {
    padding: 100px 0;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
}

.rutas-secretas .section-title {
    color: #004d7a;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-background {
    position: absolute;
    inset: 0;
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-points {
    position: absolute;
    inset: 0;
}

.route-point {
    position: absolute;
    cursor: pointer;
}

.point-marker {
    width: 50px;
    height: 50px;
    background: #004d7a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 77, 122, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.route-point:hover .point-marker {
    transform: scale(1.2);
    background: #ffd700;
    color: #004d7a;
}

.point-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.route-point:hover .point-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.point-tooltip h4 {
    color: #004d7a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.point-tooltip p {
    color: #666;
    font-size: 0.9rem;
}

/* Capitán Section - Q&A Accordion */
.capitan-section {
    padding: 100px 0;
    background: white;
}

.capitan-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.capitan-image {
    flex: 1;
    max-width: 300px;
}

.capitan-image img {
    width: 100%;
    height: 400px;
    opacity: 1!important;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.capitan-text {
    flex: 2;
}

.capitan-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #004d7a;
    margin-bottom: 20px;
}

.capitan-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.qa-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.qa-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #004d7a;
    transition: all 0.3s ease;
}

.qa-question:hover {
    color: #0066a0;
}

.qa-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.qa-item.active .qa-toggle {
    transform: rotate(45deg);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.qa-item.active .qa-answer {
    max-height: 200px;
    padding: 0 0 25px 0;
}

.qa-answer p {
    font-style: italic;
    line-height: 1.8;
    color: #666;
    border-left: 3px solid #ffd700;
    padding-left: 20px;
}

/* Contact Section - Split Screen */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #004d7a, #0066a0);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ffd700;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffd700;
}

.contact-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
    background: #ffd700;
    color: #004d7a;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 77, 122, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 77, 122, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 77, 122, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 68px;
        background: #fff;
        flex-direction: column;
        width: 100%;
        left: 0;
        padding: 20px;
        border-radius: 20px;
    }
    
    .hero-content {
        clip-path: none;
        padding-top: 70px;
    }
    
    .hero-diagonal {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        height: auto;
        flex-wrap: wrap;
    }
    .service-card{
        width: 100%;
    }
    
    .experience-card {
        flex-direction: column;
        text-align: center;
    }
    
    .capitan-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .floating-header {
        top: 10px;
        width: calc(100% - 20px);
    }
    
    .nav-container {
        padding: 10px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
}




.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;
}
td, th{
    padding: 10px;
}

th{
    background-color: #999;
}