img.fixed-size {
    width: 200px; /* Ancho fijo */
    height: 150px; /* Alto fijo */
    object-fit: cover; /* Mantener proporción, recortando si es necesario */
    border-radius: 8px; /* Opcional: añadir esquinas redondeadas */
}

 img.fixed-size:hover {
            transform: scale(1.05); /* Agranda ligeramente la imagen al pasar el ratón por encima */
        }

 .square-image {
            width: 200px; /* Tamaño deseado para el lado de la miniatura */
            height: 2000px;
            object-fit: cover;
            border: 1px solid ##ccc; /* Color del borde */
            border-radius: 10px; /* Esquinas redondeadas */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra elegante */
            transition: transform 0.3s ease-in-out;
            image-rendering: -webkit-optimize-contrast; /* Mejora la nitidez en navegadores webkit */
            image-rendering: crisp-edges; /* Mejora la nitidez en otros navegadores */
        }

        .square-image:hover {
            transform: scale(1.05); /* Agranda ligeramente la imagen al pasar el ratón por encima */
        }



.tab-container {
    width: 100%;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ccc;
}

.tab-item {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    text-align: center;
    flex: 1;
    transition: background-color 0.3s ease;
}

.tab-item.active {
    background-color: #fff;
    border-bottom: 2px solid #007bff;
    color: #007bff;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}


  .tour-ratingind {
    display: flex;
    align-items: center;
    margin-bottom: 10px;  /* Espacio entre las filas */
}


.circlesind {
    display: flex;
    margin-right: 10px;
}

.circleind {
    width: 10px;  /* Ancho del círculo */
    height: 10px;  /* Alto del círculo */
    border-radius: 50%;  /* Forma circular */
    background-color: lightgray;  /* Color para los círculos vacíos */
    margin-right: 5px;
    position: relative;
}

.filledind {
    background-color: pink;  /* Color para los círculos llenos */
}

.filled-halfind {
    background-color: lightgray;
}

.filled-halfind::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;  /* Llena solo la mitad del círculo */
    height: 100%;
    background-color: pink;  /* Color de la mitad llena */
    border-radius: 50%;
}

       .circle {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: lightgray;
            margin-right: 5px;
            position: relative;
        }
        .circle.filled {
            background-color: #ff1493; /* Rosa intenso */
        }
        .circle.filled-half {
            background: linear-gradient(90deg, #ff1493 50%, lightgray 50%);
        }
        .circles {
            display: flex;
        }

        .card-img-container {
            position: relative;
        }
        .tour-name {
            position: absolute;
            bottom: 0px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
            color: white; /* Color del texto */
            padding: 5px 10px;
            border-radius: 5px;
        }


/* mejor calificado insignia */
.card-img-container {
    position: relative;
}

.badge-best-tour {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 152, 0, 0.8); /* Fondo semitransparente */
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.badge-best-tour i {
    margin-right: 8px;
    color: #ffd700; /* Dorado para la medalla */
    font-size: 16px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 87, 34, 0.8);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(255, 87, 34, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 87, 34, 0.8);
    }
}


