* {
    font-family: poppins, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
}

:root {  
    /* Colors: */
    --blue-color-06425c: #06425C;
    --color-blue-contrast: #002d41;
    --green-color-0d9da1: #0D9DA1;
    --color-green-contrast: #007679;
    --pink-color-b6006e: #B6006E;
    --color-pink-contrast: #7C044D;
    --orange-color-f56d2d: #F56D2D;
    --color-orange-contrast: #a03300;
    --yellow-color-f5d22e: #F5D22E;
    --color-yellow-contrast: #9e8100;
    --black-color-000000: #000000;
    --white-color-ffffff: #ffffff;
    --color-tag: #c3d2d8;
    --color-tag-green: #c0e3e4;
    --color-tag-pink: #e5a3cb;
    --color-tag-orange: #f9d8c9;

    /* Font/text values */
    --unnamed-font-family-poppins: Poppins;
    --unnamed-font-style-normal: normal;
    --unnamed-font-weight-medium: medium;
    --unnamed-font-weight-bold: bold;
    --unnamed-font-size-12: 12px;
    --unnamed-font-size-14: 14px;
    --unnamed-font-size-16: 16px;
    --unnamed-font-size-24: 24px;
    --unnamed-font-size-32: 32px;
    --unnamed-font-size-48: 48px;
    --unnamed-font-size-80: 80px;
    --unnamed-character-spacing-0: 0px;
    --unnamed-line-spacing-17: 17px;
    --unnamed-line-spacing-20: 20px;
    --unnamed-line-spacing-32: 32px;
    --unnamed-line-spacing-37: 37px;
    --unnamed-line-spacing-50: 50px;
    --unnamed-line-spacing-85: 85px;
}

a {
    text-decoration: none !important;
}

li {
    list-style: none;
}

.container {
    max-width: 1366px;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-start {
    justify-content: start;
}

.flex-end {
    justify-content: end;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.gap1 {
    gap: 1;
}

.gap2 {
    gap: 2;
}

.w-10 {
    width: 10rem;
}

.w-20 {
    width: 20rem;
}

.w-full {
    width: 100%;
}

.round-5 {
    border-radius: 5rem;
}

/* titles */
.title-primary {
    color: var(--blue-color-06425c);
}

.title-secondary {
    color: var(--green-color-0d9da1);
}

.title-tertiary {
    color: var(--pink-color-b6006e);
}

.title-orange {
    color: var(--orange-color-f56d2d);
}

.icon-transform {
    transform: scale(-1, -1);
}

.header {
    z-index: 50;
}

.nav-link {
    font-weight: bold !important;
}

.navbar-toggler {
    border: none !important;
    background: none !important;
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

.toggler-white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.toggler-colored .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2306425C' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link-white {
    color: var(--white-color-ffffff) !important;
}

.nav-link-colored {
    color: var(--blue-color-06425c) !important;
}

.link-gest-secondary {
    color: var(--green-color-0d9da1) !important;
}

.link-gest-secondary:hover {
    color: var(--color-green-contrast) !important;
    transition: all .5s;
}

.btn-gest-primary {
    color: var(--white-color-ffffff) !important;
    background-color: var(--pink-color-b6006e) !important;
    border-radius: 24px !important;
}

.btn-gest-primary:hover {
    color: #FFFFFF !important;
    background-color: var(--color-pink-contrast) !important;
    transition: all .5s;
}

.btn-gest-secondary {
    text-align: left;
    color: #FFFFFF !important;
    background: var(--green-color-0d9da1) 0% 0% no-repeat padding-box !important;
    border-radius: 24px !important;
}

.btn-gest-secondary:hover {
    color: #FFFFFF !important;
    background: var(--color-green-contrast) 0% 0% no-repeat padding-box !important;
    transition: all .5s ease-in-out;
}

.btn-gest-terciary {
    text-align: left;
    color: #FFFFFF !important;
    background: var(--orange-color-f56d2d) 0% 0% no-repeat padding-box !important;
    border-radius: 24px !important;
}

.btn-gest-terciary:hover {
    color: #FFFFFF !important;
    background: var(--color-orange-contrast) 0% 0% no-repeat padding-box !important;
    transition: all .5s ease-in-out;
}

.btn-gest-primary-outlined {
    color: var(--pink-color-b6006e) !important;
    background-color: var(--white-color-ffffff) !important;
    border: 2px solid var(--pink-color-b6006e) !important;
    border-radius: 24px !important;
}

.btn-gest-primary-outlined:hover {
    background-color: var(--color-tag-pink) !important;
    transition: all .5s;
}

.bg-cinza {
    background-color: #e4e4e4 !important;
}

.bg-gest-primary {
    background-color: var(--pink-color-b6006e) !important;
}

.bg-gest-primary:hover {
    background-color: var(--color-pink-contrast) !important;
}

.bg-gest-primary-soft {
    background-color: #eec2dc !important;
}

.bg-gest-orange {
    background-color: var(--orange-color-f56d2d) !important;
}

.bg-gest-orange-soft {
    background-color: var(--color-tag-orange) !important;
}

.bg-gest-green {
    background-color: var(--green-color-0d9da1) !important;
}

.bg-gest-green-soft {
    background-color: var(--color-tag-green) !important;
}

.bg-tag-green {
    background-color: var(--color-tag-green) !important;
}

.bg-tag-pink {
    background-color: var(--color-tag-pink) !important;
}

.bg-tag-orange {
    background-color: var(--color-tag-orange) !important;
}

.bg-icon-primary {
    background-color: #e194c1 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
}

.bg-icon-orange {
    background-color: #fbc1a6 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
}

.bg-icon-green {
    background-color: #c5e8e9 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
}

.bg-section-services-institucional {
    background-image: url('/images/elementos/bg-section-services-institucional.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blue-color-06425c) !important;
}

.bg-green { 
    background-color: var(--green-color-0d9da1); 
    transition: all .3s ease-in-out;
}
.bg-orange {
    background-color: var(--orange-color-f56d2d);
    transition: all .3s ease-in-out;
}
.bg-pink {
    background-color: var(--pink-color-b6006e);
    transition: all .3s ease-in-out;
}

.bg-green:hover { 
    background-color: var(--color-green-contrast); 
}
.bg-orange:hover {
    background-color: var(--color-orange-contrast);
}
.bg-pink:hover {
    background-color: var(--color-pink-contrast);
}

.bg-grey {
    background-color: #e4e4e4;
}

.bg-grey1 {
    background-color: #e4e4e4;
}

.bg-grey2 {
    background-color: #e4e4e4;
}

.bg-grey3 {
    background-color: #e4e4e4;
}

.bg-grey1:hover {
    background-color: var(--color-tag-orange);
}

.bg-grey2:hover {
    background-color: var(--color-tag-green);
}

.bg-grey3:hover {
    background-color: var(--color-tag-pink);
}

.bg-hero-institucional {
    background-image: url('/images/elementos/bg-hero-institucional.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Buttons */
.btn-section-service1 {
    color: var(--white-color-ffffff);
    background-color: #ffffff54;
}

.btn-section-service1:hover {
    color: var(--orange-color-f56d2d);
    background-color: #a5340065;
}

.btn-section-service2 {
    color: var(--white-color-ffffff);
    background-color: #ffffff54;
}

.btn-section-service2:hover {
    color: var(--green-color-0d9da1);
    background-color: #053f039a;
}

.btn-section-service3 {
    color: var(--white-color-ffffff);
    background-color: #ffffff54;
}

.btn-section-service3:hover {
    color: var(--pink-color-b6006e);
    background-color: #64022b93;
}

/* Carousels */
.btn-carousel {
    background-color: var(--pink-color-b6006e);
    width: 3rem;
    height: 3rem;
    opacity: 10;
    border: 2.5px solid var(--white-color-ffffff);
    top: 35%;
    transform: translateY(-35%);
}

.btn-carousel-orange {
    background-color: var(--orange-color-f56d2d);
    width: 3rem;
    height: 3rem;
    opacity: 10;
    border: 2.5px solid var(--white-color-ffffff);
    top: 35%;
    transform: translateY(-35%);
}

.btn-carousel-green {
    background-color: var(--green-color-0d9da1);
    width: 3rem;
    height: 3rem;
    opacity: 10;
    border: 2.5px solid var(--white-color-ffffff);
    top: 35%;
    transform: translateY(-35%);
}

.link-gest-secondary {
    color: var(--green-color-0d9da1);
}

.link-gest-secondary:hover {
    color: var(--color-green-contrast);
    transition: all .5s;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card-review {
    min-width: 25em;
    margin-right: 1em;
    padding: 1rem;
    z-index: 999;
}

.glider-track {
    width: 100% !important;
}

.menu-servicos a video {
    z-index: 5;
}

.footer-bg {
    min-height: 398px;
    background-image: url('/images/elementos/Grupo-172.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: optimizeSpeed;
}

.footer-area {
    padding: 3rem 1rem;
    color: var(--white-color-ffffff);
    text-align: center;
}

.logo-footer {
    width: 13rem;
    margin-right: 2.5rem;
}

.social-footer {
    width: 4rem;
    margin-right: .6rem;
}

.copy {
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-medium) 10px/12px var(--unnamed-font-family-poppins);
    letter-spacing: var(--unnamed-character-spacing-0);
    letter-spacing: 0px;
    margin-top: 2rem;
}

.ftext {
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-medium) 10px/12px var(--unnamed-font-family-poppins);
    letter-spacing: var(--unnamed-character-spacing-0);
    letter-spacing: 0px;
    margin-top: 2rem;
}

.section {
    padding: 3rem 1rem;
}

.hero {
    min-height: 100vh;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%; 
    min-height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0, 46, 65) 0%, rgba(0, 45, 65, 0.1) 50%, rgb(0, 46, 65) 100%);
    z-index: 0; 
}

.overlay-card-blog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgb(0, 0, 0) 100%);
    z-index: 0; 
    border-radius: 1em;
}

.title-hero{
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 50px/var(--unnamed-line-spacing-85) var(--unnamed-font-family-poppins);
    letter-spacing: 0px;
    color: #FFFFFF;
}

.sub-hero {
    font-size: x-large;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.scroll-down {
    width: 40px;
    margin-top: 2rem;
}

.align-item-center {
    text-align: center;
}

.servicos-tag {
    display: inline-block;
    font: bold;
    color: #06425C;
    text-transform: uppercase;
    background-color: var(--color-tag);
    border-radius: 12px;
    padding: .5rem;
    margin-bottom: 3rem;
    /* margin-top: 8rem; */
}

.servicos-title {
    font-weight: bold;
    letter-spacing: var(--unnamed-character-spacing-0);
    text-align: center;
    color: #06425C;
    margin-bottom: 4rem;
}

.description-text {
    font-weight: 500;
    letter-spacing: var(--unnamed-character-spacing-0);
    text-align: left;
    color: #313131;
    margin-bottom: 2rem;
}

.div-btn {
    margin-bottom: 2rem;
}

.quem-somos-tag {
    display: inline-block;
    color: var(--green-color-0d9da1);
    text-transform: uppercase;
    background-color: var(--color-tag-green);
    border-radius: 12px;
    padding: .5rem;
    margin-bottom: 3rem;
}

.team-section {
    background-color: #fafafa;
    padding: 5rem 0;
}

.team-title {
    color: var(--blue-color-06425c)
}

.team-description {
    color: #313131;
}

.accessibility {
    padding: 5rem 0;
}

.vd-section-acess {
    position: relative;
}

.img-acess-1 {
    position: absolute;
    z-index: 1;
}

.img-acess-2 {
    position: absolute;
    z-index: 2;
    width: 28rem;
    margin-top: -7rem;
}


.card {
    border-radius: 15px;
}

.card img {
    border-radius: 15px;
}

.small-image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.card-body {
    text-align: center;
}

.service-card-image1 {
    background-image: url('/images/servicos/Janela-de-libras.png');
    background-size: cover;
    background-position: center bottom; 
    background-repeat: no-repeat; 
    height: 100%;
}

.service-card-image2 {
    background-image: url('/images/servicos/capacitacao-aplicativo-surdos-foto.jpg');
    background-size: cover;
    background-position: 33% 67%; 
    background-repeat: no-repeat; 
    height: 100%;
}

.service-card-image3 {
    background-image: url('/images/servicos/atendimento-plataforma-nova-foto.png');
    background-size: cover;
    background-position: 28% 82%; 
    background-repeat: no-repeat; 
    height: 100%;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--white-color-ffffff);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.card-w:hover {
    width: 300px !important;
    transition: all .3s ease-in-out;
}

.link-card1:hover {
    background-position: center bottom; 
    background-size: cover;
}

.link-card2:hover {
    background-position: 33% 67%; 
    background-size: cover;
}

.link-card3 {
    background-position: 28% 82%; 
    background-size: cover;
}

.service-card:hover .arrow-card {
    display: block;
    transition: all 0.3s ease-in-out;
}

.arrow-card {
    display: none;
    transition: all 0.4s ease-in-out;
}

.service-btn {
    background-color: var(--green-color-0d9da1);
    transition: all .5s ease-in-out;
}

.service-card .card-content {
    padding: 1rem;
}

.service-card .overlay-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 45, 65, 0.1) 50%, rgb(0, 46, 65) 100%);
    transition: opacity 0.3s;
}

.service-card .icon-card {
    width: 4em;
    height: 4em;
}

.icon-link-card-service {
    width: 3em;
}

.arrow-card a {
    display: inline-block;
}

.card-content {
    z-index: 999;
}

video {
    display: block;
    cursor: pointer;
}

/* Slide */
.btn-carousel {
    background-color: var(--pink-color-b6006e);
    width: 3rem;
    height: 3rem;
    opacity: 10;
    border: 2.5px solid var(--white-color-ffffff);
    top: 35%;
    transform: translateY(-35%);
}

.div-icon-slider {
    border: 3px solid var(--white-color-ffffff);
    border-radius: 100%;
    bottom: 5%;
    right: 17%;
}

.div-slide-item {
    min-width: 14.5em;
    margin: 1rem;
}

/* Work Slider */
.slider-work-contain {
    position: relative;
}

.slider-work {
    display: flex;
    overflow: hidden;
    padding: 0 20px;
}

/* Slide Static */
.slider-work-prev, .slider-work-next {
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 2em;
    cursor: pointer;
    background-color: var(--orange-color-f56d2d);
    padding: .2rem .7rem;
}

/* .btn-slide-work-prev {
    left: 10px;
}

.btn-slide-work-next {
    right: 10px;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots-slide-work, .dots-slide-work-active {
    width: 12px;
    height: 12px;
    background-color: var(--orange-color-f56d2d);
    border-radius: 50%;
    cursor: pointer;
}

.dots-slide-work-active {
    background-color: var(--orange-color-f56d2d);
} */

.work-slider-orange.glider-dot {
    background-color: var(--white-color-ffffff) !important;
    border: 1px solid var(--orange-color-f56d2d) !important;
    border-color: var(--orange-color-f56d2d) !important;
}

.glider-dot {
    font-size: 2em;
    cursor: pointer;
    background-color: var(--white-color-ffffff) !important;
    border: 1px solid var(--orange-color-f56d2d) !important;
    border-color: var(--orange-color-f56d2d) !important;
}

.glider-dot:hover {
    font-size: 2em;
    cursor: pointer;
    background-color: var(--orange-color-f56d2d) !important;
    color: var(--white-color-ffffff) !important;
}

.glider-dot.active {
    font-size: 2em;
    cursor: pointer;
    background: var(--orange-color-f56d2d) !important;
    color: var(--white-color-ffffff) !important;
}

.work-dots-green .glider-dot.active {
    font-size: 2em;
    cursor: pointer;
    background: var(--green-color-0d9da1) !important;
    color: var(--white-color-ffffff) !important;
}

.work-dots-green .glider-dot:hover {
    background-color: var(--green-color-0d9da1) !important;
}

.work-dots-green .glider-dot {
    border: 1px solid var(--green-color-0d9da1) !important;
    border-color: var(--green-color-0d9da1) !important;
}

.btn-slide-work {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 2em;
    cursor: pointer;
    background-color: var(--orange-color-f56d2d);
    padding: .2rem .7rem;
    color: var(--white-color-ffffff);
    width: 3rem;
    height: 3rem;
}

.btn-slide-work-desab {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 2em;
    cursor: pointer;
    background-color: var(--color-tag-orange);
    padding: .2rem .7rem;
    color: var(--white-color-ffffff);
    width: 3rem;
    height: 3rem;
}

.random-images-section {
    display: flex;
    justify-content: center;
}

.random-image-item {
    width: 25%;
    height: 20%;
    background-size: cover;
    background-position: center center;
    margin: 5px;
}

.random-images-section .random-image-item:nth-child(-n+4) {
    display: block;
}

/* Work Slide Green */
.btn-slide-work-green {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 2em;
    cursor: pointer;
    background-color: var(--green-color-0d9da1);
    padding: .2rem .7rem;
    color: var(--white-color-ffffff);
    width: 3rem;
    height: 3rem;
}

.btn-slide-work-green-desab {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 2em;
    cursor: pointer;
    background-color: var(--color-tag-green);
    padding: .2rem .7rem;
    color: var(--white-color-ffffff);
    width: 3rem;
    height: 3rem;
}

.dots-slide-work {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    cursor: pointer;
    background-color: var(--white-color-ffffff);
    border: 1px solid var(--orange-color-f56d2d);
    border-radius: 100%;
}

/* .dots-slide-work-active {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    cursor: pointer;
    background-color: var(--orange-color-f56d2d);
    border-radius: 100%;
}

.dots-slide-work-green:hover {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    cursor: pointer;
    background-color: var(--green-color-0d9da1);
    border-radius: 100%;
}

.dots-slide-work-green {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    cursor: pointer;
    background-color: var(--white-color-ffffff);
    border: 1px solid var(--green-color-0d9da1);
    border-radius: 100%;
}

.dots-slide-work-green-active {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    cursor: pointer;
    background-color: var(--green-color-0d9da1);
    border-radius: 100%;
}

.dots-slide-work-green:hover {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    cursor: pointer;
    background-color: var(--green-color-0d9da1);
    border-radius: 100%;
} */

.slider-work-prev {
    left: 10px;
}

.slider-work-next {
    right: 10px;
}

.slider-work-dots {
    text-align: center;
    padding-top: 20px;
}

.slider-work-dots button {
    background-color: #ccc; 
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    background-color: var(--white-color-ffffff);
    border: 1px solid var(--orange-color-f56d2d);
}

.slider-work-dots button.active {
    background-color: var(--orange-color-f56d2d) !important; 
}

.slider-work-dots button:hover {
    background-color: var(--orange-color-f56d2d) !important;
}
/* End Slide Static */

/* Contact */
.contact-input {
    border: 1px solid #06425C !important;
}

.contact-input::placeholder {
    padding: .5rem 1rem;
}


.parceiros-hero {
    background-image: url('/images/elementos/bg-hero-parceiros.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.input-border-white {
    border: 1px solid var(--white-color-ffffff) !important;
    background: none;
    color: var(--white-color-ffffff);
}

.input-border-white::placeholder{
    color: var(--white-color-ffffff);
}

.input-border-white:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 144, 0.5); 
    border-color: rgba(255, 0, 144, 0.8); 
    background: var(--white-color-ffffff);
    color: var(--blue-color-06425c);
}

option {
    color: var(--blue-color-06425c);
    margin: 0;
    padding: 0;
}

option:hover {
    color: var(--white-color-ffffff);
}

.custom-file-input:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem var(--green-color-0d9da1); 
}

.custom-file-label {
    color: white;
    white-space: nowrap;
}

.form-floating {
    position: relative;
}

.form-select {
    height: 35px !important;
    min-height: auto !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 1.5rem;
    padding-right: 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.select-icon {
    position: absolute;
    top: 7px;
    right: 1.5rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.select-icon svg {
    color: var(--white-color-ffffff);
}

.upload-input-area {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 1rem;
}

.invisible{
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.btn-file {
    background-color: var(--green-color-0d9da1);
    border: 1px solid var(--white-color-ffffff); 
    color: var(--white-color-ffffff);
    white-space: nowrap;
    transition: all .3s ease-in-out;
}

.btn-file:hover {
    background-color: var(--color-green-contrast);
}

.btn-file:focus {
    outline: none;
    color: var(--white-color-ffffff);
    background-color: var(--color-green-contrast);
    box-shadow: 0 0 0 0.25rem var(--green-color-0d9da1); 
    border-color: var(--green-color-0d9da1); 
}

.blog-card-bg {
    background-image: url('/images/servicos/team.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-body {
    z-index: 999;
}

/* Search bar */
.search-form{
    color: var(--blue-color-06425c);
}

.form-input{
    height: 40px;
    text-indent: 33px;
    background-color: #f1f1f1;
}

.form-input::placeholder {
    color: #c2c2c2;
}

.form-input:focus{
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 144, 0.5); 
    border: 1px solid var(--pink-color-b6006e);
}

.item-pagination {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--blue-color-06425c);
    cursor: pointer;
}

.item-pagination:hover {
    background-color: var(--blue-color-06425c);
    color: var(--white-color-ffffff);
    transition: all .3s ease-in-out;
}

.item-pagination-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pag-active {
    background-color: var(--blue-color-06425c);
    color: var(--white-color-ffffff);
}

.post-image {
    background-image: url('/images/servicos/team.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50vh;
    border-radius: 2rem;
}

.blockquote {
    border-left: 4px solid var(--blue-color-06425c);
    padding-left: 1rem;
}

.link-blog-article {
    color: var(--green-color-0d9da1);
    text-decoration: underline !important;
}

.link-blog-article:hover {
    color: var(--color-green-contrast);
}

.benefit-title-area {
        display: flex;
        justify-content: left;
        margin-top: 0;
}

.benefit-text-atea ul {
    padding-left: 0;
}

/* [data-show="img"] .img {
    display: block;
}

[data-show="gif"] .gif {
    display: block;
}

[data-show="img"] .gif {
    display: none;
}

[data-show="gif"] .img {
    display: none;
} */

.glider-track {
    display: flex !important;
    align-items: flex-start !important;
}

#pdfPreviewContainer {
    margin-top: 5px;
    width: 100%;
    height: 32em; 
    display: none;
}
#pdfPreview {
    margin-left: 10px !important;
    width: 100%; 
    height: 100%; 
    border: none; 
}
#fileName {
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width: 990px) {
    .navbar-collapse {
        /* position:absolute;
        top: 4;
        left: 0;
        width: 100%; */
        background-color: #ffffff;
        padding: 1rem 0 2rem 1rem;
    }
    .navbar-nav .nav-link {
        color: var(--blue-color-06425c) !important;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        color: white;
        text-align: center;
    }
    .title-hero {
        font-size: 2rem;
        line-height: 3.5rem;
    }
    .sub-hero {
        font-size: large;
    }
    .img-section-acess {
        margin-top: 15rem;
    }
    .content-section-team{
        margin-top: 3rem;
        margin-bottom: -3rem;
    }
    #prime-post {
        min-height: 18em; /* Define a altura mínima para os cards em telas menores */
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 16rem;
    }

    .btn-gest-secondary {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .p-mobile {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .p-1-5-mobile {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .mt-mobile{
        margin-top: 3rem !important;
    }

    .pl0-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .div-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .glider-track {
        display: flex !important;
        align-items: flex-start !important;
    }

    .team-row-mobile {
        display: block;
    }

    .w-auto-mobile {
        width: auto !important;
    }

    .w-100-mobile {
        width: 100% !important;
    }

    .w-90-mobile {
        width: 90% !important;
    }

    .mobile-slide-icon {
        width: 2.5em;
        margin-right: .5rem;
        margin-bottom: .5rem;
    }

    .max-100-mobile {
        max-width: 100% !important;
        width: 100% !important;
    }

    .ul-mobile {
        padding-left: 1.2rem !important;
        padding-right: .2rem;
    }

    .title-hero {
        font-size: 2rem !important;
    }

    .flex-col-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flex-col-around-mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .flex-start-mobile {
        display: flex;
        flex-direction: row;
        justify-content: start !important;
        align-items: center;
    }

    .mb-mobile {
        margin-bottom: 1rem !important;
    }

    .m-0-mobile {
        margin: 0 !important;
    }

    .btn-plan-mobile {
        margin-bottom: 1rem !important;
        padding: .6rem 3.9rem !important;
        width: 100%;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .img-mobile-95 {
        width: 95% !important;
    }

    .custom-border-r {
        border-right: none !important;
    }
    
    .custom-border-r-green {
        border-right: none !important;
    }
    
    .custom-border-r-orange {
        border-right: none !important;
    }

    .order-2-mobile {
        order: 2 !important;
    }

    .h-100-mobile {
        height: 100% !important;
    }

    .benefit-title-area {
        justify-content: center !important;
        margin-top: 1rem;

    }
    .service-card {
        width: 100%;
    }

    .arrow-card {
        display: block;
    }
}

/* @media (max-width: 512px) {
    .btn-gest-secondary {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .p-mobile {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .p-1-5-mobile {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .mt-mobile{
        margin-top: 3rem !important;
    }

    .div-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .glider-track {
        display: flex !important;
        align-items: flex-start !important;
    }

    .team-row-mobile {
        display: block;
    }

    .w-auto-mobile {
        width: auto !important;
    }

    .w-100-mobile {
        width: 100% !important;
    }

    .w-90-mobile {
        width: 90% !important;
    }

    .w-80-mobile {
        width: 80%;
    }

    .mobile-slide-icon {
        width: 2.5em;
        margin-right: .5rem;
        margin-bottom: .5rem;
    }

    .title-hero {
        font-size: 2rem !important;
    }

    .flex-col-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flex-start-mobile {
        display: flex;
        flex-direction: row;
        justify-content: start !important;
        align-items: center;
    }

    .m1-mobile{
        margin: 1rem;
    }

    .mb-mobile {
        margin-bottom: 1rem !important;
    }

    .mt-mobile-1 {
        margin-top: 1rem !important;
    }

    .mt-mobile-2 {
        margin-top: 2rem !important;
    }

    .m-0-mobile {
        margin: 0 !important;
    }

    .btn-plan-mobile {
        margin-bottom: 1rem !important;
        padding: .6rem 3.9rem !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .img-mobile-95 {
        width: 95% !important;
    }

    .custom-border-r {
        border-right: none !important;
    }
    
    .custom-border-r-green {
        border-right: none !important;
    }
    
    .custom-border-r-orange {
        border-right: none !important;
    }

    .order-2-mobile {
        order: 2 !important;
    }

} */
 
/* }

@media (max-width: 690px) {
    .custom-border-r {
        border-right: none !important;
    }
    
    .custom-border-r-green {
        border-right: none !important;
    }
    
    .custom-border-r-orange {
        border-right: none !important;
    }
} */
