  /* Estilo do Container Principal */
    .destinos-container {
        width: 100%;
        margin: 20px 0;
        position: relative;
    }

    /* Grid de Destinos */
    .destinos-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        gap: 20px;
        padding: 15px 5px 25px;
    }

    .destinos-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }

    /* Card de Destino */
    .destino-card {
        position: relative;
        width: 300px;
        height: 200px;
        border-radius: 15px;
        overflow: hidden;
        flex: 0 0 auto;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .destino-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Imagem do Destino */
    .destino-image {
        width: 100%;
        height: 100%;
    }

    .destino-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: contrast(1.1);
        transition: transform 0.5s ease;
    }

    .destino-card:hover .destino-image img {
        transform: scale(1.05);
    }

    /* Overlay de Informações */
    .destino-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
        color: white;
        padding: 20px 15px 15px;
        border-radius: 0 0 15px 15px;
        transition: height 0.3s ease;
    }

    .destino-card:hover .destino-overlay {
        height: auto;
    }

    /* Título do Destino */
    .destino-title {
        color: white;
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 5px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    /* Localização do Destino */
    .destino-location {
        font-size: 0.85rem;
        margin-bottom: 8px;
        opacity: 0.9;
    }

    /* Descrição do Destino */
    .destino-description {
        font-size: 0.8rem;
        line-height: 1.4;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .destino-card:hover .destino-description {
        opacity: 1;
    }

    .full-text {
        display: none;
    }

    .toggle-text {
        color: #4ecbdd;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.75rem;
        margin-left: 5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
        transition: color 0.2s ease;
    }

    .toggle-text:hover {
        color: #ffffff;
    }

    /* Mensagem quando não há resultados */
    .no-results {
        width: 100%;
        text-align: center;
        padding: 30px;
        color: #666;
    }

    /* Responsividade */
    @media screen and (min-width: 768px) {
        .destinos-grid {
            padding: 20px 10px 30px;
        }
        
        .destino-card {
            width: 320px;
            height: 220px;
        }
        
        .destino-title {
            font-size: 1.3rem;
        }
        
        .destino-description {
            font-size: 0.85rem;
        }
    }

    @media screen and (min-width: 1200px) {
        .destinos-grid {
            gap: 25px;
            padding: 25px 15px 35px;
        }
        
        .destino-card {
            width: 350px;
            height: 230px;
        }
    }

    @media screen and (max-width: 767px) {
        .destinos-grid {
            gap: 15px;
        }
        
        .destino-card {
            width: 250px;
            height: 180px;
        }
        
        .destino-overlay {
            padding: 15px 12px 12px;
        }
        
        .destino-title {
            font-size: 1.1rem;
        }
        
        .destino-location {
            font-size: 0.8rem;
        }
        
        .destino-description {
            font-size: 0.75rem;
        }
    }

    @media screen and (max-width: 480px) {
        .destino-card {
            width: 220px;
            height: 160px;
        }
        
        .destino-title {
            font-size: 1rem;
        }
    }