/* Estilos generales */

@media (max-width: 991px) {
    body {
        padding-top: 50px !important;
    }
}
.home-container{
   
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.btn-secondary{
    border-color: #fe880000 !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.barcos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centra los cards horizontalmente */
}

/* Card individual */
.barco-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column; 
    text-align: left;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 500px; 
    padding: 10px;
}

/* Efecto hover */
.barco-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Imagen del card */
.barco-card .responsive-image {
    width: 100%;
    height: 200px;
    overflow: hidden; 
}

.barco-card .responsive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Título del card */
.barco-card h2 {
    font-size: 1.5rem;
    margin: 15px;
    color: #333;
}

/* Contenido del card */
.barco-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 15px;
    line-height: 1.8;
    word-wrap: break-word; 
    
}

/* Truncar texto solo en itinerario */
.barco-card p.itinerario {
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    white-space: normal; 
    height: auto;
}

/* Precio */
.barco-card h3 {
    font-size: 1.2rem;
    margin: 10px 15px 5px;
    color: #222;
}

.barco-card ul {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.barco-card ul li {
    font-size: 1rem;
    font-weight: bold;
    color: #007bff;
    
}

/* Botón de reserva */
.barco-card a.btn {
    margin: 0; 
    padding: 5px 5px;
    text-align: center;
    background-color: #ffffff09;
    color: #007bff;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    margin-top: auto; 
    border: 1px solid;
    

   
}

.barco-card a.btn:hover {
    background-color: #a1c6ee26;
    color: rgba(0, 0, 0, 0.596);
    border: none;
}

/* Ajuste responsivo para pantallas más grandes */
@media (min-width: 769px) {
    .barco-card {
        height: 500px; 
    }
}

/* Paginación */
.pagination {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination a {
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.pagination a:hover {
    background-color: #0056b3;
}

.pagination span {
    padding: 10px 15px;
    background-color: #f1f1f1;
    border-radius: 5px;
    font-weight: bold;
}

/* Responsividad */
@media (max-width: 768px) {
    .barcos-container {
        flex-direction: column; 
        align-items: center;
    }

    .barco-card {
        max-width: 90%; 
    }
}



@media (max-width: 576px) {
        footer .row > div {
            flex: 0 0 auto;
            width: auto;
            margin-right: 1rem;
        }
    
        footer .row {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    
        footer .row::-webkit-scrollbar {
            display: none;
        }
    
        footer .text-uppercase {
            font-size: 0.8rem;
        }
    
        footer p, footer a {
            font-size: 0.8rem;
        }
    }
    
    @media (max-width: 576px) {
        .me-5 span {
            font-size: 0.875rem;
        }
    }
    
    
    .license-container img {
        min-width: 65px;
        max-width: 165px;
        height: auto;
    }
    
    @media (max-width: 576px) {
        .license-container {
            flex-direction: column;
            align-items: center;
        }
    
        .license-container img {
            max-width: 100px;
            margin-bottom: 0.5rem;
        }
    
        .license-container p {
            margin-left: 0;
            text-align: center;
        }
    }
    
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-links a {
        text-decoration: none;
        color: white !important;
        padding: 0 5px;
        position: relative;
    }
    
    .footer-links a:not(:last-child)::after {
        content: '|';
        color: white !important;
        padding-left: 5px;
    }
    
    .text-withe {
        color: white !important;
    }



    @media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}




/* Contenedor de la imagen */
.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* La imagen dentro del contenedor */
.image {
    width: 100%;
    
    object-fit: cover; 
}

/* Estilo del texto */
h3 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.toggle-btn {
  background-color: #ffffff00; 
  color: rgb(0, 81, 255);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  padding-top: 5px;
}

.toggle-btn:hover {
  transform: translateY(-2px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.toggle-btn:active {
  transform: translateY(2px); 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

/* Estilo para el contenido desplegable */
.content {
    display: none; 
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    animation: typing 2s steps(40) 0s forwards, blinkCaret 0.75s step-end infinite;
}

/* Efecto de escritura */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Efecto de parpadeo del cursor */
@keyframes blinkCaret {
    50% {
        border-color: transparent;
    }
}

/* Para pantallas pequeñas */
@media (max-width: 767px) {
    .toggle-btn {
        font-size: 16px;
    }

    .content {
        font-size: 14px;
    }
}











.floating-ad-container {
    position: fixed;
    top: 350px;  
    right: 0;
    padding-right: 15px;
    width: 200px; 
    height: 150px; 
    z-index: 9999;  
    background-color: rgba(255, 255, 255, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Estilo para la imagen del gif */
.floating-ad {
    width: 100%;  
    height: auto;
    border-radius: 8px;
}

/* Asegúrate de que el contenedor principal ocupe el 100% del ancho */
.home-container {
    width: 100%;
}




/* Estilo para el botón fijo que aparece en la parte derecha */
.promo-btn {
    position: fixed;
    right: 0;  
    top: 50%;  
    transform: translateY(-50%); 
    background-color: #808080;  
    color: #ffffff; 
    width: 30px; 
    height: 85px; 
    font-size: 12px;
    border: 1px solid #fff;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    writing-mode: vertical-lr; 
    
}

.promo-btn span {
    display: block; 
    margin: 0;
    padding: 2px 0; 
    transform: rotate(180deg); 
}


/* Contenedor de la promoción que se desliza desde el lado derecho */
.promo-container {
    position: fixed;
    top: 0;
    right: -300px;  
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: right 0.5s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}

.promo-content {
    width: 100%;
    text-align: center;
}

.promo-image {
    width: 80%;
    height: 580px;
    margin-top: 80px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.promo-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Botón para cerrar el contenedor */
.promo-container button {
    position: absolute;
    top: 60px;  
    left: 10px;  
    background-color: transparent;
    color: #18171786; 
    font-size: 25px; 
    font-weight: bold;  
    padding: 0;
    border: none;
    cursor: pointer;
    z-index: 10000;  
    line-height: 1; 
    text-align: center;
    transform: rotate(45deg); 
}
/* Efecto al pasar el ratón */
.promo-container button:hover {
    color: #1a5379; 
}

/* Estilo para pantallas móviles */
@media (max-width: 768px) {
    .promo-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .promo-image {
        width: 80%;
        height: 380px;
        margin-top: 80px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
}








.promo-btn1 {
    position: fixed;
    right: 0;  
    top: 30%;  
    transform: translateY(-50%); 
    background-color: #808080; 
    color: #ffffff; 
    width: 30px; 
    height: 85px; 
    font-size: 12px;
    border: 1px solid #fff;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    writing-mode: vertical-lr;
    
}

.promo-btn1 span {
    display: block; 
    margin: 0; 
    padding: 2px 0; 
    transform: rotate(180deg); 
}

/* Contenedor de la promoción que se desliza desde el lado derecho */
.promo-container1 {
    position: fixed;
    top: 0;
    right: -300px;  
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: right 0.5s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
   
    
    
}

.promo-content1 {
    width: 100%;
    
}

.promo-image1 {
    width: 80%;
    height: 580px;
    margin-top: 80px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.promo-container1 p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Botón para cerrar el contenedor */
.promo-container1 .close-windows {
    position: absolute;
    top: 0px;  
    left: 10px; 
    background-color: transparent;
    color: #007bff;
    font-size: 25px;  
    font-weight: bold; 
    padding: 0;
    border: none;
    cursor: pointer;
    z-index: 10000;  
    line-height: 1; 
    text-align: center;
    transform: rotate(45deg); 
}


/* Efecto al pasar el ratón */
.promo-container1 button:hover {
    color: #1a5379; 
}

/* Estilo para pantallas móviles */
@media (max-width: 768px) {
    .promo-container1 {
        width: 80%;
    }
}






form {
    flex-direction: column;
    align-items: center;
    padding: 5px;
    background-color: #f4f4f4;
    border-radius: 10px;
     
    width: 100%;
    max-width: 400px; 
}

.filters {
    display: flex;
    gap: 15px; 
    justify-content: flex-start;  
    flex-wrap: nowrap; 
    margin-bottom: 20px;
    padding-top: 2px;
}

/* Filtro de precios */
.filters label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}


.filters input {
    
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.filters input[type="number"] {
    -moz-appearance: textfield;
    padding: 10px;
    font-size: .8em;
    border-radius: 15px;
    border: 1px solid #007bff;
    width: 100px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

input[type="number"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px #66a6e92e;
    background-color: #ffffff;
}



/* Estilo de los placeholders */
input[type="number"]::placeholder {
    color: #aaa;
}



input[type="date"] {
    padding: 10px;
    font-size: .8em;
    border-radius: 15px;
    border: 1px solid #007bff;
    width: 100px;  
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(39, 173, 235, 0.1);
    color: #aaa;
}

/* Estilo de los inputs cuando están enfocados */
input[type="date"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px #80bbff;
    background-color: #ffffff;
}

/* Estilo de los placeholders */
input[type="date"]::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Estilo adicional para los inputs */
input[type="date"]:hover {
    border-color: #007bff;
}

/* Contenedor del select */
.filters select {
    padding: 10px;
    font-size: .8em;
    border-radius: 15px;
    border: 1px solid #007bff;
    background-color: #f9f9f9;
    width: 90%; 
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilo cuando el select está enfocado */
.filters select:focus {
    outline: none;
    border-color: #007bff; 
    box-shadow: 0 0 5px #2d76c4;
    background-color: #ffffff;
}

/* Estilo de las opciones del select */
.filters select option {
    padding: 10px;
    font-size: .8em;
}

/* Estilo cuando el select tiene un hover */
.filters select:hover {
    border-color: #007bff; 
}

/* Estilo del select en dispositivos más pequeños */
@media (max-width: 768px) {
    .filters select {
        width: 100%; 
    }
}





/* Botón de aplicar filtros */
button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilo para las migas de pan (breadcrumbs) */
.breadcrumbs {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
    text-align: left;
 
    margin-bottom: 5px;
}

.breadcrumbs span {
    margin-right: 5px;
}


.close {
    font-weight: bold;
    color: rgb(0, 0, 0);
    cursor: pointer;
    margin-left: 5px;
    text-decoration: none;
    font-size: .8rem;
    align-items: flex-start;
    font-size: 1.5rem;
    transform: rotate(45deg);
    margin-top: -7px;
}

.close:hover {
    color: darkred;
}







.explore-header {
font-family: "Arial, sans-serif";
  font-size: 2.5vw; 
  font-weight: 700; 
  text-align: center; 
  color: #333; 
  text-transform: uppercase;
  letter-spacing: 2px; 
  line-height: 1.3; 
  position: relative;
  margin-top: 10px; 
  padding: 20px; 
  white-space: nowrap; 
}

.explore-header .highlight {
  background: linear-gradient(to right, #f7a400, #e02b2b); 
  color: white; 
  padding: 0 10px; 
  border-radius: 5px; 
  font-weight: 900; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease; 
}

.explore-header .highlight:hover {
  transform: scale(1.1); 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

/* Asegura que el texto se ajuste bien en dispositivos más pequeños */
@media (max-width: 768px) {
  .explore-header {
    font-size: 4.1vw; 
  }
}

@media (max-width: 480px) {
  .explore-header {
    font-size: 3.1vw; 
  }
}



h5 {
    color:#007bff;
}