
/* BANNER */
.banner-fabricator {
    background: url('/assets_2025/images/fabricator/Initial_BG.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
}
/* END BANNER */

/* ABAS SECTION */
.nav-pills .nav-link {
    border-radius: 100px;
    background-color: transparent;
    color: var(--bs-light);
    padding: 8px 20px;
    transition: 0.3s;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
}

    .nav-pills .nav-link.active {
        background: #0D0D0D;
        color: var(--bs-warning) !important;
    }


.nav-tabs {
    border-bottom: 0px solid transparent;
}

    .nav-tabs .nav-link:hover {
        background-color: transparent !important;
        border-color: transparent !important;
    }

    .nav-tabs .nav-link.active {
        background-color: transparent !important;
        border-color: transparent !important;
    }

.linha-horiz {
    width: 2px;
    height: 26px;
    background-color: #494949;
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 6px;
    background-color: #2222228C;
}

.img-monitor {
    position: absolute;
    top: 52%;
    right: 5%; /* em vez de 38px, usa % relativo */
    transform: translateY(-50%); /* centraliza verticalmente */
    width: 40%; /* usa % relativo ao container */
    height: auto;
    max-width: 250px; /* opcional: limite de tamanho */
}


#banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    transform-origin: center;
}


/* DXF */
#orderContainer {
    background-image: url(/assets_2025/images/distributor/bannerOrder.png);
}

#dxfContainer {
    background-image: url(/assets_2025/images/fabricator/Banner_Drawing.png);
}

#crmContainer {
    background-image: url(/assets_2025/images/distributor/bannerCRM.png);
}

#invContainer {
    background-image: url(/assets_2025/images/distributor/bannerInv.png);
}

#newsletterBG {
    background-image: url(/assets_2025/images/distributor/bannerNews.png);
}

#dxfContainer, #orderContainer, #crmContainer, #invContainer, #newsletterBG {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px;
}

@media (max-width: 768px) {
    #crmContainer {
        background-image: url(/assets_2025/images/distributor/bannerCRMmobile.png);
    }

    #orderContainer {
        background-image: url(/assets_2025/images/distributor/bannerOrdermobile02.png);
    }

    #dxfContainer, #orderContainer, #crmContainer, #invContainer, #newsletterBG {
        min-height: 294px;
    }
}

@media (max-width: 480px) {
    #dxfContainer, #orderContainer, #crmContainer, #invContainer, #newsletterBG {
        min-height: 224px;
    }
}

/* END: DXF */

/* FREE TRIAL */
.custom-offset {
    padding-left: 32px;
    padding-right: 32px;
}

.btn-large {
    padding: 12px 28px;
    font-size: 14px;
}

/* ===== TABLET (>=768px) ===== */
@media (min-width: 768px) {
    .custom-offset {
        padding-left: 40px;
        padding-right: 40px;
    }

    .download-mobile {
        max-width: 140px;
    }
}

@media (min-width: 1024px) {
    .custom-offset {
        padding-left: 66px;
        padding-right: 66px;
    }

    .btn-large {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    .custom-offset {
        padding-left: 160px;
        padding-right: 160px;
    }
}

/* END: FREE TRIAL */
.bg-option {
    background: #333333;
}

.select-menu-primary {
    border-color: transparent;
    background-color: #0D0D0D;
    color: var(--bs-light);
    width: 100% !important;
    padding: 17px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' stroke='%23FEFEFE' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'> <polyline points='4 6 8 10 12 6'/> </svg>");
    background-repeat: no-repeat;
    background-size: 1rem;
}

.form-select:focus {
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); /* warning com transparência */
    outline: 0; /* remove contorno padrão */
}


@media (max-width: 768px) {
    .overflow-adjust {
        flex: 0 0 100%;
        max-width: 86%;
    }

    .overflow-md-adjust {
        flex: 0 0 calc(90% - 1rem);
    }

    .bg-projects {
        background-image: url(/assets_2025/images/fabricator/backgroundbanner.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 50px 20px 0 20px;
        margin: 0;
        width: 100%;
    }
    /* Container para o texto e o botão */
    .text-wrapper {
        position: relative;
    }

        /* Estilo para truncar o texto e adicionar os três pontinhos */
        .text-wrapper p {
            display: -webkit-box;
            /*-webkit-line-clamp: 1;*/ /* Número de linhas para truncar */
            /*-webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;*/
            transition: all 0.3s ease-in-out;
        }

        /* Classe que será adicionada pelo JavaScript para expandir o texto */
        .text-wrapper.expanded p {
            -webkit-line-clamp: unset;
            overflow: visible;
        }

        /* Mostra o link "show more" apenas se o texto for truncado */
        .text-wrapper .show-more {
            display: block; /* Mostra o botão "show more" */
            margin-top: 0.5rem;
            transition: opacity 0.3s ease-in-out;
        }

        /* Esconde o link "show more" quando o texto for expandido */
        .text-wrapper.expanded .show-more {
            display: none;
        }

    .menu-overflow {
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100% !important;
    }
}


.banner-website {
    background: url('/assets_2025/images/fabricator/backgroundbanner.png') no-repeat center center;
    padding: 50px;
    border-radius: 15px;
}


.accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FEFEFE' stroke-linecap='round' stroke-linejoin='round'%3e %3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FEFEFE' stroke-linecap='round' stroke-linejoin='round'%3e %3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 175, 31, 0);
    --bs-accordion-active-color: #FFAF1F;
    --bs-accordion-active-bg: #0D0D0D;
    --bs-accordion-btn-color: #FFAF1F;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-border-color: #0D0D0D;
    --bs-accordion-color: var(--bs-light);
    --bs-accordion-bg: #0D0D0D;
}

.accordion-flush > .accordion-item {
    border-radius: 8px;
    padding: 12px;
}


/* 3D KITCHEN */
.banner-section1-kit {
    background: url(/assets_2025/images/fabricator/backgroundbanner.png) no-repeat center center;
    padding: 40px 40px 0px;
}


.badge-custom {
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 14px;
}

.env-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.env-button {
    width: 100%;
    margin-bottom: 10px;
    background-color: #222;
    color: var(--bs-light);
    border: none;
    padding: 12px;
    border-radius: 6px;
    text-align: left;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .env-button:hover {
        background-color: #333;
    }

.env-active {
    background-color: var(--bs-warning) !important;
    color: #000 !important;
}

    .env-active i {
        color: #000 !important;
    }
/* END: 3D KITCHEN */

#uploadmaterial {
    background-image: url(/assets_2025/images/fabricator/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px;
}

@media (max-width: 768px) {
    #uploadmaterial {
        min-height: 294px;
    }
}

@media (max-width: 480px) {
    #uploadmaterial {
        min-height: 224px;
    }
}





/* Hover no card */
.feature-card, .feature-card-calendar {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #0D0D0D;
}

    .feature-card:hover, .feature-card-calendar:hover {
        border: 1px solid var(--bs-warning);
        box-shadow: 0 0 15.5px 0 rgba(255, 175, 31, 0.45);
    }

/* Fade suave na imagem */
#featureImage,
#featureImageCalendar,
#featureDois,
.feature {
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
}

    #featureImage.fade-out,
    #featureImageCalendar.fade-out,
    #featureDois.fade-out,
    .feature.fade-out {
        opacity: 0;
    }


.hero-section {
    background-image: url(/assets_2025/images/fabricator/bgbanner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--bs-light);
    padding: 80px 0;
    max-height: 645px;
}

    .hero-section h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--bs-warning);
    }

    .hero-section p {
        font-size: 1.1rem;
        padding-bottom: 40px;
        padding-top: 10px;
    }

.store-buttons img {
    height: 45px;
    margin-right: 10px;
}

.app-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .app-image {
        margin-top: 30px;
    }
}


.section-title {
    color: var(--bs-warning);
    font-weight: 700;
}

.stage-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #111;
}

    .stage-card img {
        width: 100%;
        height: auto;
        display: block;
    }

/*    .stage-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }*/



@keyframes fallDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#nav-calendar.active .stage-card {
    opacity: 0;
    animation: fallDown 0.6s ease forwards;
}

#nav-calendar.active .col-lg-3:nth-child(1) .stage-card {
    animation-delay: 0.2s;
}

#nav-calendar.active .col-lg-3:nth-child(2) .stage-card {
    animation-delay: 0.4s;
}

#nav-calendar.active .col-lg-3:nth-child(3) .stage-card {
    animation-delay: 0.6s;
}


.card-footer-stage {
    color: var(--bs-warning);
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 1rem;
}

    .card-footer-stage span {
        background: rgba(34, 34, 34, 0.55);
        color: var(--bs-warning);
        border-radius: 5px;
        padding: 2px 8px;
        margin-right: 10px;
        font-size: 0.9rem;
    }

/* seta entre os cards */
.arrow-stage {
    position: absolute;
    color: var(--bs-warning);
    font-size: 32px;
}

    .arrow-stage.right {
        right: 165px;
    }

    .arrow-stage.left {
        left: 165px;
    }

@media (max-width: 768px) {
    .text-center p {
        /*font-size: 0.9rem;*/
    }

    .arrow-stage {
        display: none; /* esconde as setas no mobile */
    }
}


.phone-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.features-app-section {
    padding: 80px 0;
    color: var(--bs-light);
}

.feature-app-card {
    background-image: url(/assets_2025/images/fabricator/bgbanner.png);
    border: 1px solid transparent;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px 20px 0px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .feature-app-card:hover {
        transform: translateY(-5px);
        border: 1px solid var(--bs-warning);
    }


    .feature-app-card img {
        margin-top: auto;
        width: 280px;
    }


.quickbooks-hero {
    background: linear-gradient(135deg, #1db954, #0d8f3a);
    background-image: url(/assets_2025/images/fabricator/fundoquicks.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 545px;
    max-height: 100%;
    border-radius: 10px;
}

.quickbooks-pricing {
    background-color: #000; /* fundo preto geral */
}

    .quickbooks-pricing .bg-dark {
        background-color: #111 !important; /* tom mais suave de preto */
    }



.pricing-card {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 60px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.pricing-price {
    font-size: 102px;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

.pricing-currency {
    font-size: 24px;
    color: #28a745;
    font-weight: 700;
}

.pricing-monthly {
    font-size: 24px;
    color: #28a745;
    font-weight: 400;
}

.contact-btn {
    background: #28a745;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 24px;
}

    .contact-btn:hover {
        background: #218838;
        color: #fff;
    }

.divider-col {
    border-left: 3px solid #ddd;
}

.plan-box {
    background: #f2f2f2;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.447px;
    margin-top: 4px;
}

.feature-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #333;
}


/* TESTIMONIALS */
.slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: relative;
    background: transparent; /* deixa o fundo transparente */
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

/* Cards */
.card-testimonials {
    flex: 0 0 auto;
    overflow: hidden;
    position: relative;
    background: #222; /* contraste no dark mode */
}

    .card-testimonials img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        display: block;
    }


/* Setas */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    user-select: none;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

/* Play button */
.play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--bs-warning);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .play-video:hover {
        opacity: 1;
    }

/* Responsividade */
@media (max-width: 576px) {
    .card-testimonials {
        flex: 0 0 90% !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .card-testimonials {
        flex: 0 0 70% !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .card-testimonials {
        flex: 0 0 45% !important;
    }
}

@media (min-width: 993px) {
    .card-testimonials {
        flex: 0 0 30% !important;
    }
}

/* END TESTIMONIALS */
.bg-badges-warning {
    background: rgba(255, 161, 22, 0.20);
    color: var(--bs-warning);
    display: flex;
    height: 35px;
    padding: 0 15px;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


/* START DISTRIBUTOR */
.small-img {
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

#sliderContainer {
    width: 100%;
    overflow: hidden;
}

.slider-card {
    min-width: 319px;
    max-width: 319px;
    flex-shrink: 0;
}

.badge-fabricator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--bs-warning); 
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
}

/* END DISTRIBUTOR */

