/* ----------------------------------------------------------
    Theme Name: Sind Experience Theme
    Theme URI: https://marcasite.com.br
    Author: Henrique Quintino
    Author URI: https://www.linkedin.com/in/henrique-quintino/
    Description: Tema oficial da Sind Experience criada pela Marcasite
    Requires at least: 6.4
    Tested up to: 6.4
    Requires PHP: 7.0
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    ----------------------------------------------------------

/***************************************************************************
       Fonts
***************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/***************************************************************************
       Variáveis
***************************************************************************/

:root {
    --cor-branco: #ffffff;
    --cor-preto: black;
    --cor-amarelo: #f2ff00;

    --font-Montserrat: "Montserrat", sans-serif;
    --font-OpenSans: "Open Sans", sans-serif;

    --font-extralight: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

/***************************************************************************
        All
***************************************************************************/

.transition_on *,
.transition_on {
    transition: ease .5s all !important;
}

html,
body {
    margin: 0;
    overflow-x: clip;
    background-color: var(--cor-preto);
}

* {
    margin: 0;
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
    font-family: var(--font-Montserrat);
}

a:hover {
    text-decoration: none;
    color: var(--cor-branco);
}

span {
    font-size: 1.4375rem;
    line-height: 1.75rem;
    font-weight: var(--font-light);
    color: var(--cor-amarelo);
}

h2,
h3 {
    color: var(--cor-branco);
    margin-bottom: 0;
}

h2,
h2>span {
    font-size: 1.875rem;
    line-height: 2.125rem;
}

h2 {
    font-weight: var(--font-regular);
}

h3 {
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: var(--font-bold);
}

h2>span {
    color: var(--cor-amarelo);
    font-weight: var(--font-bold);
}

p,
p>span {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--cor-branco);
}

p {
    font-weight: var(--font-light);
    margin-bottom: 0;
}

p>span {
    font-weight: var(--font-semibold);
}

img {
    transition: all 0.3s ease-in-out;
    width: 100%;
}

header {
    position: absolute;
    width: 100%;
    top: 140px;
}

header .logo,
footer .logo {
    width: auto;
    height: 70px;
}

.btn-amarelo,
.btn-amarelo:hover {
    color: var(--cor-preto);
}

.btn-amarelo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    border-radius: 28.5px;
    background-color: var(--cor-amarelo);
    border: 0;
    padding: 10px 20px;
    width: 1000%;
    max-width: fit-content;
    font-weight: var(--font-semibold);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-amarelo img {
    width: 17px;
    height: 17px;
    transform: rotate(-145deg);
    margin-top: 2px;
}

section {
    margin-bottom: 110px;
}

.amarelo {
    height: 64px;
    margin-bottom: 100px;
}

/***************************************************************************
        Banner Principal
***************************************************************************/

section.banner-principal {
    padding-top: 280px;
    background-image: url(img/banner-principal.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 1095px;
    height: 100%;
    margin-top: -15px;
    margin-bottom: 0px;
}

.banner-principal h2,
.banner-principal h2>span {
    font-size: 2.1875rem;
    line-height: 2.5rem;
    max-width: 540px;
}

.banner-principal p {
    max-width: 510px;
}

.banner-principal .schedule,
.sua-vez .schedule {
    width: 100%;
    max-width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 16px;
    position: relative;
}

.banner-principal .schedule::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233), transparent);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.banner-principal .schedule img,
.sua-vez .schedule img {
    width: 56px;
    height: 56px;
}

.banner-principal .schedule .content,
.transformando .card .content,
.sua-vez .schedule .content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.banner-principal .schedule .content h3,
.sua-vez .schedule .content h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: var(--font-bold);
}

/***************************************************************************
        Transformando
***************************************************************************/

section.transformando {
    margin-top: -180px;
    margin-bottom: 270px;
}

.transformando .card {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 60px;
    border-radius: 32px;
    position: relative;
    background-color: var(--cor-preto);
    box-shadow: 1px 2px 2px #ffffff17;
    padding-bottom: 90px;
    z-index: 8;
    overflow: hidden;
}

.transformando .card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233), transparent);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.transformando .card::after {
    width: 100%;
    max-width: 450px;
    height: 50px;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--cor-amarelo);
    border-radius: 48px 0 32px 0;
    mask: linear-gradient(#000000 0 0) content-box, linear-gradient(#00000061 2px 5px);
    mask-composite: exclude;
}

.transformando .card .thumb {
    border-radius: 10px;
}

.transformando .card .content {
    padding: 20px;
    gap: 8px;
}

.transformando .card .content h2 {
    max-width: 400px;
}

.transformando .card .content p {
    max-width: 450px;
}

.transformando .card .look {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 210px;
    padding-left: 20px;
}

.transformando .card .look img {
    width: 41px;
    height: 21px;
    object-fit: cover;
    transform: scaleX(-1);
    rotate: -180deg;
}

.transformando .card .look p>span {
    color: var(--cor-amarelo);
}

.transformando .title {
    font-size: 18.75rem;
    color: transparent;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.17);
    position: relative;
    z-index: 0;
    font-family: var(--font-OpenSans);
    font-weight: var(--font-bold);
    text-align: center;
}

/***************************************************************************
        Números
***************************************************************************/

.numeros .card,
.esperar .card {
    background-color: var(--cor-preto);
    box-shadow: 1px 2px 2px #ffffff17;
    position: relative;
    border-radius: 37px;
    overflow: hidden;
    z-index: 8;
    height: 100%;
}

.numeros .card::before,
.esperar .card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 37px;
    background: linear-gradient(62deg, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233), transparent, transparent, transparent, transparent, transparent, transparent);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.numeros .card .card-header,
.esperar .card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #2e1de7, #17105c, #100d2b);
    padding: 15px 12px;
}

.numeros .card .card-header h3,
.esperar .card .card-header h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: var(--font-bold);
}

.numeros .card .card-body,
.esperar .card .card-body {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.numeros .card .card-body .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.141);
}

.numeros .card .card-body .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.numeros .card .card-body .item h2 {
    display: flex;
    font-weight: var(--font-semibold);
}

.numeros .card .card-body .item h2.plus {
    font-size: 3.125rem;
}

.numeros .card .card-body .item h2.gap {
    gap: 10px;
}

.numeros .card .card-body .item h2,
.numeros .card .card-body .item h2>span {
    font-size: 2.5rem;
    color: var(--cor-branco);
}

/***************************************************************************
        Galeria
***************************************************************************/

.galeria .thumb {
    border-radius: 9px;
    min-height: 317px;
    max-height: 317px;
    object-fit: cover;
    cursor: pointer;
}

/***************************************************************************
        Depoimentos
***************************************************************************/

section.depoimentos {
    padding: 100px 0;
    background-image: url(img/banner-depoimentos.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 641px;
    margin-bottom: 0;
    z-index: 8;
    position: relative;
}

.depoimentos h2,
.depoimentos h2>span {
    font-size: 2.5rem;
    line-height: 2.75rem;
    max-width: 540px;
    color: var(--cor-preto);
}

.depoimentos .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--cor-amarelo);
    border-radius: 21px;
    position: relative;
    min-height: 255px;
    gap: 10px;
    margin: 5px 5px 65px 5px;
    padding: 35px 25px 50px 25px;
    border: 1px solid var(--cor-preto);
    cursor: default;
}

.depoimentos .item p,
.depoimentos .item h4 {
    color: var(--cor-preto);
}

.depoimentos .item p {
    font-size: 1.5rem;
    line-height: 2rem;
    font-style: italic;
}

.depoimentos .item h4,
.depoimentos .item h4>span {
    font-size: 1.375rem;
    line-height: 1.75rem;
    font-weight: var(--font-semibold);
    margin-bottom: 0;
}

.depoimentos .item h4>span {
    color: #610aed;
}

.depoimentos .item .area-image {
    border-radius: 50%;
    position: absolute;
    left: 38px;
    bottom: -58px;
}

.depoimentos .item .area-image img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 50px;
}

.depoimentos .owl-dots,
.esperar .owl-dots {
    position: absolute;
    top: 105%;
    width: 100%;
    text-align: start;
}

.depoimentos .owl-dots .owl-dot,
.esperar .owl-dots .owl-dot {
    display: inline-flex;
    padding: 8px 4px;
    align-items: flex-start;
}

.depoimentos .owl-dots .owl-dot span,
.esperar .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #a0ac00;
}

.depoimentos .owl-dots .owl-dot.active span,
.esperar .owl-dots .owl-dot.active span {
    background: linear-gradient(to bottom, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233));
}

/***************************************************************************
        Esperar
***************************************************************************/

section.esperar {
    padding-top: 180px;
    padding-bottom: 60px;
    background-image: url(img/banner-esperar-scaled.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 1500px;
    margin-top: -40px;
    margin-bottom: -20px;
}

.esperar .title {
    font-size: 11.75rem;
    color: transparent;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.17);
    position: relative;
    z-index: 0;
    font-family: var(--font-OpenSans);
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 18px;
}

.esperar h2,
.esperar h2>span,
.sua-vez h2,
.sua-vez h2>span {
    font-size: 2.5rem;
    line-height: 2.75rem;
}

.esperar .card {
    padding-bottom: 20px;
}

.esperar .card .card-header {
    align-items: start;
    justify-content: start;
    text-align: start;
    padding: 15px 30px;
}

.esperar .card .card-body {
    max-width: 420px;
    padding: 30px;
}

.esperar #esperar,
.esperar .owl-stage-outer,
.esperar .owl-stage,
.esperar .owl-stage,
.esperar .owl-item,
.esperar .item,
.esperar .item img {
    height: 100%;
}

.esperar .item img {
    border-radius: 37px;
    object-fit: cover;
}

.esperar .owl-dots {
    top: auto;
    bottom: 10%;
    text-align: center;
}

.esperar .owl-dots .owl-dot span {
    background-color: #b0aab0;
}

.esperar hr {
    width: 100%;
    height: 1px;
    opacity: 1;
    background-color: rgb(255, 255, 255, 0.141);
}

.esperar .updates {
    max-width: 255px;
}

.esperar .novidades-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}

.esperar .novidades-list .risk {
    position: absolute;
    width: 2px;
    height: calc(100% - 50px);
    background-color: rgb(255, 255, 255, 0.141);
    top: 5px;
    left: 28px;
    z-index: -1;
}

.esperar .novidade-item {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.esperar .num-circle {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: var(--font-bold);
    font-size: 1.75rem;
    background: linear-gradient(to top, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233));
}

.esperar .novidade-content h4 {
    margin: 0 0 4px 0;
    font-size: 1.375rem;
    font-weight: var(--font-semibold);
    color: #ffffff;
    line-height: 1.1
}

/***************************************************************************
        Sua Vez
***************************************************************************/

.sua-vez .title {
    max-width: 345px;
}

.sua-vez .text {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 432px;
}

.sua-vez .schedule {
    padding: 0;
}

.sua-vez hr,
footer hr {
    width: 50%;
    height: 1px;
    background-color: rgb(255, 255, 255, 0.141);
    opacity: 1;
}

.sua-vez .contacts,
footer .contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sua-vez .contacts a,
footer .contacts a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--cor-branco);
    text-decoration: none;
}

.sua-vez .contacts a .circle,
footer .contacts a .circle {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(to top, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233));
}

.sua-vez .contacts a .circle img,
footer .contacts a .circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.sua-vez .contacts a .content,
footer .contacts a .content {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 3px;
}

.sua-vez .contacts a .content span,
.sua-vez .contacts a .content p,
footer .contacts a .content p,
footer .contacts a .content span {
    font-size: 1.25rem;
    line-height: 1.375rem;
    color: var(--cor-branco);
}

.sua-vez .contacts a .content span,
footer .contacts a .content span {
    font-weight: var(--font-semibold);
}

/***************************************************************************
        Footer
***************************************************************************/

footer {
    display: flex;
    align-items: center;
    padding: 115px 0 15px 0;
    background-image: url(img/banner-footer.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 316px;
    height: 100%;
}

footer .contacts,
footer a {
    max-width: fit-content;
}

footer .col-12 a {
    color: var(--cor-branco);
    text-decoration: underline;
}

footer hr {
    width: 100%;
    border: 0;
    margin: 0;
    margin-bottom: 10px;
}

footer .logo-marcasite {
    max-width: fit-content;
}

/***************************************************************************
        Responsivo
***************************************************************************/

.mobile {
    display: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {}

@media (max-width: 1199px) {}

@media (min-width: 992px) and (max-width: 1199px) {
    .transformando .title {
        font-size: 15.75rem;
    }
}
.mtb{
    margin-top: 100px;
    margin-bottom: 100px;
}
.lampada_m{
    display: none;
}
@media (max-width: 991px) {
    .mg0{
        margin: 0px!important;
    }
    .lampada_m{
    display: block!important;
    width: 100%!important;
    }
    section.esperar{
        margin-bottom: 30px!important;
        padding-bottom: 0px!important;
    }
    .lampada{
        width: 100%!important;
        display: none;
    }
    .mtb{
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .transformandoO{
        font-size: 50px!important;
    }
    .mobile {
        display: block;
    }

    .desktop {
        display: none !important;
    }

    header {
        top: 50px;
    }

    section.banner-principal {
        padding-top: 220px;
        background-image: url(img/banner-principal-mobile.png);
        min-height: 1131px;
        height: 100%;
    }

    .responsivo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    section {
        margin-bottom: 100px !important;
    }

    .transformando .card {
        flex-direction: column;
        padding: 20px;
    }

    .transformando .card .content,
    .transformando .card .look {
        padding: 0;
    }

    .transformando .card .look img {
        rotate: -40deg;
        transform: scaleX(1);
    }

    .transformando .title {
        font-size: 12.75rem;
    }
}

@media (max-width: 767px) {
    .transformando .title {
        font-size: 8.75rem;
    }

    .esperar .card .card-body {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .transformando .title {
        font-size: 6.75rem;
    }

    .esperar h2,
    .esperar h2>span,
    .sua-vez h2,
    .sua-vez h2>span {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .galeria .thumb {
        max-height: 100%;
    }
}

@media (max-width: 467px) {
    .transformando .title {
        font-size: 4.75rem;
    }

    .sua-vez .contacts a {
        gap: 10px;
    }

    .sua-vez .contacts a .circle {
        min-width: 46px;
        height: 46px;
    }

    .sua-vez .contacts a .circle img {
        width: 24px;
        height: 24px;
    }

    .sua-vez .contacts a .content span,
    .sua-vez .contacts a .content p {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .politica {
        flex-direction: column;
    }
}

@media (max-width: 400px) {}

.btn-topo {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(90deg, rgb(35, 32, 231), rgb(74, 22, 232), rgb(113, 11, 233));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#btnTopo.show {
    opacity: 1;
}

.btn-topo.disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0;
}

.btn-topo img {
    width: 17px;
    height: 15px;
    transform: rotate(-90deg);
}

.wpcf7-not-valid-tip {
    display: flex;
    font-size: 16px !important;
    background-image: none !important;
    margin-top: 8px;
    margin-bottom: 0px;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #dc3232 !important;
    text-shadow: none;
}

.wpcf7-form-control-wrap,
.wpcf7-list-item-label {
    font-size: 16px !important;
    line-height: normal !important;
}

.wpcf7-list-item-label {
    font-size: 13px !important;
    position: relative;
}

.wpcf7-list-item {
    display: flex !important;
    margin: 0 !important;
}

.wpcf7-list-item input {
    height: 13px !important;
    box-shadow: none !important;
}

.wpcf7-list-item.first.last {
    position: absolute;
}

.wpcf7-list-item.first.last input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.rodape-form {
    margin-bottom: 30px;
}

.rodape-form p {
    display: flex;
    align-items: baseline;
    margin: 0;
    width: 100%;
    margin-bottom: 10px;
}

.rodape-form p label {
    font-size: 15px;
    line-height: 20px;
    margin-left: 15px;
    margin-bottom: -15px;
    margin-top: -4px;
    opacity: 1;
    color: var(--cor-preto);
    text-align: left;
}

.rodape-form p label a {
    color: var(--cor-preto) !important;
    text-decoration: underline !important;
}

.rodape-form p label a:hover {
    color: var(--cor-preto) !important;
}

.whatsapp img {
    position: fixed;
    z-index: 8;
    bottom: 86px;
    right: 8px;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    transition: ease .8s all;
}

.whatsapp a:hover img {
    opacity: 1;
    filter: drop-shadow(0px 0px 6px black);
}


