.promo-solutions-section {
    padding: 80px 20px;
    background-color: #000033;
}

.promo-solutions-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: stretch;
}

.column {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 45px 35px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.column:hover {
    border-color: rgba(255, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.section-title {
    font-size: 1.7rem; /* Reduzido 10% */
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.promo-subtitle {
    font-size: 0.9rem; /* Reduzido 10% */
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* SWIPER UNIVERSAL */
.plan-carousel {
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin: 15px auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* PAGINAÇÃO SWIPER */
.swiper-pagination-bullet {
    background: #ff0000 !important;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* GRUPO DE BOTÕES CENTRALIZADOS */
.promo-content, .footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* BOTÃO DE AÇÃO PREMIUM */
.btn-action {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 45px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: 0.3s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 15px rgba(255, 0, 0, 0.2);
    width: fit-content;
}

.btn-action:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

/* LINK DE BAIXO */
.btn-view-all {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.63rem; /* Reduzido 10% */
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-view-all:hover {
    color: #ff0000;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .promo-solutions-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .column {
        width: 100%;
        max-width: 500px;
    }
}