.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.vantagem-card {
    border: 2px solid #222;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.vantagem-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vantagem-destaque {
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    margin: 0;
    font-weight: 600;
}

.vantagem-destaque strong {
    font-size: 38px;
    color: #222;
    display: inline-block;
    margin-left: 8px;
    line-height: 1;
}

.vantagem-destaque sup {
    font-size: 16px;
    font-weight: 800;
    top: -0.8em;
}

.vantagem-texto {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.vantagem-subtexto {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.promocoes-header {
    margin-bottom: 25px;
}

.promocoes-title {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.promocoes-subtitle {
    font-size: 15px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-pagination {
    position: relative !important;
    margin-top: 30px !important;
    text-align: center;
}

.promo-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px !important;
    display: inline-block;
    border-radius: 50%;
}

.promo-pagination .swiper-pagination-bullet-active {
    background: #222;
    border: 2px solid #222;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #222;
}

.promo-prev {
    left: -5px !important;
}

.promo-next {
    right: -5px !important;
}

.promo-prev,
.promo-next {
    background: #fff;
    border: 2px solid #222;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
    color: #222 !important;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-prev:after,
.promo-next:after {
    font-size: 16px !important;
    font-weight: 900;
}

.promo-prev:hover,
.promo-next:hover {
    background: #f5f5f5;
    color: #1098C4 !important;
    border-color: #1098C4;
}

@media (max-width: 991px) {
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .vantagens-grid {
        grid-template-columns: 1fr;
    }

    .promocoes-title {
        font-size: 22px;
    }
}

.section-blog {
    padding: 60px 0;
    background: #f9f9f9;
}

.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

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

.blog-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.blog-date span {
    color: #fff !important;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.blog-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 12px;
    font-weight: 800;
    color: #1098C4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more i {
    transition: transform 0.2s;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

.section-transfers {
    padding: 80px 0;
    background: #fff;
}

.transfer-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f4f7f8;
    border-radius: 24px;
    padding: 50px;
}

.transfer-img-col {
    flex: 1;
    text-align: center;
}

.transfer-img-col img {
    max-width: 100%;
    height: auto;
    transform: scale(1.15);
}

.transfer-text-col {
    flex: 1.2;
}

.transfer-tag {
    display: inline-block;
    background: #222;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.transfer-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.transfer-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.transfer-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-cidade-transfer {
    background: #fff;
    border: 2px solid #e1e1e1;
    color: #444;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.btn-cidade-transfer:hover {
    border-color: #1098C4;
    color: #1098C4;
    background: #f0f9fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media(max-width: 991px) {
    .transfer-container {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .transfer-img-col img {
        transform: scale(1);
        max-width: 80%;
    }

    .transfer-text-col {
        text-align: center;
    }

    .transfer-buttons-grid {
        justify-content: center;
    }
}

.top-destination-image-bg {
    display: block;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.top-destination-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.3s ease;
}

.top-destination-image-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.top-destination-image-bg:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.top-destination-image-bg .relative {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.top-destination-image-bg h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}