
    .search-bar-2 {
        margin-top: 20px;
        display: block;
        width: 90%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .search-container {
        display: flex;
        align-items: center;
        position: relative;
    }

    .input {
    flex: 1;
    font-size: 14px;
    padding: 5px 10px;
    padding-right: 2rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    opacity: 0.4;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    transition: opacity 0.3s ease;
}

    .input:focus {
        opacity: 1;
        outline: none;
    }

    .input::placeholder {
        opacity: 1;
        color: #555;
    }

    .search-icon {
        all: unset;
        position: absolute;
        right: 2rem;
        transform: translateY(-50%);
        font-size: 2rem;
        top: 1.7rem;
        cursor: pointer;
        z-index: 10;
    }

    .iconify {
        color: #888;
    }

    .logo img {
        max-width: 350px;
        height: auto;
        width: 100%;
        transition: transform 0.3s ease-in-out;
    }

    .logo img:hover {
        transform: scale(1.05);
    }

    .highlight-section {
        display: inline-block;
        justify-content: center;
        padding: 20px 40px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-width: 100%;
        min-height: auto;
        align-items: center;
        height: fit-content;
        
    }



.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 180px)); /* Itens com largura fixa */
    gap: 15px;
    justify-content: center;
    text-align: center;
    margin: 10px auto;
    max-width: 1200px;
}


    .destination-item {
        cursor: pointer;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .destination-item:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .destination-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .destination-text {
        padding: 15px;
        text-align: center;
        background-color: #f9f9f9;
    }

    .destination-title {
        font-size: 16px;
        font-weight: bold;
        margin: 5px 0;
        color: #333;
    }

    .destination-subtitle {
        font-size: 14px;
        color: #666;
    }

    .carrossel {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        align-items: flex-start;
        padding: 0 10px;
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .carrossel-item {
        cursor: pointer;
        display: flex;
        align-items: center;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        flex: 0 0 auto;
        margin: 5px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

    }
    .carrossel-item:hover {
        transform: scale(1.02); 
        box-shadow: 0 6px 10px rgba(64, 64, 64, 0.2);
    }

    .carrossel-img {
        width: 80px; /* Largura fixa */
        height: 80px; /* Altura fixa */
        border-radius: 8px 0 0 8px;
        flex-shrink: 0;
        object-fit: cover; /* Mantém a proporção da imagem e corta o excesso */
        object-position: center; /* Centraliza a área visível da imagem */
    }


    .carrossel-info {
        margin: 15px;
        flex-grow: 1;
    }

    .carrossel-info h3 {
        font-size: 0.9rem;
        margin: 0 0 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .carrossel-info p {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
    }

    header-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0; 
    }

    @media (max-width: 1024px) {
        .destinations-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    a:hover {
        text-decoration: none;
        color: inherit;
    }

    @media (max-width: 768px) {
        .destinations-grid {
            grid-template-columns: 1fr; /* Cada item ocupa uma linha inteira */
            gap: 20px; /* Maior espaçamento entre itens no celular */
            width: 100%;
        }

        .highlight-section {
            padding: 1rem, 1rem;
            position: relative;
            margin-left: 0px;
            margin-right: 0px;
            left: 0px;
            width: 100%;
        }

        .carrossel {
            flex-direction: column;
            align-items: center;
            padding: 0;
            width: 100%;
        }

        .carrossel-item {
            flex: 0 0 100%;
            max-width: 100%;
            margin: 0 auto 15px; 
  
        }

        .carrossel-item img{
            height: 6rem; 
            width: 7rem; 
        }
    }

    @media (max-width: 480px) {
        .destinations-grid {
            grid-template-columns: 1fr;
        }
        .carrossel-item {
            width: 100%;
            max-width: 100%;
        }
    }

