.your-business {
    padding: 80px 0;
    background: #F8FAFC;
    overflow: hidden;
}

.container-business {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.title-your-business {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
}

.business-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.business-tabs-container::-webkit-scrollbar {
    display: none;
}

.business-tabs {
    position: relative;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.business-tab {
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0F172A;
    cursor: pointer;
    padding: 12px 0;
    transition: all 0.3s ease;
    opacity: 0.6;
    white-space: nowrap;
}

.business-tab:hover {
    opacity: 1;
}

.business-tab.active {
    opacity: 1;
}

.tab-underline {
    position: absolute;
    bottom: -2px;
    height: 4px;
    background: #FACC15;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.business-content {
    display: none;
}

.business-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.business-content-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.business-image {
    flex: 1;
    position: relative;
    margin-left: calc((100% - 1200px) / 2 * -1);
    width: calc(50% + ((100% - 1200px) / 2));
}

.business-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.business-info {
    flex: 1;
    padding-right: 40px;
}

.business-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #0F172A;
    margin-bottom: 24px;
    height: 150px;
}

.business-features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 32px;
    height: 230px;
}

.business-features li {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 12px;
    font-weight: 400;
}

.business-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-business-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 256px;
    height: 53px;
    background: #FACC15;
    border: none;
    border-radius: 32px;
    padding: 0 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0F172A;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-business-primary:hover {
    background: #EAB308;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.btn-business-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 239px;
    height: 53px;
    background: #F8FAFC;
    border: 2px solid #0F172A;
    border-radius: 32px;
    padding: 0 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0F172A;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-business-secondary:hover {
    background: #0F172A;
    color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1200px) {
    .business-image {
        margin-left: -20px;
        width: 50%;
    }
}

@media (max-width: 992px) {
    .business-content-inner {
        flex-direction: column;
        gap: 40px;
    }

    .business-image {
        margin-left: 0;
        width: 100%;
    }

    .business-info {
        padding-right: 0;
        text-align: center;
    }

    .business-buttons {
        justify-content: center;
    }

    .business-features {
        text-align: left;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .your-business {
        padding: 48px 0;
    }

    .title-your-business {
        font-size: 28px;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .business-tabs-container {
        margin-bottom: 32px;
        overflow-x: visible;
    }

    .business-tabs {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .business-tab {
        font-size: 16px;
        padding: 8px 0;
        white-space: normal;
    }

    .tab-underline {
        bottom: -1px;
        height: 3px;
    }

    .business-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-business-primary,
    .btn-business-secondary {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 0 20px;
    }

    .business-features li {
        font-size: 14px;
        text-align: left;
    }

    .business-description {
        font-size: 18px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .business-tabs {
        gap: 16px;
    }

    .business-tab {
        font-size: 14px;
    }

    .btn-business-primary,
    .btn-business-secondary {
        height: 48px;
        font-size: 13px;
    }
}