/**
 * Section - O Futuro do Varejo Styles
 * Two-column section with image on left and dark content on right, with overlay card
 *
 * @package SeedDigital
 * @since 1.0.0
 */

/* ============================================
   Section Container
   ============================================ */
.section-future-retail {
    padding: 0;
    background-color: #ffffff;
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

/* ============================================
   Wrapper - Two Column Layout
   ============================================ */
.future-retail__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    min-height: 600px;
    background: #E0F2FE;
    border-radius: 0 24px 24px 0;
    overflow: visible;
}

/* ============================================
   Left Column: Image
   ============================================ */
.future-retail__image-column {
    position: relative;
    overflow: visible;
    border-radius: 0;
    max-width: 826px;

}

.future-retail__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;

}

.future-retail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-top: -88px;
    z-index: 3;
    position: relative;
    border-radius: 32px;
}

/* ============================================
   Overlay Card - Posicionado à direita da imagem
   ============================================ */
.future-retail__overlay-card {
    position: absolute;
    bottom: -120px;
    left: calc(50% - 410px); /* Posiciona à direita da imagem (50% do wrapper menos offset) */
    background: transparent;
    z-index: 20;
    pointer-events: none;
    transform: translateX(0); /* Permite ajuste fino com left */
}

.future-retail__overlay-icon {
    
    display: block;
}

.future-retail__overlay-icon img {
    width: 100%;

    object-fit: contain;
    display: block;
}

.future-retail__overlay-text {
    display: none;
}

/* ============================================
   Right Column: Dark Content
   ============================================ */
.future-retail__content-column {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    padding: 193px 0 88px;
    box-sizing: border-box;
}

.future-retail__content {
    display: flex;
    flex-direction: column;
    max-width: 675px;
}

.future-retail__tag {
    font-family: 'Be Vietnam', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 60px;
    color: #667085;
    margin: 0;
}
.future-retail__title{
    color: #000000;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Be Vietnam', sans-serif;
    margin-bottom: 40px;
}

.future-retail__description {
    font-family: 'Be Vietnam', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: #667085;
    margin-bottom: 64px;

}

.future-retail__description p {
    margin: 0 0 16px 0;
}

.future-retail__description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CTA Button
   ============================================ */
.future-retail__cta {
    border: 1px solid #0BA5EC;
    width: 321px;
    height: 74px;
    font-size: 14px;
    letter-spacing: -2%;
    font-weight: 600;
    color: #0BA5EC;
    border-radius: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.future-retail__cta:hover {
    background: transparent;
    color: #0BA5EC;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1600px) {
    .future-retail__image-column {
        max-width: 100%;
    }

    .future-retail__content-column {
        padding: 180px 60px 80px;
    }
}

@media (max-width: 1400px) {
    .future-retail__content-column {
        padding: 160px 50px 70px;
    }

    .future-retail__title {
        font-size: 50px;
    }

    .future-retail__description {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .future-retail__wrapper {
        width: 100%;
        margin: 0;
    }

    .future-retail__content-column {
        padding: 140px 40px 60px;
    }

    .future-retail__content {
        max-width: 100%;
    }

    .future-retail__title {
        font-size: 46px;
    }

    .future-retail__description {
        font-size: 21px;
        margin-bottom: 56px;
    }

    .future-retail__overlay-card {
        left: calc(50% - 350px);
    }
}

@media (max-width: 1024px) {
    .future-retail__content-column {
        padding: 120px 36px 56px;
    }

    .future-retail__title {
        font-size: 42px;
        margin-bottom: 36px;
    }

    .future-retail__description {
        font-size: 20px;
        margin-bottom: 52px;
    }

    .future-retail__tag {
        font-size: 18px;
    }

    .future-retail__cta {
        width: 280px;
        height: 68px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .future-retail__wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 0;
    }

    .future-retail__image-column {
        border-radius: 0;
    }

    .future-retail__image {
        margin-top: 0;
        border-radius: 0;
    }

    .future-retail__image-wrapper {
        min-height: 400px;
    }

    .future-retail__content-column {
        padding: 60px 40px;
        border-radius: 0;
    }

    .future-retail__title {
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 32px;
    }

    .future-retail__description {
        font-size: 19px;
        margin-bottom: 48px;
    }

    .future-retail__overlay-card {
        display: none;
    }

    .future-retail__overlay-icon img {
        max-width: 150px;
        max-height: 350px;
    }

    .future-retail__cta {
        width: 260px;
        height: 64px;
    }
}

@media (max-width: 768px) {
    .future-retail__image-wrapper {
        min-height: 350px;
    }

    .future-retail__content-column {
        padding: 56px 32px;
    }

    .future-retail__title {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 28px;
    }

    .future-retail__description {
        font-size: 18px;
        margin-bottom: 44px;
    }

    .future-retail__tag {
        font-size: 17px;
        line-height: 56px;
    }

    .future-retail__cta {
        width: 240px;
        height: 60px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .section-future-retail {
        padding: 0;
    }

    .future-retail__image-wrapper {
        min-height: 300px;
    }

    .future-retail__content-column {
        padding: 48px 24px;
    }

    .future-retail__content {
        gap: 24px;
    }

    .future-retail__tag {
        font-size: 16px;
        line-height: 52px;
    }

    .future-retail__title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .future-retail__description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .future-retail__overlay-card {
        bottom: 16px;
        left: 16px;
    }

    .future-retail__overlay-icon img {
        max-width: 120px;
        max-height: 120px;
    }

    .future-retail__cta {
        width: 100%;
        max-width: 280px;
        height: 56px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .future-retail__image-wrapper {
        min-height: 250px;
    }

    .future-retail__content-column {
        padding: 40px 20px;
    }

    .future-retail__tag {
        font-size: 15px;
        line-height: 48px;
    }

    .future-retail__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .future-retail__description {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 36px;
    }

    .future-retail__overlay-card {
        bottom: 12px;
        left: 12px;
    }

    .future-retail__overlay-icon img {
        max-width: 100px;
        max-height: 100px;
    }

    .future-retail__cta {
        height: 52px;
        font-size: 11px;
    }
}
