
:root {
    --blanco-fondo: #ffffff;
    --azul-principal: #103058; 
    --azul-claro: #0077b6;
    --dorado-premium: #D6A257; 
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--blanco-fondo);
    color: var(--azul-principal);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--azul-principal);
}

/* Navbar estilo Mahi Charters */
.navbar {
    background-color: var(--blanco-fondo);
    border-bottom: 2px solid rgba(16, 48, 88, 0.1);
}

.nav-link {
    color: var(--azul-principal) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover { color: var(--dorado-premium) !important; }

.btn-reserve {
    background-color: var(--azul-principal);
    color: #fff !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: var(--dorado-premium);
    color: #fff !important;
}
.btn-back {
    border: 2px solid var(--azul-principal);
    color: var(--azul-principal);
    font-weight: 600;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-back:hover {
    background-color: var(--azul-principal);
    color: #fff;
}

/* Galería e Imágenes */
.main-img-container {
    height: 450px;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(16, 48, 88, 0.1);
}
.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-img {
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.thumbnail-img:hover, .thumbnail-img.active {
    border-color: var(--dorado-premium);
    transform: scale(1.05);
}

/* Badges e Íconos */
.badge-specs {
    background-color: var(--gris-suave);
    color: var(--azul-principal);
    border: 1px solid rgba(16, 48, 88, 0.1);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}
.badge-specs i {
    color: var(--dorado-premium);
}

/* Caja de Precios y Bloque Lateral */
.booking-card {
    background-color: var(--gris-suave);
    border: 1px solid rgba(16, 48, 88, 0.08);
    border-radius: 16px;
    padding: 25px;
}

.price-box {
    background: #fff;
    border-left: 4px solid var(--dorado-premium);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Notas de Servicio Requeridas (Visibles) */
.premium-notes-list {
    background-color: #fff;
    border: 1px dashed rgba(214, 162, 87, 0.5);
    border-radius: 12px;
    padding: 15px;
}
.premium-note-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--azul-principal);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.premium-note-item:last-child {
    margin-bottom: 0;
}
.premium-note-item i {
    color: var(--dorado-premium);
    margin-right: 10px;
    font-size: 1rem;
}

/* Botones de Acción Directa */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background-color: #1ebd58;
    transform: translateY(-1px);
}

.btn-action-call {
    background-color: #103058;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
}
.btn-action-call:hover {
    background-color: #1d467a;
    transform: translateY(-1px);
}

.btn-action-email {
    background-color: #e2e8f0;
    color: var(--azul-principal) !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(16, 48, 88, 0.1);
}
.btn-action-email:hover {
    background-color: #cbd5e1;
    transform: translateY(-1px);
}

/* Formulario de Disponibilidad */
.availability-form {
    background: #ffffff;
    border: 1px solid rgba(16, 48, 88, 0.08);
    border-radius: 12px;
    padding: 20px;
}
.availability-form .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #5a6b82;
    margin-bottom: 4px;
}
.availability-form .form-control {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 8px 12px;
    border: 1px solid rgba(16, 48, 88, 0.15);
}
.availability-form .form-control:focus {
    border-color: var(--dorado-premium);
    box-shadow: 0 0 0 0.25rem rgba(214, 162, 87, 0.15);
}
.btn-submit-form {
    background-color: var(--dorado-premium);
    color: var(--azul-principal);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}
.btn-submit-form:hover {
    background-color: #c49147;
    color: white;
}

/* Inclusiones */
.include-item {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.include-item i {
    color: #25D366;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Video Banner */
.video-banner-container {
    position: relative;
    width: 100%;
    height: 70vh;
    background-color: #000;
    overflow: hidden;
}

.video-banner-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 70vh;
    min-width: 124.44vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(16, 48, 88, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.experiencia-lista { list-style: none; padding-left: 0; }
.experiencia-lista li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.experiencia-lista li::before {
    content: "\f14a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--dorado-premium);
}

.img-premium {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(16, 48, 88, 0.15);
    object-fit: cover;
    width: 100%;
    height: 450px;
}

/* Cards Yates y Barcos */
.card-flota {
    border: 1px solid rgba(16, 48, 88, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}
.card-flota:hover { transform: translateY(-5px); }
.card-flota img { height: 250px; object-fit: cover; width: 100%; }

/* Estilos Carrusel Swiper */
.swiper { width: 100%; height: 400px; padding-bottom: 50px; }
.swiper-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.swiper-pagination-bullet-active { background: var(--azul-principal) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--azul-principal) !important; }

/* NUEVO FOOTER ANCHO Y PREMIUM */
.footer-premium {
    background-color: var(--azul-principal);
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 30px;
}
.footer-logo {
    max-height: 90px;
    margin-bottom: 25px;
    border-radius: 8px;
}
.footer-premium h5 {
    color: var(--dorado-premium);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--dorado-premium);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    background-color: var(--dorado-premium);
    color: var(--azul-principal);
    transform: translateY(-3px);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
}
.contact-info-item i {
    color: var(--dorado-premium);
    margin-top: 5px;
    width: 25px;
}
.contact-info-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}
.contact-info-item a:hover {
    color: var(--dorado-premium);
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Header Interno */
.header-charters {
    background: linear-gradient(rgba(16, 48, 88, 0.8), rgba(16, 48, 88, 0.95)), url('/assets/img/pesca/hatteras70/01.webp') no-repeat center center;
    background-size: cover;
    padding: 90px 0 60px 0;
    color: #fff;
    text-align: center;
}

/* Tarjeta Estilo Cuadrícula de 4 Columnas */
.boat-card-grid {
    background: #ffffff;
    border: 1px solid rgba(16, 48, 88, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.boat-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 48, 88, 0.1);
}

.boat-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.boat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.boat-card-grid:hover .boat-img-wrapper img {
    transform: scale(1.05);
}

.boat-badge-size {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--dorado-premium);
    color: var(--azul-principal);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.boat-card-body {
    padding: 20px;
}

.feature-tag-grid {
    background-color: var(--gris-suave);
    color: var(--azul-principal);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(16, 48, 88, 0.03);
}

.feature-tag-grid i {
    color: var(--dorado-premium);
}

/* Sección de Tarifas Inferior */
.boat-card-footer {
    background-color: var(--gris-suave);
    padding: 20px;
    border-top: 1px solid rgba(16, 48, 88, 0.05);
    text-center: center;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: -2px;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--azul-principal);
    font-family: 'Montserrat', sans-serif;
}

.price-period {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.btn-view-details {
    background-color: var(--azul-principal);
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgba(16, 48, 88, 0.1);
}

.btn-view-details:hover {
    background-color: var(--dorado-premium);
    box-shadow: 0 4px 10px rgba(214, 162, 87, 0.2);
}

/* Header Interno de Yates de Lujo */
.header-yachts {
    background: linear-gradient(rgba(16, 48, 88, 0.82), rgba(16, 48, 88, 0.95)), url('/assets/img/yates/azimuth98/01.webp') no-repeat center center;
    background-size: cover;
    padding: 90px 0 60px 0;
    color: #fff;
    text-align: center;
}

/* Tarjeta Estilo Cuadrícula de 4 Columnas */
.yacht-card-grid {
    background: #ffffff;
    border: 1px solid rgba(16, 48, 88, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yacht-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 48, 88, 0.1);
}

.yacht-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.yacht-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yacht-card-grid:hover .yacht-img-wrapper img {
    transform: scale(1.05);
}

.yacht-badge-size {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--dorado-premium);
    color: var(--azul-principal);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.yacht-card-body {
    padding: 20px;
}

.feature-tag-grid {
    background-color: var(--gris-suave);
    color: var(--azul-principal);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
    border: 1px solid rgba(16, 48, 88, 0.03);
}

.feature-tag-grid i {
    color: var(--dorado-premium);
}

.yacht-notes {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 10px;
    line-height: 1.3;
}

/* Sección de Tarifas Inferior */
.yacht-card-footer {
    background-color: var(--gris-suave);
    padding: 20px;
    border-top: 1px solid rgba(16, 48, 88, 0.05);
    text-align: center;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: -2px;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--azul-principal);
    font-family: 'Montserrat', sans-serif;
}

.price-period {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.btn-view-details {
    background-color: var(--azul-principal);
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgba(16, 48, 88, 0.1);
}

.btn-view-details:hover {
    background-color: var(--dorado-premium);
    box-shadow: 0 4px 10px rgba(214, 162, 87, 0.2);
}

