@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
    --font-family: "Inter", sans-serif;
    --primary: #6FB546;
    --primary-dark: #6FB546;
    --primary-light: #e2f1ff;
    --accent: #00d4d7;
    --accent-dark: #00bac1;
    --accent-light: #dff9f8;
    --success: #13d527;
    --success-dark: #00ae11;
    --success-light: #eafbe7;
    --secondary: #8f15d5;
    --secondary-dark: #6013c7;
    --secondary-light: #f4e5fa;
    --info: #15b2d5;
    --info-dark: #0f8ca8;
    --info-light: #e0f5fa;
    --caution: #dbbb25;
    --caution-dark: #d58f15;
    --caution-light: #fbf9e4;
    --error: #e6185e;
    --error-dark: #bf1257;
    --error-light: #fce4eb;
    --black: #1d1d1d;
    --dark-1: #2d2d2d;
    --dark-2: #4d4d4d;
    --dark-3: #6d6d6d;
    --gray-1: #8d8d8d;
    --gray-2: #adadad;
    --gray-3: #cdcdcd;
    --gray-4: #e0e0e0;
    --light-1: #efefef;
    --light-2: #f5f5f5;
    --light-3: #fafafa;
    --white: #ffffff;
    --gradient-1: linear-gradient(180deg, #6FB546 0%, #6FB546 100%);
    --gradient-2: linear-gradient(180deg, #6FB546 13.02%, #00d4d7 85.42%);
    --gradient-3: linear-gradient(180deg, #6FB546 0%, #8f15d5 100%);
    --gradient-4: linear-gradient(180deg, #6FB546 0%, #13d527 100%);
    --gradient-5: linear-gradient(180deg, #6FB546 0%, #15bbd5 100%);
    --gradient-6: linear-gradient(180deg, #6FB546 0%, #dbbb25 100%);
    --gradient-7: linear-gradient(180deg, #6FB546 0%, #e6185e 100%);
    --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
    --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #6FB546 85.42%);
    --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
    --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
    --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04), 0px 4px 8px rgba(96, 97, 112, 0.16);
    --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
    --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04), 0px 16px 24px rgba(96, 97, 112, 0.16);
    --shadow-6: 0px 2px 8px rgba(255, 255, 255, 0.08), 0px 20px 32px rgba(255, 255, 255, 0.24);
}

body {
    font-family: var(--font-family);
    color: var(--black);
    font-size: 17px;
    overflow-x: hidden;
    background-color: #6FB546;
}

@media (max-width: 991px) {
    body {
        font-size: 15px;
    }
}

img {
    max-width: 100%;
}

a {
    display: inline-block;
}

    a,
    button,
    a:hover,
    a:focus,
    input:focus,
    textarea:focus,
    button:focus {
        text-decoration: none;
        outline: none;
    }

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--black);
    margin: 0px;
}

h1,
.h1 {
    font-size: 2.75em;
    line-height: 1.25;
}

h2,
.h2 {
    font-size: 2.25em;
    line-height: 1.25;
}

h3,
.h3 {
    font-size: 1.75em;
    line-height: 1.25;
}

h4,
.h4 {
    font-size: 1.5em;
    line-height: 1.25;
}

h5,
.h5 {
    font-size: 1.25em;
    line-height: 1.25;
}

h6,
.h6 {
    font-size: 0.875em;
    line-height: 1.25;
}

.display-1 {
    font-size: 5.5em;
    line-height: 1.25;
}

.display-2 {
    font-size: 4.75em;
    line-height: 1.25;
}

.display-3 {
    font-size: 4em;
    line-height: 1.25;
}

.display-4 {
    font-size: 3.25em;
    line-height: 1.25;
}

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-3);
    margin: 0px;
}

.text-small {
    font-size: 0.875em;
    line-height: 1.5;
}

.text-lg {
    font-size: 1.15em;
    line-height: 1.5;
}

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.btn {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid transparent;
}

    .btn:hover {
        color: inherit;
    }

    .btn:focus {
        box-shadow: none;
        outline: none;
    }

    .btn.btn-lg {
        font-size: 1.15em;
        padding: 16px 24px;
    }

    .btn.btn-sm {
        padding: 8px 16px;
    }

    .btn.square {
        border-radius: 0px;
    }

    .btn.semi-rounded {
        border-radius: 12px;
    }

    .btn.rounded-full {
        border-radius: 50px;
    }

    .btn.icon-left span,
    .btn.icon-left i {
        margin-right: 8px;
    }

    .btn.icon-right span,
    .btn.icon-right i {
        margin-left: 8px;
    }

/* ===== Buttons Css ===== */
.primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .active.primary-btn, .primary-btn:hover, .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
        background: var(--primary-dark);
        color: var(--white);
    }

.deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
    text-align: center;
    max-width: 550px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-five {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .section-title-five {
        margin-bottom: 35px;
    }
}

.section-title-five h6 {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 8px 30px;
}

.section-title-five h2 {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-five h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 767px) {
    .section-title-five h2 {
        font-size: 1.5rem;
        line-height: 1.25;
    }
}

.section-title-five p {
    color: var(--dark-3);
}

.mb-100 {
    margin-bottom: 100px;
}

/* ===== Buttons Css ===== */
.header-eight .primary-btn {
    background: var(--primary) !important;
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.header-eight .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
    position: relative;
    padding: 50px 0 50px 0;
    background: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-eight {
        padding: 50px 0 50px 0;
    }
}

@media (max-width: 767px) {
    .header-eight {
        padding: 50px 0 50px 0;
    }
}

.header-eight .header-image img {
    width: 100%;
    border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-eight .header-image {
        margin-top: 40px;
    }
}

.cor-branco {
    color: var(--white) !important;
}

.header-eight .header-content {
    border-radius: 0;
    position: relative;
    z-index: 1;
    text-align: left;
}

    .header-eight .header-content h1 {
        font-weight: 700;
        text-shadow: 0px 3px 8px #00000017;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-eight .header-content h1 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 767px) {
    .header-eight .header-content h1 {
        font-size: 30px;
        line-height: 42px;
    }
}

.header-eight .header-content h1 span {
    display: block;
}

.header-eight .header-content p {
    margin-top: 20px;
    color: var(--white);
    opacity: 1;
}

.header-eight .primary-btn {
    margin-right: 12px;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid transparent;
}

    .header-eight .primary-btn:hover {
        background-color: transparent;
        color: var(--white);
        border-color: var(--white);
    }
/*===========================
  services css 
===========================*/
#services {
    background-color: white;
}

.services-eight {

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services-eight {
        margin-top: -4px;
    }
}

@media (max-width: 767px) {
    .services-eight {
        margin-top: -4px;
    }
}

.services-eight .single-services {
    padding: 40px 30px;
    margin-bottom: 30px;
    border: 1px solid var(--light-1);
    border-radius: 10px;
    height: 90%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .services-eight .single-services:hover {
        box-shadow: var(--shadow-6);
    }

    .services-eight .single-services .service-content h4 {
        font-size: 20px;
        font-weight: 600;
        color: #26b050;
    }

    .services-eight .single-services .service-content p {
        color: var(--dark-3);
    }

.service-content-icon {
    margin-right: 12px;
}

/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
        background: var(--white);
        color: var(--primary);
        border-color: transparent;
    }

.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

/*===== call action four =====*/
.call-action {
    z-index: 2;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark)) !important;
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .call-action {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .call-action {
        padding: 50px 0;
    }
}

.call-action:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url("images/call-action/overlay.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: -1;
    padding-top: 50px;
    padding-bottom: 50px;
}

.call-action .inner-content {
    text-align: center;
}

    .call-action .inner-content h2 {
        font-weight: 700;
        margin-bottom: 30px;
        color: var(--white);
    }

    .call-action .inner-content p {
        color: var(--white);
    }

    .call-action .inner-content .light-rounded-buttons {
        margin-top: 45px;
        display: block;
    }

        .call-action .inner-content .light-rounded-buttons .primary-btn-outline {
            border-color: var(--white);
            color: var(--white);
        }

/*===== latest-news-area =====*/
.latest-news-area {
    background: var(--white);
    padding-bottom: 50px;
    padding-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .latest-news-area {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .latest-news-area {
        padding: 50px 0;
    }
}

.latest-news-area .single-news {
    margin-top: 30px;
}

    .latest-news-area .single-news .image {
        position: relative;
        border-radius: 4px;
        overflow: hidden;
    }

        .latest-news-area .single-news .image img {
            height: 100%;
            width: 100%;
            transition: all 0.4s ease;
        }

        .latest-news-area .single-news .image .meta-details {
            display: inline-block;
            padding: 6px 15px 6px 7px;
            border-radius: 30px;
            background-color: var(--primary);
            position: absolute;
            right: 20px;
            bottom: 20px;
        }

            .latest-news-area .single-news .image .meta-details img {
                height: 28px;
                width: 28px;
                border-radius: 50%;
                display: inline-block;
            }

            .latest-news-area .single-news .image .meta-details span {
                color: var(--white);
                display: inline-block;
                margin-left: 10px;
                font-size: 10px;
                font-weight: 500;
            }

    .latest-news-area .single-news .content-body .title {
        margin: 30px 0 20px 0;
    }

        .latest-news-area .single-news .content-body .title a {
            color: var(--black);
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

            .latest-news-area .single-news .content-body .title a:hover {
                color: var(--primary);
            }

    .latest-news-area .single-news .content-body p {
        color: var(--dark-3);
    }

    .latest-news-area .single-news:hover .image .thumb {
        transform: scale(1.1) rotate(1deg);
    }

/*======================================
    Brand CSS
========================================*/
.brand-area {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--light-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brand-area {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .brand-area {
        padding: 50px 0;
    }
}

.brand-area .clients-logos {
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

    .brand-area .clients-logos .single-image {
        display: inline-block;
        margin: 13px 10px;
        background-color: var(--white);
        line-height: 100px;
        padding: 8px 25px;
        border-radius: 8px;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
        border: 1px solid #eee;
    }

        .brand-area .clients-logos .single-image:hover {
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
            -webkit-transform: translateY(-5px);
            -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            -o-transform: translateY(-5px);
            transform: translateY(-5px);
        }

    .brand-area .clients-logos img {
        max-width: 170px;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .contact-form-wrapper .contact-form .active.primary-btn, .contact-form-wrapper .contact-form .primary-btn:hover, .contact-form-wrapper .contact-form .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.contact-form-wrapper .contact-form .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.button-white-green {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid transparent;
    color: var(--primary);
    box-shadow: var(--shadow-2);
    margin-top: 40px;
    max-width: 100%;
}

.button-white-green:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
    border-color: var(--white);
}

.button-green-white {
    background-color: var(--primary-dark);
    color: var(--white);
    border: 1px solid transparent;
    box-shadow: var(--shadow-2);
    margin-top: 40px;
    max-width: 100%;
}

.button-green-white:hover {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-4);
    border-color: var(--primary-dark);
}

.contact-section {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.contact-form-wrapper {
    padding: 50px 40px;
    background: var(--white);
    border: 1px solid var(--gray-4);
    margin-left: 0px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-form-wrapper {
        margin-left: 30px;
    }
}

.contact-form-wrapper .section-title {
    margin-bottom: 30px;
}

.contact-form-wrapper .section-title span {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.contact-form-wrapper .section-title h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper .section-title p {
    color: var(--dark-3);
}

.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--gray-4);
    margin-bottom: 25px;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .contact-form-wrapper .contact-form input,
    .contact-form-wrapper .contact-form textarea {
        padding: 12px 25px;
    }
}

.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form-wrapper .contact-form textarea {
    border-radius: 18px;
}

#contact {
    background-color: white;
}

.input-contact-form {
    padding: 0px !important;
    width: 2em !important;
}

.label-select-form {
    margin-bottom: 25px;
}

.select-form {
    width: 100% !important;
    margin-bottom: 25px;
    border-radius: 30px;
}
/*Possui PDV*/
.possui-pdv .inner-content .light-rounded-buttons .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.possui-pdv .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
    background: var(--white);
    color: var(--primary);
    border-color: transparent;
}

.possui-pdv .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

.possui-pdv {
    z-index: 2;
    background: linear-gradient(45deg, #d3343cf3, #d3343cf3) !important;
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .possui-pdv {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .possui-pdv {
        padding: 50px 0;
    }
}

.possui-pdv:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url("images/call-action/overlay.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: -1;
    padding-top: 50px;
    padding-bottom: 50px;
}

.possui-pdv .inner-content {
    text-align: center;
}

    .possui-pdv .inner-content h2 {
        font-weight: 700;
        margin-bottom: 30px;
        color: var(--white);
    }

    .possui-pdv .inner-content p {
        color: var(--white);
    }

    .possui-pdv .inner-content .light-rounded-buttons {
        margin-top: 45px;
        display: block;
    }

        .possui-pdv .inner-content .light-rounded-buttons .primary-btn-outline {
            border-color: var(--white);
            color: var(--white);
        }

.button-white-red {
    background-color: var(--white);
    border: 1px solid transparent;
    color: #d3343cf3;
    box-shadow: var(--shadow-2);
    margin-top: 40px;
    max-width: 100%;
}

.button-white-red:hover {
    background: #d3343cf3;
    color: var(--white);
    box-shadow: var(--shadow-4);
    border-color: var(--white);
}


#rodape-colibri {
    background-color: #6FB546;
    bottom: 0;
    width: 100%;
}

    #rodape-colibri a {
        color: white;
    }

        #rodape-colibri a:hover {
            color: white;
        }

.icon-rodape-colibri {
    font-size: 16px;
}

.info-rodape-pekus {
    padding-top: 50px;
}

.rodape-p-pekus {
    padding-bottom: 0 !important;
}

.rodape-colibri-copy {
    padding-bottom: 50px;
}

.footer-eleven {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffffff;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px){
    .footer-eleven {
        padding-top:50px;
        padding-bottom:50px;
    } 
}

/*====Section Agradecimentos=====*/

#principal-agradecimentos {
    text-align: center !important;
}

#img-agradecimentos {
    margin-top: 50px;
    padding: 20px;
    max-height: 450px !important;
    width: auto;
    height: auto;
}

a:hover.link-agradecimentos {
    color: var(--white) !important;
}

a.link-agradecimentos {
    color: var(--primary) !important;
}

.txt-h2-agradecimentos {
    color: var(--white) !important;
    padding-left: 20px;
    padding-right: 20px;
}

.txt-p-agradecimentos {
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--white);
}

.btn-link-agradecimentos {
    margin-top: 15px !important;
    color: white !important;
}

.btn-agradecimento {
    padding-bottom: 50px;
}

.link-copy-rodape {
    font-size: 10px;
}

.icon-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 99999999;
}

#img-wpp {
    width: 30px;
    height: 30px;
}

h1 {
    font-size: 38px !important;
}

h2 {
    font-size: 37px !important;
}

h3 {
    
}


h4 {
    font-size: 25px !important;
}

h5 {

}

h6 {

}

p {
    font-size: 17px !important;
}

.carousel {
    width: 270px !important;
}

.carousel-control-next {
    right: -40px;
}

.carousel-control-prev {
    left: -40px;
}

.divCarrosel {
    width: 100% !important;
    display: flex;
    justify-content: center;
    height: auto;
}

.carousel-caption {
    padding: 0 !important;
}

.carousel-indicators {
    margin-bottom: -30px !important;
}

@media (min-width: 768px) {
    .carousel {
        width: 400px !important;
    }

    .carousel-control-next {
        right: -60px;
    }

    .carousel-control-prev {
        left: -60px;
    }
}

.pergunta {
    margin-top: -1px;
    padding: 10px 10px 10px 10px;
    background-color: white;
    border: solid 1px rgba(0,0,0,0.2);
    transition: border-radius 1s ease-in-out;
    font-weight: bold;
}

.pergunta:hover {
    cursor: pointer;
    background-color: rgb(242 242 242);
}

.pergunta.ultima {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pergunta.primeira {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.resposta.expandida {
    max-height: 100vh !important;
}

.resposta {
    margin-top: -1px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    list-style: none;
}

.texto-resposta {
    margin-top: -1px;
    padding: 20px;
    border: solid 1px rgba(0,0,0,0.2);
    text-align: justify;
}

.pergunta.resposta-aberta {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: border-radius 0s;
}

.mb-30px{
    margin-bottom: 30px !important;
}

.video-dimensoes{
    width: 100%;
    height: auto;
    margin-top: 40px;
}

/*=================
Formulário 
==================*/
.form-text {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    align-content: center
}

#espacamento-titulo {
    margin-top: 25px;
}

.Texto-formulario {
    color: #000;
    text-align: center;
}

@media(min-width: 992px) {
    .Texto-formulario {
        color: #fff;
        text-align: start
    }

    #espacamento-titulo{
        margin-top: 0px;
    }
}

