/* Infotourist Guide Explorer styles */

.infotourist-guide-explorer-wrap {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1200px;
}

.guide-category-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Botones de categoría */
.guide-cat-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #484848;
    transition: color .2s;
}

.guide-cat-btn.active,
.guide-cat-btn:hover {
    color: #28bfb3;
}

/* Contenedor de tarjetas */
.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
}

.guide-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.guide-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .3s;
}

.guide-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(219,48,79,.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.guide-card-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin: 0 20px 15px;
}

.guide-download-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    color: #db304f;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: background .2s;
}

.guide-download-btn:hover {
    background: #f0f0f0;
}

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

.guide-card:hover .guide-card-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-category-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .guide-cat-btn {
        font-size: 16px;
    }

    .guide-card {
        height: 260px;
    }
} 