:root {
    --primary-color: #00A6ED; /* Un azul más vibrante */
    --secondary-color: #00C6FF; /* Un azul cielo */
    --accent-color: #FF6B6B; /* Un coral/rojo vibrante para CTAs */
    --accent-color-hover: #FF4747;
    --dark-blue: #0D47A1;
    --text-color: #3D3D3D; /* Un gris oscuro más suave */
    --light-text-color: #6B6B6B;
    --bg-light: #F7F9FC; /* Fondo muy claro, casi blanco */
    --bg-white: #ffffff;
    --border-radius: 20px; /* Bordes más redondeados */
    --shadow: 0 8px 25px rgba(0, 70, 120, 0.08);
    --shadow-hover: 0 12px 35px rgba(0, 70, 120, 0.12);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Comfortaa', cursive; /* Fuente más redonda y moderna para títulos */
    --font-logo: 'Lobster', cursive; /* Para el logo si no tuviera texto */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.75;
    background: var(--bg-light);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Mejor renderizado de fuentes */
	-moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.main-content {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

header {
    background: linear-gradient(100deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,90,150,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.logo-link:hover {
    transform: scale(1.05);
}
.logo-img {
    max-height: 55px;
    width: auto;
    border-radius: 8px;
}

.main-nav {
    display: flex;
}
.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-nav ul li {
    margin-left: 28px;
}
.main-nav ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600; /* Un poco más bold */
    padding: 0.7rem 1.1rem;
    border-radius: 25px; /* Más redondeado */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}
.main-nav ul li a:hover, .main-nav ul li a.active {
    background-color: rgba(255,255,255,0.95);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero {
    background: url('imagen/todosbarcos.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: clamp(5rem, 20vh, 10rem) 2rem;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Para efectos con pseudo-elementos */
}
/* Pseudo elemento para un efecto de "glow" o viñeta sutil */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* box-shadow: inset 0 0 100px rgba(0, 30, 60, 0.3); */
    pointer-events: none; /* No interfiere con el clic */
    z-index: 1;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0, 60, 110, 0.6), rgba(0, 25, 55, 0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2; /* Por encima del overlay y el ::before */
    max-width: 850px;
    margin: 0 auto;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 700; /* Comfortaa bold */
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    color: var(--bg-white);
    line-height: 1.2;
}
.hero .subtitle {
    font-size: clamp(1.2rem, 3.5vw, 1.7rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0.95;
}
.hero-price-banner {
    background-color: rgba(0, 0, 0, 0.4); /* Fondo oscuro semi-transparente */
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 3rem;
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-price-banner span {
    margin: 0 1rem;
}
.hero-price-banner strong {
    font-weight: 700; /* Poppins */
    color: var(--secondary-color); /* Azul claro para destacar el precio */
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-color-hover));
    color: var(--bg-white);
    padding: 1rem 2.8rem;
    font-weight: 700; /* Poppins Bold */
    font-size: clamp(1.05rem, 2.8vw, 1.3rem);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255,107,107,0.5);
}
.cta-button:active {
    transform: translateY(-2px) scale(0.97);
}
.cta-button .fa-ticket-alt { /* Para el icono del ticket */
    margin-left: 10px;
    font-size: 1.1em;
}
/* Animación Pulse para CTA principal */
.pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    font-size: 1.1em; /* Si usas FA directamente en el botón */
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.2rem);
    margin-bottom: 3rem;
    color: var(--dark-blue);
    text-align: center;
    font-weight: 700; /* Comfortaa bold */
    line-height: 1.3;
}

/* SECCIÓN "TU AVENTURA INCLUYE" - .features y .feature-item */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.8rem; /* Un poco más de espacio */
}
.feature-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0; /* El padding se controlará internamente */
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden; /* Para que la imagen no se salga si el contenedor es más pequeño */
}
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.feature-item-img-wrapper {
    width: 100%;
    height: 230px; /* Altura fija para las imágenes de features */
    overflow: hidden;
    position: relative; /* Para posibles efectos de overlay en la imagen */
}
.feature-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.feature-item:hover .feature-item-img-wrapper img {
    transform: scale(1.08); /* Sutil zoom en la imagen al hacer hover en la tarjeta */
}
.feature-item-content { /* Contenedor para el texto */
    padding: 1.8rem 1.5rem;
}
.feature-item h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700; /* Poppins Bold */
    font-size: 1.25rem;
}
.feature-item p {
    font-size: 0.9rem;
    color: var(--light-text-color);
    line-height: 1.65;
}

.info-extra-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.8rem;
    background-color: transparent; /* Sin fondo propio, usa el del body */
    padding: 0; /* Se maneja por sección */
    box-shadow: none; /* Quitar sombra de esta sección contenedora */
}
.info-box {
    padding: 2rem 1.8rem;
    border-radius: var(--border-radius);
    background-color: var(--bg-white); /* Fondo blanco para las cajas internas */
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.info-box.horarios { border-left: 6px solid var(--secondary-color); }
.info-box.no-incluye { border-left: 6px solid var(--accent-color); }

.info-box h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem; /* Ligeramente más pequeño */
    color: var(--dark-blue);
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    font-weight: 700; /* Poppins Bold */
}
.inline-icon-fa { /* Para FontAwesome iconos en línea */
    font-size: 1.2em;
    margin-right: 12px;
    color: var(--primary-color);
    width: 28px; /* Para alineación si se usa con img */
    text-align: center;
}
.info-box.no-incluye .inline-icon-fa { color: var(--accent-color); }
.large-icon-fa { font-size: 2.2em !important; margin-bottom: 0.5rem; display: block; }

.info-box p, .info-box ul li {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}
.info-box strong {
    color: var(--primary-color);
    font-weight: 600;
}
.reserva-flexible {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    background-color: rgba(0, 166, 237, 0.08);
    padding: 1.8rem 1.2rem;
    border-radius: 15px;
    margin-top: 1.8rem;
    border: 2px dashed var(--secondary-color);
}
.reserva-flexible p {
    font-size: 1.2rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 0.4rem !important;
    font-weight: 700;
}
.reserva-flexible span {
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 500;
}
.no-incluye ul { list-style: none; padding-left: 0; }
.no-incluye ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.7rem;
}
.no-incluye ul li::before {
    font-family: "Font Awesome 5 Free"; /* Asegurar que use FA */
    content: "\f057"; /* Icono de círculo con X (times-circle) */
    font-weight: 900; /* FA Solid */
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.video-section {
    text-align:center;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin-bottom: 1.2rem;
}
.video-wrapper iframe,
.video-wrapper video.main-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-caption {
    margin-top: 1.8rem;
    font-style: italic;
    color: var(--light-text-color);
    font-size: 0.9rem;
}
.sub-heading-videos {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3.5rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.booking-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 50, 100, 0.2);
    max-width: 850px;
    margin: 4rem auto;
    text-align: center;
}
.booking-section h2 {
    color: var(--bg-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.price-box { margin-bottom: 3rem; }
.price-tag {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
}
.price-tag span {
    color: #FFD700; /* Dorado para el precio */
    font-weight: 700;
    font-size: 2.5rem;
    margin-left: 0.6rem;
}
.price-details {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1.2rem;
}
.price-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-top: 1.5rem;
    background-color: rgba(255,107,107,0.8); /* Usar el accent color semi-transparente */
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
}
.booking-info h3 {
    font-family: var(--font-display);
    margin-bottom: 2rem;
    font-size: 1.9rem;
    font-weight: 700;
}
.booking-info .cta-button {
    margin: 1rem auto;
    width: 90%;
    max-width: 340px;
    padding: 1.1rem 1.8rem;
    font-size: 1.05rem; /* Un poco más pequeño que el CTA principal */
}
.cta-button.whatsapp {
    background: #25D366; /* Verde WhatsApp */
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.cta-button.whatsapp:hover {
    background: #1DA851;
    box-shadow: 0 10px 25px rgba(37,211,102,0.45);
}
.cta-button.phone {
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0,166,237,0.35);
}
.cta-button.phone:hover {
    background: var(--primary-color); /* Ligeramente más oscuro */
    box-shadow: 0 10px 25px rgba(0,166,237,0.45);
}
.booking-note {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    aspect-ratio: 4 / 3; /* Mantiene una proporción para las imágenes */
}
.gallery-item:hover {
    transform: scale(1.03) translateY(-6px); /* Más sutil */
    box-shadow: var(--shadow-hover);
    z-index: 10;
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease; /* Sutil zoom para la imagen también */
}
.gallery-item:hover img {
    transform: scale(1.05);
}

footer {
    background: var(--dark-blue);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 3rem; /* Separación del último contenido */
}
.footer-logo-img {
    max-height: 65px;
    width: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    opacity: 0.9;
}
.footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}
.footer-socials {
    margin-top: 1rem;
}
.footer-socials a {
    color: rgba(255,255,255,0.7);
    font-size: 1.6rem;
    margin: 0 0.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}


.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 35px;
    right: 35px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%; /* Perfectamente redondo */
    text-align: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg); /* Pequeña rotación al hacer hover */
    background-color: #1DA851;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-white);
    font-size: 1.9rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}
.nav-toggle:hover {
    transform: scale(1.1);
}


@media (max-width: 992px) {
    .features, .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(180deg, var(--primary-color), var(--dark-blue));
        padding: 1.5rem 0; /* Más padding vertical */
        box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.active { display: flex; }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .main-nav ul li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    .main-nav ul li a {
        padding: 0.9rem 1.2rem; /* Ligeramente más grandes para tap */
        display: block;
        width: 85%;
        margin: 0 auto;
        border-radius: 10px; /* Bordes menos redondeados que en desktop para menú móvil */
    }
    .main-nav ul li a:hover {
        background-color: rgba(255,255,255,0.15);
        transform: none; /* Quitar transform en hover para menú móvil */
    }

    .hero-price-banner { display: flex; flex-direction: column; gap: 0.6rem; }
    .hero-price-banner span { margin: 0; }
    .info-extra-section { grid-template-columns: 1fr; padding: 0 1rem; } /* Padding para el contenido */
    .info-box { margin-bottom: 2rem; } /* Espacio entre cajas en móvil */
    .info-extra-section .info-box:last-child { margin-bottom: 0; }
    .booking-section { padding: 3rem 1.8rem; }
    .features, .gallery-grid { grid-template-columns: 1fr; gap: 2rem; } /* 1 columna en móviles */
    .feature-item-img-wrapper { height: 200px; }
}

@media (max-width: 480px) {
    .logo-img { max-height: 48px; }
    .main-nav ul li a { font-size: 0.9rem; padding: 0.8rem 1rem; }
    .hero h1 { font-size: 2.3rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .hero-price-banner { font-size: 1.05rem; padding: 0.7rem 1.2rem; }
    .cta-button { padding: 0.9rem 2.2rem; font-size: 1rem;}
    h2 { font-size: 2.1rem; margin-bottom: 2.5rem; }
    .feature-item h3 { font-size: 1.15rem; }
    .feature-item p { font-size: 0.85rem; }
    .info-box h3 { font-size: 1.25rem; }
    .price-tag { font-size: 1.4rem; }
    .price-tag span { font-size: 2rem; }
    .booking-info .cta-button { width: 100%; max-width: none; font-size: 0.95rem; padding: 1rem; }
    .gallery-item { aspect-ratio: 16/10; } /* Ajustar proporción si es necesario */
    .footer-tagline { font-size: 0.9rem;}
    .whatsapp-float { width: 58px; height: 58px; font-size: 28px; bottom: 25px; right: 25px; }
}

.map-link {
    display: inline-block; /* Para que el padding y margin funcionen bien */
    margin-top: 0.5rem; /* Espacio desde el texto del punto de encuentro */
    color: var(--primary-color); /* Usa el color primario */
    font-weight: 600; /* Un poco más de énfasis */
    text-decoration: none; /* Quitar subrayado por defecto */
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.map-link i {
    margin-right: 6px; /* Espacio entre el icono y el texto */
}

.map-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none; /* Mantener sin subrayado */
}