/* ============ Benefits Carousel ============ */

.c-main-footer .benefits-section {
    background-color: var(--primary-bg);
    padding: 5rem 0 4rem;
}

.c-main-footer .benefits-swiper {
    overflow: hidden;
}

/* Dots nativos do Swiper */
.c-main-footer .benefits-pagination {
    position: static !important;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.c-main-footer .benefits-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1.5px solid var(--secondary-color);
    opacity: 1;
    transition: var(--transition);
    border-radius: 50%;
    flex-shrink: 0;
}

.c-main-footer .benefits-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Slide com altura igual */
.c-main-footer .benefits-swiper .swiper-slide {
    height: auto;
}

/* Card */
.c-main-footer .benefit-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.c-main-footer .benefit-card__icon-wrap {
    width: 64px;
    height: 64px;
    border: 1.5px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.c-main-footer .benefit-card__icon-wrap i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.c-main-footer .benefit-card__title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.c-main-footer .benefit-card__text {
    font-family: var(--font-secondary);
    font-size: 0.82rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .c-main-footer .benefits-section {
        padding: 3.5rem 0 3rem;
    }
    .c-main-footer .benefit-card {
        padding: 2rem 1.2rem;
    }
    .c-main-footer .benefit-card__icon-wrap {
        width: 52px;
        height: 52px;
    }
    .c-main-footer .benefit-card__icon-wrap i {
        font-size: 1.1rem;
    }
}

/* Footer */

.c-main-footer.main-footer {
    background-color: #F4F4F4;
    color: var(--text-color);
    padding-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.c-main-footer .footer-top {
    padding-top: 5rem;
}

.c-main-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.c-main-footer .footer-logo {
    max-height: 50px;
    margin-bottom: 1.5rem;
}

.c-main-footer .logo-skeleton {
    max-width: 150px;
    height: 40px;
}

.c-main-footer .footer-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.c-main-footer .footer-title {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.c-main-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--secondary-color);
}

.c-main-footer .footer-links {
    list-style: none;
    padding: 0;
}

.c-main-footer .footer-links li {
    margin-bottom: 0.8rem;
}

.c-main-footer .footer-links a {
    text-decoration: none;
    color: #777;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c-main-footer .footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.c-main-footer .footer-socials {
    display: flex;
    gap: 1rem;
}

.c-main-footer .footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.c-main-footer .footer-social-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.c-main-footer .footer-contact p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-main-footer .footer-contact i {
    color: var(--secondary-color);
    width: 18px;
    text-align: center;
}

.c-main-footer .footer-help-btn {
    margin-top: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.c-main-footer .footer-help-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Middle Footer */
.c-main-footer .footer-middle {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #EDEDED;
}

.c-main-footer .footer-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.c-main-footer .footer-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.8rem;
    display: block;
}

.c-main-footer .payment-list,
.c-main-footer .seals-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.c-main-footer .payment-icon {
    font-size: 1.8rem;
    color: #777;
    transition: var(--transition);
}

.c-main-footer .payment-icon:hover {
    color: var(--secondary-color);
}

.c-main-footer .payment-note {
    font-size: 0.8rem;
    color: #666;
    font-family: var(--font-secondary);
    font-weight: 500;
    margin-left: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.c-main-footer .seal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 0.8rem;
    font-weight: 500;
}

.c-main-footer .seal-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Bottom Footer */
.c-main-footer .footer-bottom {
    background-color: #E2E2E2;
    padding: 1.5rem 0;
}

.c-main-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-main-footer .copyright {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}

.c-main-footer .footer-info-legal {
    flex: 1;
}

.c-main-footer .address-text {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.3rem;
}

.c-main-footer .footer-developer {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-main-footer .footer-platform-logo {
    max-height: 14px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
    display: block;
}

.c-main-footer .footer-developer a:hover .footer-platform-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .c-main-footer .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .c-main-footer .footer-middle-content {
        flex-direction: column;
        align-items: flex-start;
    }


    .c-main-footer .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .c-main-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .c-main-footer .footer-about {
        text-align: center;
    }

    .c-main-footer .footer-socials {
        justify-content: center;
    }

    .c-main-footer .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .c-main-footer .footer-col {
        text-align: center;
    }

    .c-main-footer .footer-contact p {
        justify-content: center;
    }

    .c-main-footer .payment-list,
    .c-main-footer .seals-list {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
}