/* TEMA */
:root {
    --cor-magenta: #a40c4b;
    --cor-rosa: #c10464;
    --cor-vermelho: #e30c3d;
    --cor-cinza: rgba(0, 0, 0, 0.5);
    --cor-clara: #ffffff;
    --cor-clara-alpha: rgba(255, 255, 255, 0.6);
    --cor-media: #d9d9d944;
    --cor-escura: #3b3b3b;
    --cor-gradiente: linear-gradient(
        90deg,
        #a40c4b 0%,
        #c10464 53.13%,
        #e30c3d 100%
    );
}

.cor-magenta,
.cor-magenta * {
    color: var(--cor-magenta);
}
.cor-rosa,
.cor-rosa * {
    color: var(--cor-rosa);
}
.cor-vermelho,
.cor-vermelho * {
    color: var(--cor-vermelho);
}
.cor-clara,
.cor-clara *,
a.cor-clara,
a.cor-clara:active,
a.cor-clara:visited {
    color: var(--cor-clara);
}
.cor-media,
.cor-media * {
    color: var(--cor-media);
}
.cor-escura,
.cor-escura * {
    color: var(--cor-escura);
}
.cor-cinza,
.cor-cinz * {
    color: var(--cor-cinza);
}
.cor-clara-alpha,
.cor-clara-alpha * {
    color: var(--cor-clara-alpha);
}

body {
    color: var(--cor-escura);
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 30px;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h1 {
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -2px;
}

h2 {
    font-size: 50px;
    line-height: 65px;
    font-weight: 600;
}

h4 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
}

p {
    color: var(--cor-escura);
    margin: 0;
}

.bg-primary {
    position: relative;
    background-color: var(--cor-magenta) !important;
}
/* .bg-primary.login::after {
    content: "";
    height: 85%;
    width: 40%;
    background-image: url(../img/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left -40% top 100px;
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 0;
} */
/* .login-person {
    height: 100%;
 } */
 .login-person img{
    height: 80%;
    width: auto;
 }

.bg-primary::before {
    content: "";
    height: 170px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../img/padrao-horizontal-branco.svg);
    background-repeat: repeat-x;
    background-size: 500px;
    opacity: 0.3;
    z-index: 1;
}

.form-control,
.form-select {
    font-size: 15px;
    border-radius: 20px;
    padding: 10px 25px 10px 25px;
    border: 1px solid #000;
    color: var(--cor-magenta) !important;
    font-weight: 300;
}

.form-control::placeholder,
.form-control::-webkit-input-placeholder {
    /* color: var(--cor-magenta); */
    color: transparent !important;
}
.choices__placeholder {
    opacity: 1;
}
input.form-control{
    min-height: 45px !important;
    height: 45px;
}
.choices__inner {
    min-height: 45px !important;
    height: 45px;
    border-radius: 20px !important;
}

.btn {
    border: none;
    background: var(--cor-media);
    border-radius: 40px;
    color: var(--cor-escura);
    display: flex;
    gap: 10px;
    font-size: 25px;
    padding: 20px 35px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-sm {
    border: none;
    background: var(--cor-media);
    border-radius: 30px;
    color: var(--cor-escura);
    display: flex;
    gap: 10px;
    font-size: 15px;
    padding: 10px 25px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn.btn-primary {
    background: var(--cor-magenta) var(--cor-gradiente);
    color: var(--cor-clara);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--cor-vermelho);
    border: 1px solid var(--cor-vermelho);
}

.btn.btn-ghost {
    background: transparent;
    color: var(--cor-clara);
    border: 1px solid var(--cor-clara);
    padding: 10px 30px;
}

.btn.btn-payment{
    background: var(--cor-magenta) var(--cor-gradiente);
    color: var(--cor-clara);
    font-size: 15px;
    padding: 10px 20px;
}

.btn.btn-form{
    background: var(--cor-magenta) var(--cor-gradiente);
    color: var(--cor-clara);
    font-size: 15px;
    padding: 10px 20px;
    margin:0;
}

a {
    text-decoration: none;
}
a:hover {
    color: var(--cor-rosa);
}
a:visited,
a:active {
    color: white;
}

/* HEADER */
header {
    background: var(--cor-magenta) var(--cor-gradiente);
    position: relative;
    overflow: hidden;
}

header::before {
    background-image: url("../img/padrao-horizontal-branco.svg");
    background-size: contain;
    background-position: center center;
    bottom: -10px;
    content: "";
    display: block;
    height: 200px;
    left: 0;
    opacity: 0.2;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

header .container {
    padding: 30px 0;
    z-index: 2;
    position: relative;
}

header .row:nth-child(1) {
    border-bottom: 1px solid #ffffff55;
    padding: 20px 0;
}
header#main-simple .row:nth-child(1){
    border-bottom: none;
    padding: 10px 0;
}

header .logo {
    max-height: 98px;
}
header .logo-small {
    max-height: 50px;
}

header .menu {
    align-items: center;
    display: flex;
    gap: 38px;
    height: 100%;
    list-style: none;
}

header .menu a {
    text-decoration: none;
    white-space: nowrap;
}

header .toggle {
    align-items: center;
    display: flex;
    height: 100%;
    display: none;
}

header .toggle a {
    font-size: 30px;
    text-decoration: none;
    white-space: nowrap;
}

header .row:nth-child(2) {
    padding: 30px 0;
}

header .row:nth-child(2) > div {
    position: relative;
}

header .row:nth-child(2) > div > div {
    padding: 30px 0;
}

header .row:nth-child(2) h1 {
    margin-bottom: 40px;
}

header .row:nth-child(2) p {
    color: #ffffff77;
    margin-bottom: 30px;
}

.form-backdrop {
    background: var(--cor-clara);
    border-radius: 100px;
    display: flex;
    margin-right: 100px;
    padding: 10px;
}

header .row:nth-child(2) form > div input {
    border: none;
}

header .row:nth-child(2) .imagens {
    display: flex;
    gap: 15px;
    height: 100%;
    padding: 0;
}

header .row:nth-child(2) .imagens > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

header .row:nth-child(2) .imagens > div > div {
    background-color: var(--cor-rosa);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 46px;
}

header .row:nth-child(2) .imagens .img-1 {
    width: 617px;
    height: 100%;
}
header .row:nth-child(2) .imagens .img-2 {
    width: 325px;
    height: 30%;
}
header .row:nth-child(2) .imagens .img-3 {
    width: 325px;
    height: 70%;
}

/* QUEM SOMOS */
#quem-somos .container {
    padding: 100px 0;
}

#quem-somos .imagens {
    display: flex;
    gap: 15px;
    height: 100%;
    padding: 0;
}

#quem-somos .imagens > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#quem-somos .imagens > div > div {
    background-color: var(--cor-rosa);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 46px;
}

#quem-somos .imagens .img-4 {
    width: 417px;
    height: 100%;
}

#quem-somos .imagens .img-5 {
    width: 307px;
    height: 70%;
}

#quem-somos .imagens .gota {
    background: var(--cor-gradiente);
    border-radius: 90px 30px 90px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 180px;
    margin-top: 10px;
}

#quem-somos .imagens .gota img {
    height: 70%;
}

#quem-somos .container h2 {
    margin-bottom: 50px;
}

/* CLIENTES */
#clientes {
    margin-bottom: 100px;
}

#clientes .container {
    background: #f3f3f32e;
    border: 1px solid var(--cor-vermelho);
    border-radius: 30px;
}

#clientes ul {
    padding: 30px 0;
    list-style: none;
}

#clientes ul li img {
    max-height: 135px;
    width: auto;
}

/* COMO FUNCIONA */
#como-funciona {
    overflow: hidden;
}

#como-funciona .container {
    background: var(--cor-gradiente);
    border-radius: 30px;
    padding: 70px 90px;
    position: relative;
}

#como-funciona .container::before {
    background-image: url("../img/padrao-vertical-branco.svg");
    background-size: contain;
    background-position: center center;
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    right: -10px;
    pointer-events: none;
    position: absolute;
    width: 200px;
}

#como-funciona .container h2 {
    margin-bottom: 20px;
}

#como-funciona .container .slider-vertical {
    max-height: 345px;
    overflow: hidden;
}

#como-funciona .row > div ul {
    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: transform 0.3s ease-in;
}

#como-funciona .row > div ul li {
    align-items: center;
    display: flex;
    gap: 15px;
    overflow: hidden;
    height: 120px;
}

#como-funciona .row > div ul li > div:nth-child(1) strong {
    align-items: center;
    background: var(--cor-clara);
    border-radius: 40px;
    color: var(--cor-magenta);
    display: flex;
    font-size: 35px;
    justify-content: center;
    height: 80px;
    width: 80px;
}

#como-funciona .row > div ul li > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#como-funciona .row > div ul li > div:nth-child(2) p {
    color: #ffffff77;
    font-size: 17px;
    line-height: 25px;
}

#como-funciona .row > div {
    min-height: 500px;
    position: relative;
}

#como-funciona .row > div .img-dashboard {
    left: 50%;
    border-radius: 15px;
    position: absolute;
    transform: translateX(-50%);
    top: 20%;
    margin-left: 90px;
}

#como-funciona .img-dashboard {
    background-image: url("../img/img-dashboard.jpg");
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 0 10px #3b3b3b77;
    height: 500px;
    width: 800px;
}

#como-funciona .dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    list-style: none;
    transform: translateX(-50%);
}

#como-funciona .dots a {
    background: transparent;
    border: 1px solid var(--cor-clara);
    border-radius: 10px;
    display: flex;
    height: 20px;
    width: 20px;
}

#como-funciona .dots li a.ativo {
    background: var(--cor-clara);
}

/* VANTAGENS */
#vantagens {
    padding: 100px 0;
    overflow-x: hidden;
}

#vantagens .col > div {
    display: flex;
    gap: 30px;
}

#vantagens .col > div div:nth-child(1) {
}

#vantagens .col > div div:nth-child(2) {
    position: relative;
    flex-grow: 1;
}

#vantagens .col > div div:nth-child(2) .padrao {
    background-image: url("../img/padrao-horizontal-vermelho.svg");
    background-size: contain;
    height: 90px;
    position: absolute;
    left: 0;
    width: 760px;
    top: 50%;
    transform: translateY(-50%);
}

#vantagens ul {
    padding-top: 50px;
    list-style: none;
    display: flex;
    gap: 15px;
}

#vantagens ul li > img {
    height: 440px;
    margin-left: 30px;
}

#vantagens ul li > div {
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px #00000011;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    height: 440px;
    width: 470px;
    position: relative;
    overflow: hidden;
}

#vantagens ul li > div h4 {
    color: var(--cor-magenta);
    margin-bottom: 15px;
}
.diferencial {
    position: relative;
}

#vantagens ul li > div p {
    color: var(--cor-magenta);
    position: absolute;
    bottom: -200px;
    left: -200px;
    opacity: 0;
    max-width: 390px;
    min-height: 180px;
}

/*#vantagens ul li > div::before {*/
/*  background-image: url('../img/padrao-vertical-vermelho.svg');*/
/*  content: "";*/
/*  height: 700px;*/
/*  width: 160px;*/
/*  position: absolute;*/
/*  top: 20%;*/
/*  right: 20px;*/
/*  background-size: contain;*/
/*  opacity: .3;*/
/*}*/

#vantagens .decoracaov {
    background-image: url("../img/padrao-vertical-vermelho.svg");
    content: "";
    height: 700px;
    width: 160px;
    position: absolute;
    top: 20%;
    right: 20px;
    background-size: contain;
    opacity: 0.3;
}

#vantagens .decoracaob {
    background-image: url("../img/padrao-vertical-branco.svg");
    content: "";
    height: 700px;
    width: 160px;
    position: absolute;
    top: 20%;
    right: 20px;
    background-size: contain;
    opacity: 0;
}

#vantagens ul li > div::after {
    background: var(--cor-magenta);
    border-radius: 21px;
    content: "";
    height: 42px;
    width: 42px;
    position: absolute;
    top: 20px;
    right: 20px;
}

#vantagens ul li.ativo > div {
    background: var(--cor-magenta);
}

#vantagens ul li.ativo > div h4 {
    color: var(--cor-clara);
    z-index: 2;
    position: relative;
}

#vantagens ul li.ativo > div p {
    color: var(--cor-clara);
    height: auto;
    opacity: 1;
    z-index: 2;
    position: relative;
}

#vantagens ul li.ativo > div::before {
    background-image: url("../img/padrao-vertical-branco.svg");
    top: -36%;
}

#vantagens ul li.ativo > div::after {
    background: var(--cor-rosa);
    height: 31px;
    width: 31px;
    top: 24px;
    right: 24px;
}

/* PLANOS */
#planos {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
}

#planos .col > div {
    display: flex;
    gap: 30px;
}

#planos .col > div div:nth-child(1) {
}

#planos .col > div div:nth-child(2) {
    position: relative;
    flex-grow: 1;
}

#planos .btn-secondary {
    color: var(--cor-vermelho);
    border: 2px solid var(--cor-magenta);
}

#planos .plano .btn-secondary {
    color: var(--cor-magenta);
    margin-top: 40px;
}
#planos .plano .btn-primary {
    margin-top: 40px;
}

#planos .pill {
    background: #f7f7f7;
    color: #a1a1a1;
    border-radius: 50px;
    padding: 10px 20px;
    width: auto;
    margin: auto;
}

#planos .active .pill {
    color: var(--cor-magenta);
    background: #a40c4b19;
}

#planos ul {
    padding-top: 50px;
    list-style: none;
    gap: 15px;
}

#planos ul.features li {
    color: #ccc;
    font-size: 17px;
    font-weight: 300;
}

#planos ul.features li.active {
    color: #000;
    font-size: 20px;
}

#planos ul.features li.active > i {
    color: var(--cor-magenta) !important;
}

#planos ul li > div {
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px #00000011;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    height: 550px;
    width: 470px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#planos ul li > div.active {
    border-radius: 20px;
    border: 1px solid var(--cor-magenta);
    box-shadow: 0px 0px 5px 0px #00000011;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    height: 550px;
    width: 470px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#planos ul li > div h4 {
    margin-bottom: 15px;
}
#planos ul li > div h5 {
    color: #989898;
}
.diferencial {
    position: relative;
}

#planos ul li > div p {
    color: var(--cor-magenta);
    position: absolute;
    bottom: -200px;
    left: -200px;
    opacity: 0;
    max-width: 390px;
    min-height: 180px;
}

#planos ul li.ativo > div h4 {
    color: var(--cor-clara);
    z-index: 2;
    position: relative;
}

#planos ul li.ativo > div p {
    color: var(--cor-clara);
    height: auto;
    opacity: 1;
    z-index: 2;
    position: relative;
}

#planos ul li.ativo > div::before {
    background-image: url("../img/padrao-vertical-branco.svg");
    top: -36%;
}

#planos ul li.ativo > div::after {
    background: var(--cor-rosa);
    height: 31px;
    width: 31px;
    top: 24px;
    right: 24px;
}

/* CONTATO */
#contato {
    margin-bottom: 100px;
}

#contato .imagens {
    display: flex;
    gap: 15px;
    height: 100%;
    padding: 0;
}

#contato .imagens > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contato .imagens > div > div {
    background-color: var(--cor-rosa);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 46px;
}

#contato .imagens .img-6 {
    width: 417px;
    height: 100%;
}

#contato .imagens .img-7 {
    width: 307px;
    height: 70%;
}

#contato .imagens .gota {
    background: var(--cor-gradiente);
    border-radius: 90px 30px 90px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 180px;
    margin-top: 10px;
}

#contato .imagens .gota img {
    height: 70%;
}

#contato h2 {
    margin-bottom: 20px;
}

#contato p {
    margin-bottom: 20px;
}

#contato form .row {
    row-gap: 15px;
}
#contato .form-control, #contato .form-select{
    border: 1px solid #ced4da;
}

/* FOOTER */
footer {
    background: var(--cor-magenta);
    position: relative;
    overflow: hidden;
}

footer::before {
    background-image: url("../img/padrao-horizontal-branco.svg");
    background-size: contain;
    background-position: center center;
    bottom: -50px;
    content: "";
    display: block;
    height: 200px;
    left: 0;
    opacity: 0.2;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

footer .container {
    padding: 50px 0;
    z-index: 2;
    position: relative;
}

footer .row > div > div {
    display: flex;
    align-items: center;
    gap: 30px;
}

footer .row > div > div p {
    margin-top: 20px;
    font-size: 13px;
}

footer .logo {
    max-height: 68px;
}

footer a,
footer a:hover,
footer a:visited,
footer a:active {
    color: var(--cor-clara);
}

footer .nav {
    display: inline-block;
}

footer .nav li a {
    font-size: 20px;
    line-height: 40px;
    color: var(--cor-clara);
}

footer ul.social {
    align-items: center;
    display: flex;
    gap: 38px;
    height: auto;
    justify-content: center;
    list-style: none;
}

footer ul {
    align-items: center;
    display: flex;
    gap: 38px;
    height: 100%;
    justify-content: flex-end;
    list-style: none;
}

footer ul li a {
    font-size: 30px;
}

footer ul li a img {
    max-height: 70px;
}

.feedback-news {
    padding: 20px 40px;
    margin-right: 100px;
    border-radius: 80px;
    display: none;
}

.feedback-contact {
    padding: 20px 40px;
    border-radius: 80px;
    display: none;
}

footer h3 {
    color: var(--cor-clara);
    font-size: 50px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

footer .copyright ul {
    display: flex;
}

.alert {
    border-radius: 20px;
}

.alert-success {
    color: white !important;
    background-color: lightgreen !important;
}

.alert-success p {
    color: white;
}

.alert-danger {
    color: white;
    background-color: #ab1126 !important;
    border: 1px solid white;
}

.btn.btn-cta {
    background: white !important;
    color: #ab1126;
    width: 370px !important;
    border: 2px solid #ab1126;
}

.about-us-toggle {
    cursor: pointer;
    font-size: 20px;
}

.subtitle {
    letter-spacing: 4px;
}
.padrao-planos-container {
    position: relative;
    height: 90px;
    margin: 30px 0;
}
.padrao-planos {
    background-image: url("../img/padrao-horizontal-vermelho.svg");
    background-size: contain;
    height: 90px;
    position: absolute;
    left: 0;
    width: 760px;
    top: 50%;
    left: -60%;
    transform: translateY(-50%);
}
/* Estilo para o campo de erro */
input.error {
    border: 1px solid red;
}
/* Estilo para a mensagem de erro */
label.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.form-page {
    min-height: 100vh;
}

.login-logo {
    max-height: 66px;
}

.form-page h2 {
    font-weight: 500;
    line-height: 55px;
    letter-spacing: -2px;
}

.form-page h3 {
    font-size: 40px;
    font-weight: 600;
}

.form-page ul {
    list-style: none;
    line-height: 40px;
}

.form-page .h-100vh {
    min-height: 100vh;
}
@media (max-width: 767px){
    .form-page .h-100vh {
        min-height: auto;
    }
    .form-page h3 {
        font-size: 28px;
        font-weight: 600;
    }
}

.form-page small {
    font-weight: 300;
    font-size: 14px;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: white;
    border: 1px solid #000;
    border-radius: 40px;
}

.input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-left: none !important;
    border-radius: 0 40px 40px 0 !important;
}
.input-group
    > :not(:last-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-right: none !important;
    border-radius: 40px 0 0 40px !important;
}

.form-page .checkbox-label {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

/*label {*/
/*    font-size: 20px;*/
/*    border-radius: 35px;*/
/*    padding: 0 0 0 35px;*/
/*    color: var(--cor-magenta) !important;*/
/*    font-weight: 300;*/
/*}*/

label {
    font-size: 15px;
    border-radius: 35px;
    padding: 0;
    margin-top: 8px;
    margin-bottom: 0.1rem;
    color: var(--cor-magenta) !important;
    font-weight: 300;
}

textarea {
    height: 130px;
}

.oportunity-details p {
    color: var(--cor-cinza);
    line-height: 32px;
    font-size: 18px;
}

.oportunities-table {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.oportunities-table .btn {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 10px;
}

.logo-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    margin: auto;
}

.text-xs {
    font-size: 12px;
}

/* Estilização do carrossel de depoimentos home */
.div-titulo {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
    & .linha {
      margin-top: 10px;
      width: 60px;
      height: 2px;
      background-color: #de0b42;
    }
    & .texto-titulo {
      color: #de0b42;
      font-size: 40px;
      font-weight: bold;
      margin: 0;
    }
}
.item.depoimento {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.item.depoimento {
    .card {
        border-radius: 15px;
        padding-top: 2rem;
        width: 700px;
        min-height: 350px;
        height: 100%;
        aspect-ratio: 16/9;
        & .div-titulo.left {
        flex-direction: row;
        }
        & .div-titulo.right {
        flex-direction: row-reverse;
        }
        & .div-texto {
        display: flex;
        justify-content: center;
        padding: 2rem 3rem 0;
        gap: 1em;
        & .aspas {
            width: 20px !important;
            height: 15px;
            margin-top: -0.5em;
        }
        & .texto-depoimento {
            color: #2b2b2b;
            width: 90%;
            text-align: justify;
            margin: 0;
        }
        }
        & .div-autor {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1em 3rem;
        gap: 1em;
        & img {
            margin-left: 3rem;
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }
        & p {
            white-space: nowrap;
            font-weight: bold;
        }
        }
        & .logo-depoimento {
        position: absolute;
        bottom: 1em;
        right: 1em;
        width: 35px !important;
        height: 35px;
        margin: 0 1em 1em auto;
        }
    }
}

.text-justify {
    text-align: justify;
}

/* Estilo para os dots do Owl Carousel */
.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding-top: 1em;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc !important;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background-color: #a60c4d !important;
    transform: scale(1.2);
}


#termos {
    padding: 60px 0;
}
#termos h2{
    padding-bottom: 5px;
}
#termos h3 {
    padding: 20px 0 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}
#termos h3 strong{
    border-radius: 30px;
    font-size: 25px;
    height: 50px;
    width: 50px;
    align-items: center;
    background: var(--cor-magenta);
    color: var(--cor-clara);
    display: flex;
    justify-content: center;
}
#termos ul{
    padding: 1rem 2rem;
}
#termos ul li::marker{
    color: var(--cor-magenta);
}

#politica {
    padding: 60px 0;
}
#politica h2{
    padding-bottom: 5px;
}
#politica p{
    padding-bottom: 5px;
}
#politica p strong{
    color: var(--cor-magenta);
}
#politica h3 {
    color: var(--cor-magenta);
    padding: 20px 0 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn.btn-linkedin{
    white-space: nowrap;
    width: fit-content !important;
}

.form-control, .form-control::placeholder {
    color: #6c757d !important;
}

.modal-body *{
    font-size: 13px !important;
}
.choices__item {
    white-space: pre-line; /* Garante que quebras de linha (\n) sejam interpretadas corretamente */
}

.choices__list--single {
    line-height: 17px;
    white-space: normal !important;
}

.choices__list--dropdown .choices__item {
    line-height: 17px;
    padding-top:10px;
    padding-bottom:10px;
    margin:20px;
    border:1px solid #adadad;
}
