/* ================================================= */
/* Componente: Botões                                */
/* ================================================= */

.btnWrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(var(--color-almostWhite), 0);
    border-radius: 10rem;
    text-decoration: none;
    cursor: pointer;
    gap: 0.5rem;
    white-space: nowrap;
    font-weight: 300;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    overflow: hidden;
}

/* Wrapper do ícone - controle independente do fundo */
.button__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.button__label {
    padding: 0;
    margin: 0;
}

.button--small {
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    font-size: 0.8rem;
    max-height: 3rem;
}

.button--medium {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    font-size: 1rem;
    max-height: 3.5rem;
}

.button--almostSquare {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    font-size: 1rem;
    max-height: 3.5rem;
    border-radius: 0.5rem;
}

.button--big {
    padding: 1.5rem 0.5rem 1.5rem 1rem;
    font-size: 1rem;
    max-height: 4rem;
}

.button--big .button__icon {
    padding: 1rem;
    border-radius: 100%;
}

.button--medium .button__icon {
    padding: 0;
    border-radius: 100%;
}

.button--almostWhite {
    background-color: rgba(var(--color-almostWhite), 0.75);
    color: rgba(var(--color-almostBlack), 0.6);
    border-color: rgba(var(--color-almostWhite), 0.25);
}

.button--almostWhite:hover {
    background-color: rgba(var(--color-almostWhite), 1);
    color: rgba(var(--color-almostBlack), 1);
    border-color: rgba(var(--color-almostWhite), 1);
}

.button--almostWhite .button__icon {
    background-color: rgba(var(--color-almostBlack), 0.8);
    color: rgba(var(--color-almostWhite), 0.8);
}

.button--almostBlack {
    background-color: rgba(var(--color-almostBlack), 0.8);
    color: rgba(var(--color-almostWhite), 0.65);
    border-color: rgba(var(--color-almostWhite), 0.25);
}

.button--almostBlack:hover {
    background-color: rgba(var(--color-almostBlack), 1);
    color: rgba(var(--color-almostWhite), 1);
    border-color: rgba(var(--color-almostWhite), 0.5);
}

.button--almostBlack .button__icon {
    background-color: rgba(var(--color-almostWhite), 0.8);
    color: rgba(var(--color-almostBlack), 0.8);
    width: 2rem;
    height: 2rem;
    border-radius: 5rem;
}

.button--almostBlack.active {
    background-color: #1A4BA9;
    cursor: pointer;
    color: #F8FAF9;
}

.button--blue {
    background-color: rgba(var(--color-laranBlue), 0.8);
    color: rgba(var(--color-almostWhite), 0.8);
}

.button--blue:hover {
    background-color: rgba(var(--color-laranBlue), 1);
    color: rgba(var(--color-almostWhite), 1);
}

.button--blue .button__icon {
    background-color: rgba(var(--color-almostWhite), 0.8);
    color: rgba(var(--color-almostBlack), 0.8);
    width: 2rem;
    height: 2rem;
    border-radius: 5rem;
}

.button--blue:hover .button__icon {
    background-color: rgba(var(--color-almostWhite), 1);
    color: rgba(var(--color-almostBlack), 1);
}

.button--secondary {
    background-color: rgba(var(--color-lightGray), 0.1);
    color: rgba(var(--color-almostWhite), 0.6);
    border-color: rgba(var(--color-lightGray), 0.3);
}

.button--secondary:hover {
    background-color: rgba(var(--color-lightGray), 0.2);
    color: rgba(var(--color-almostWhite), 1);
    border-color: rgba(var(--color-lightGray), 0.5);
}

.button--options {
    background-color: rgba(var(--color-lightBlue), 0.1);
    color: rgba(var(--color-lightBlue), 0.6);
    border-color: rgba(var(--color-lightBlue), 0.3);
}

.button--options:hover {
    background-color: rgba(var(--color-lightBlue), 0.2);
    color: rgba(var(--color-lightBlue), 1);
    border-color: rgba(var(--color-lightBlue), 0.5);
}

.button--options .button__icon {
    background-color: rgba(var(--color-almostWhite), 0);
    color: rgba(var(--color-lightBlue), 0.75);
}

/* ======================================== */
/* Animação dos botões   */
/* ======================================== */

.sliderCarouselControlPrevious:hover .button__icon {
    animation: btnAnimation-03 0.2s ease-in-out forwards;
}

.sliderCarouselControlNext:hover .button__icon {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
}

.button:hover .button__icon i {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
}

.btnAnimation-01:hover i {
    animation: btnAnimation-01 0.2s ease-in-out forwards;
}

.btnAnimation-02:hover i {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
}

.btnAnimation-03:hover i {
    animation: btnAnimation-03 0.2s ease-in-out forwards;
}

@keyframes btnAnimation {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    50% {
        transform: translateY(200%);
        opacity: 0;
    }

    51% {
        transform: translateY(-200%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes btnAnimation-02 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    50% {
        transform: translateX(200%);
        opacity: 0;
    }

    51% {
        transform: translateX(-200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes btnAnimation-03 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    50% {
        transform: translateX(-200%);
        opacity: 0;
    }

    51% {
        transform: translateX(200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

/* ================================================= */
/* Componente: solutionFloat.php                     */
/* ================================================= */

.solutionFloatBannerSection {
    width: 100%;
    padding: 0 0 10rem 0;
    background-color: rgba(var(--color-blueishGray), 1);
}

.solutionFloatBannerWrapper {
    width: 70%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: rgba(var(--color-laranBlue), 0.02);
    border: 1px solid rgba(var(--color-laranBlue), 0.1);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}

.solutionFloatBannerTitle {
    display: flex;
    border-bottom: 1px solid rgba(var(--color-laranBlue), 0.15);
    padding: 0.2rem 0;
}

.solutionFloatBannerTitle h4 {
    font-size: 1.2rem;
    color: rgba(var(--color-laranBlue), 0.8);
}

.solutionFloatBannerCarousel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.solutionFloatBannerItem {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    justify-content: space-between;
    background-color: rgba(var(--color-almostWhite), 0.10);
    border: 1px solid rgba(var(--color-laranBlue), 0.15);
    border-radius: 1rem;
}

.solutionFloatBannerImg img {
    border-radius: 0.75rem;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.solutionFloatBannerContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solutionFloatBannerContent h4 {
    font-size: 1.4rem;
    width: 100%;
    color: rgba(var(--color-laranBlue), 0.8);
}


@media (min-width: 1200px) {
    .solutionFloatBannerWrapper {
        width: 83.33%;
    }

    .solutionFloatBannerCarousel {
        flex-direction: row;
    }

    .solutionFloatBannerItem {
        flex-direction: row;
        gap: 1rem;
    }

    .solutionFloatBannerContent {
        width: 50%;
    }

    .solutionFloatBannerImg {
        width: 50%;
    }
}

/* ================================================= */
/* Componente: floaterWhatsapp.php                   */
/* ================================================= */

.floaterWhatsapp {
    position: fixed;
    display: flex;
    z-index: 9980;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
}

.icnGreenWhatsApp {
    background-color: rgba(var(--color-laranBlue), 1);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0cf;
    box-shadow: 0 0.5rem 0.8rem rgba(var(--color-black), 0.5);
    transition: all 0.3s ease;
}

.icnGreenWhatsApp:hover {
    background-color: #33a26b;
}

@media screen and (min-width: 1201px) {
    .floaterWhatsapp {
        display: none;
    }
}

/* ================================================= */
/* Componente: floatSocial.php                       */
/* ================================================= */

.floatSocial {
    max-width: fit-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.floatSocialWrapper {
    display: flex;
    flex-shrink: 1;
    padding: 1rem;
    color: rgba(var(--color-almostBlack), 0.50);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    margin: 0 auto;
    border-radius: 10rem;
    gap: 0.5rem;
    align-items: center;
    line-height: 1.2;
}

.floatSocialWrapper p {
    font-size: 0.8rem;
}

.floatSocialWrapper:hover {
    color: rgba(var(--color-almostBlack), 1);
}

.floatSocialIcn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 50rem;
    padding: 0.75rem;
    overflow: hidden;
    background-color: rgba(var(--color-almostWhite), 0.5);
    border: 1px solid rgba(var(--color-lightBlue), 0.10);
    color: rgba(var(--color-almostBlack), 0.50);
}

.floatSocialIcn:hover {
    color: rgba(var(--color-lightBlue), 1);
    background-color: rgba(var(--color-lightBlue), 0.15);
    border-color: rgba(var(--color-lightBlue), 0.25);
}

.floatSocialIcn:hover i {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
}

/* ================================================= */
/* Componente: sliderControls.php                    */
/* ================================================= */

.sliderControls {
    position: absolute;
    display: flex;
    width: 100%;
    padding: 0 10rem;
    max-width: 1600px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 3.5rem;
    bottom: 5rem;
    z-index: 9998;
    justify-content: flex-end;
}

.sliderControlsWrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    background-color: rgba(var(--color-almostWhite), 0.15);
    border: 1px solid rgba(var(--color-almostWhite), 0.25);
    padding: 0.5rem;
    border-radius: 10rem;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}

.sliderControlsWrapper:hover {
    background-color: rgba(var(--color-almostWhite), 0.5);
    border: 1px solid rgba(var(--color-almostWhite), 0.6);
}

.slider-next-btn,
.slider-prev-btn {
    background-color: rgba(var(--color-almostWhite), 0.75);
    color: rgba(var(--color-almostBlack), 0.75);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10rem;
    border: 1px solid rgba(var(--color-almostWhite), 0.90);
    overflow: hidden;
}

.slider-next-btn:hover,
.slider-prev-btn:hover {
    cursor: pointer;
    background-color: rgba(var(--color-almostWhite), 0.90);
    border: 1px solid rgba(var(--color-almostWhite), 1);
    color: rgba(var(--color-lightBlue), 1);
}

.slider-next-btn:hover i {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
}

.slider-prev-btn:hover i {
    animation: btnAnimation-03 0.2s ease-in-out forwards;
}

.sliderControlsIndicators {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.sliderControlsIndicators .slider-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: rgba(var(--color-almostBlack), 0.4);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.sliderControlsIndicators .slider-indicator.active {
    background-color: rgba(var(--color-almostBlack), 0.8);
}

/* ================================================= */
/* Componente: floatOrcamento.php                    */
/* ================================================= */

.floatOrcamento {
    position: fixed;
    display: flex;
    left: 50%;
    bottom: -10rem;
    transform: translateX(-50%);
    z-index: 9998;
    background-color: rgba(var(--color-almostBlack), 0.35);
    border: 1px solid rgba(var(--color-lightBlue), 0.2);
    color: rgba(var(--color-almostWhite), 0.75);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    padding: 0.75rem;
    align-items: center;
    border-radius: 5rem;
}

.notificationCta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notificationIcn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--color-laranBlue), 0.5);
    color: rgba(var(--color-almostWhite), 0.75);
    border: 1px solid rgba(var(--color-lightBlue), 0.15);
    border-radius: 10rem;
    padding: 0.75rem;
    overflow: hidden;
}

.floatOrcamento:hover {
    background-color: rgba(var(--color-almostBlack), 0.5);
    border: 1px solid rgba(var(--color-lightBlue), 0.5);
    color: rgba(var(--color-almostWhite), 1);
}

.floatOrcamento:hover .notificationIcn {
    background-color: rgba(var(--color-laranBlue), 0.75);
    color: rgba(var(--color-lightestBlue), 1);
    border: 1px solid rgba(var(--color-lightBlue), 0.5);
}

.floatOrcamento:hover .notificationIcn i {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
}

/* ================================================= */
/* Componente: playButton.php                        */
/* ================================================= */

.playButton {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 5rem;
    height: 5rem;
    background-color: rgba(var(--color-almostBlack), 0.65);
    color: rgba(var(--color-almostWhite), 0.9);
    border: 1px solid rgba(var(--color-almostWhite), 0.1);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border-radius: 10rem;
    font-size: 2.5rem;
    cursor: pointer;
    overflow: hidden;
}

.playButton:hover {
    width: 7rem;
    height: 7rem;
    font-size: 2rem;
    border: none;
    color: rgba(var(--color-almostBlack), 0.8);
    background-color: rgba(var(--color-almostWhite), 0.3);
    border: 1px solid rgba(var(--color-almostBlack), 0.25);
}

.playButton:hover i {
    animation: btnAnimation-02 0.2s ease forwards;
}

/* ================================================= */
/* Componente: lazyVideo.php                         */
/* ================================================= */

.lazyVideo {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 1rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 16 / 9;
}

.lazyVideo img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

/* ================================================= */
/* Componente: customCheckbox.php                    */
/* ================================================= */

.customCheckbox {
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.customCheckbox input[type="checkbox"] {
    display: none;
}

.customCheckbox .checkVisual {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0.25rem;
    background-color: rgba(var(--color-almostWhite), 0.05);
    border: 1px solid rgba(var(--color-lightBlue), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.customCheckbox:hover .checkVisual {
    background-color: rgba(var(--color-laranBlue), 0.15);
    border: 1px solid rgba(var(--color-lightBlue), 0.35);
}

.customCheckbox .checkVisual i {
    line-height: 1;
    color: rgba(var(--color-lightBlue), 0);
}

.customCheckbox input[type="checkbox"]:checked+.checkVisual {
    background-color: rgba(var(--color-lightBlue), 0.25);
    border-color: rgba(var(--color-lightBlue), 1);
}

.customCheckbox input[type="checkbox"]:checked+.checkVisual i {
    color: rgba(var(--color-lightBlue), 1);
}

/* ================================================= */
/* Componente: customRadio.php                       */
/* ================================================= */

.customRadio {
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.customRadio input[type="radio"] {
    display: none;
}

.customRadio .radioCircle {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 5rem;
    background-color: rgba(var(--color-almostWhite), 0.05);
    border: 1px solid rgba(var(--color-lightBlue), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.customRadio:hover .radioCircle {
    background-color: rgba(var(--color-laranBlue), 0.15);
    border: 1px solid rgba(var(--color-lightBlue), 0.35);
}

.customRadio .radioCircle i {
    line-height: 0;
    font-size: 0.4rem;
    margin: 0;
    color: rgba(var(--color-lightBlue), 0);
}

.customRadio input[type="radio"]:checked+.radioCircle {
    background-color: rgba(var(--color-lightBlue), 0.25);
    border-color: rgba(var(--color-lightBlue), 1);
}

.customRadio input[type="radio"]:checked+.radioCircle i {
    color: rgba(var(--color-lightBlue), 1);
}

/* ================================================= */
/* Componente: socialMediaFloat.php                  */
/* ================================================= */

.socialMediaFloatWrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    line-height: 1;
}

.socialMediaFloatWrapper p {
    font-size: 1rem;
    align-self: center;
    padding-top: 1rem;
}

.socialMediaFloatItems {
    display: flex;
    flex-direction: row;
    background-color: rgba(var(--color-laranBlue), 0.15);
    border: 1px solid rgba(var(--color-laranBlue), 0.20);
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem;
    border-radius: 10rem;

}

.socialMediaFloatItem {
    padding: 0.5rem;
    line-height: 1;
    background-color: rgba(var(--color-laranBlue), 0.25);
    border: 1px solid rgba(var(--color-laranBlue), 0.30);
    border-radius: 5rem;
    overflow: hidden;
}

.socialMediaFloatItem:hover {
    background-color: rgba(var(--color-laranBlue), 0.40);
    border: 1px solid rgba(var(--color-laranBlue), 0.50);
}

.socialMediaFloatItem a {
    color: rgba(var(--color-almostWhite), 0.65);
}

.socialMediaFloatItem:hover i {
    animation: btnAnimation-02 0.2s ease-in-out forwards;
    color: rgba(var(--color-lightBlue), 1);
}

/* ============================================ */
/* Estilos para as tags de aplicação            */
/* ============================================ */

.productTags {
    display: flex;
    margin: 1rem 0;
    gap: 0.5rem;
}

.productTag {
    padding: 0.5rem;
    background-color: rgba(var(--color-lightBlue), 0.10);
    border: 1px solid rgba(var(--color-lightBlue), 0.15);
    border-radius: 5rem;
}

/* ============================================ */
/* Estilos para botões download catalogo        */
/* ============================================ */

.baixarCatalogo {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1;
    align-items: center;
    font-size: var(--fontStyle-body);
}

.baixarCatalogo a {
    display: inline-flex;
    background-color: rgba(var(--color-lightBlue), 0);
    border: 1px solid rgba(var(--color-lightBlue), 0);
    height: max-content;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5rem;
    white-space: nowrap;
    overflow: hidden;
}

.baixarCatalogo a:hover {
    background-color: rgba(var(--color-lightBlue), 0.10);
    border: 1px solid rgba(var(--color-lightBlue), 0.15);
}

.baixarCatalogo a:hover i {
    animation: btnAnimation 0.2s ease forwards;
}

.baixarCatalogo a p {
    display: inline-flex;
    align-items: center;
    margin: 0;
    white-space: nowrap;
}

.baixarCatalogo a p i {
    margin-left: 0.5rem;
}