/* Estilos para las nuevas tarjetas de partner */
.tour-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tour-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card__img img {
    transform: scale(1.05);
}

.tour-card__tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--theme-color, #ff5e14);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.tour-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tour-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-card__title a:hover {
    color: var(--theme-color, #ff5e14);
}

.tour-card__location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tour-card__social {
    display: flex;
    gap: 10px;
}

.tour-card__social .social-btn {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.tour-card__social .social-btn:hover {
    color: var(--theme-color, #ff5e14);
}

.tour-card--publicidad .tour-card__content {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Estilos para la vista de lista horizontal */
.tour-card--list {
    flex-direction: row;
}

.tour-card--list .tour-card__img {
    height: auto;
    width: 250px;
    flex-shrink: 0;
}

.tour-card--list .tour-card__content {
    flex-grow: 1;
}

/* Estilos para Lazy Loading */
img.lazy-img {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

img.lazy-loaded {
  opacity: 1;
}

/* Skeleton Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton-loader {
  background-color: #e0e0e0;
  background-image: linear-gradient(90deg, #e0e0e0, #f5f5f5, #e0e0e0);
  background-size: 2000px 100%;
  background-repeat: no-repeat;
  animation: shimmer 2s infinite linear;
}