/* GiftCardPro - Remote Posts Slider */
.gcp-remote-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    overflow: hidden;
}

.gcp-post-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gcp-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.gcp-post-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.gcp-post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gcp-post-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F3AA32;
    z-index: 3;
}

/* Badge da Data */
.gcp-post-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    min-width: 35px;
}

/* Badge da Categoria */
.gcp-post-category-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #F3AA32;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.gcp-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gcp-post-card:hover .gcp-post-image img {
    transform: scale(1.08);
}

.gcp-post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 180px;
}

.gcp-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #1a202c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcp-post-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcp-read-more {
    color: #F3AA32;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    transition: color 0.3s ease;
    text-align: center;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcp-post-card:hover .gcp-read-more {
    color: #e09925;
}

/* Swiper Navigation - Removida */
.gcp-remote-swiper .swiper-button-next,
.gcp-remote-swiper .swiper-button-prev {
    display: none;
}

/* Swiper Pagination */
.gcp-remote-swiper .swiper-pagination {
    bottom: -10px;
}

.gcp-remote-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.gcp-remote-swiper .swiper-pagination-bullet-active {
    background: #007cba;
    transform: scale(1.2);
}

/* Estados de carregamento/erro */
.gcp-remote-swiper p {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    margin: 0;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .gcp-remote-swiper {
        padding: 15px 0;
    }
    
    .gcp-post-image {
        height: 200px;
    }
    
    .gcp-post-content {
        padding: 15px;
        min-height: 140px;
    }
    
    .gcp-post-title {
        font-size: 1rem;
    }
    
    .gcp-post-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    /* Setas removidas em mobile também */
    .gcp-remote-swiper .swiper-button-next,
    .gcp-remote-swiper .swiper-button-prev {
        display: none;
    }
    
    /* Ajustes dos badges no mobile */
    .gcp-post-date-badge {
        top: 10px;
        left: 10px;
        padding: 6px 8px;
        font-size: 10px;
        min-width: 30px;
    }
    
    .gcp-post-category-badge {
        bottom: 15px;
        padding: 6px 12px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .gcp-post-image {
        height: 180px;
    }
    
    .gcp-post-content {
        padding: 12px;
        min-height: 120px;
    }
    
    .gcp-post-title {
        font-size: 0.95rem;
    }
    
    .gcp-remote-swiper .swiper-button-next,
    .gcp-remote-swiper .swiper-button-prev {
        display: none; /* Oculta setas em telas muito pequenas */
    }
}