/* VARIÁVEIS */
:root {
    --gray: #828282;
    --dark-gray: #454545;
    --light-gray: #666666;
    --white: #ffffff;
    --gray-gradient: linear-gradient(
        120deg,
        #9d9d9d 0%,
        #6a6a6a 33.33%,
        #989898 68.75%,
        #c3c3c3 91.67%
    );
}

/* RESET */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
}

*,
:after,
:before {
    box-sizing: border-box;
    border: 0 solid #e2e8f0;
}

a {
    color: inherit;
    text-decoration: inherit;
    font-family: "Roboto", sans-serif;
}

svg,
video {
    display: block;
    vertical-align: middle;
}

video {
    max-width: 100%;
    height: auto;
}

p {
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
b {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}

/* CLASSES ÚTEIS */
.l-gray-color {
    color: var(--light-gray);
}

.d-gray-color {
    color: var(--dark-gray);
}

.gradient-bg {
    background: var(--gray-gradient);
}

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


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

.inner-page {
    padding: 80px 0;
    background-color: var(--white);
}

.br-sm {
    border-radius: 0.5rem;
}

/* TIPOGRAFIA */
.title-section {
    color: var(--light-gray);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.title-section.white-color {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.subtitle-depoinent {
    color: var(--light-gray);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
}
.subtitle-section {
    color: var(--light-gray);
    font-size: 1.25rem;
    font-weight: 500;
    
}

.title-primary {
    font-size: 3rem;
    color: var(--light-gray);
    font-weight: 400;
}

.title-primary b {
    color: var(--dark-gray);
    font-weight: 700;
}

.title-secondary {
    font-size: 1.75rem;
}

.paragraph {
    font-size: 1.25rem;
    font-weight: 400;
}

.light-paragraph {
    font-size: 1.125rem;
    font-weight: 300;
}

/* COMPONENTES GERAIS */
.main-btn {
    color: #fff;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;

    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    background-size: 300% 100%;

    moz-transition: background-position 0.4s ease-in-out;
    -o-transition: background-position 0.4s ease-in-out;
    -webkit-transition: background-position 0.4s ease-in-out;
    transition: background-position 0.4s ease-in-out;
}

a.main-btn {
    display: inline-block;
}

.main-btn:hover {
    background-position: 100% 0;
    moz-transition: background-position 0.4s ease-in-out;
    -o-transition: background-position 0.4s ease-in-out;
    -webkit-transition: background-position 0.4s ease-in-out;
    transition: background-position 0.4s ease-in-out;
}
/* .... */
.container-t {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1; 
    padding: 20px; 
  }
  .row-t{
   position: relative;
    top: 10%;
    left: 10%;
    width: 75%;
    right: 0;
    border-color: #000000;
  }

.main-btn:focus {
    outline: none;
}
.text-style{
    color: #fff;
    font-size: 20px;

}
.gray-btn {
    background-image: var(--gray-gradient);
    box-shadow: 0 0.25rem 1rem 0 rgba(102, 102, 102, 0.75);
}

.gray-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0.125rem 0.5rem 0 rgba(102, 102, 102, 0.75);
}

.form-input.form-control {
    border-radius: 1.25rem;
    border: 0.625px solid var(--gray);
    padding: 0.75rem;
}

.form-input.form-control:focus {
    border-color: var(--light-gray);
    box-shadow: 0 0 0 0.25rem rgba(102, 102, 102, 0.4);
}

.nav-pills.gray-pills .nav-link.gray-link {
    font-size: 1.25rem;
    color: var(--light-gray);
    text-align: start;
}

.nav-pills.gray-pills .nav-link.gray-link.active {
    background: var(--gray-gradient);
    color: var(--white);
}

.img-estrutura{
    height: 400px;
    object-fit: cover;
}
.img-tecnologia{
    height: 500px;
    width: 300px;
    object-fit: cover;
}

.custom-modal .modal-content {
    border-radius: 2rem;
}

.custom-modal .modal-body {
    padding: 44px 60px;
}

.btn-close-modal {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(30%) translateY(-30%);

    background-color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.custom-modal.profile-modal .modal-body .img-column::after {
    background-image: url("../img/bg/modal-vector-bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: flex;
    margin: auto;
    width: 154px;
    height: 182px;
}

.custom-modal .modal-list li {
    margin-bottom: 16px;
}

/* SLIDER */
.slide-container {
    position: relative;
    width: 50rem;
    height: 20.625rem;
    border-radius: 1rem;
    margin: 0 auto;
    overflow: hidden;
}
.slide-container .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50rem 100%;
}
.slide-container .background-img {
    background-image: url("../img/casos-clinicos/dentes-depois.png");
}
.slide-container .foreground-img {
    background-image: url("../img/casos-clinicos/dentes-antes.png");
    width: 50%;
}
.slide-container .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0.3);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-container .slider:hover {
    background: rgba(242, 242, 242, 0.1);
}
.slide-container .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 20.625rem;
    background: white;
    cursor: pointer;
}
.slide-container .slider::-moz-range-thumb {
    width: 6px;
    height: 20.625rem;
    background: white;
    cursor: pointer;
}
.slide-container .slider-button {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 19px);
    top: calc(50% - 18px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-container .slider-button:after {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}
.slide-container .slider-button:before {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

.slider-badge {
    position: absolute;
    top: 0;

    color: var(--light-gray);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.75);
    padding: 12px 32px;
}

.before-badge {
    left: 0;
    border-radius: 1rem 0rem;
}

.after-badge {
    right: 0;
    border-radius: 0rem 1rem;
}

/* OWL SYTLES */

.owl-theme .owl-dots .owl-dot span {
    height: 1rem;
    width: 1rem;
    background: transparent;
}
.owl-theme .owl-dots .owl-dot:hover span {
    background: transparent;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 2rem;
}

.owl-gray-dots.owl-theme .owl-dots .owl-dot span {
    border: 1px solid var(--light-gray);
}

.owl-gray-dots.owl-theme .owl-dots .owl-dot.active span {
    background: var(--light-gray);
}

.owl-white-dots.owl-theme .owl-dots .owl-dot span {
    border: 1px solid var(--white);
}

.owl-white-dots.owl-theme .owl-dots .owl-dot.active span {
    background: var(--white);
}

/* HEADER */
.navbar-brand img {
    transform: scale(1);
    transition: transform .3s ease-out;
}

.navbar-brand img:hover {
    transform: scale(1.05);
    transition: transform .3s ease-out;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.header-link.nav-link {
    color: var(--light-gray);
    text-transform: uppercase;
    position: relative;
    padding: 4px;
    margin-left: 10px;
    display: inline-block;
}

.header-link.nav-link:hover {
    color: var(--dark-gray);
}

.header-link.nav-link.active {
    background: var(--gray-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration-color: var(--light-gray);
}

.header-link.nav-link.active::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: 2px;
    background: var(--gray-gradient);
}

.header.fixed-header {
    position: fixed;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    z-index: 10;
}

.header.fixed-header .navbar-brand img {
    height: 31px;
    width: auto;
}

.header.fixed-header .header-link.nav-link {
    font-size: 0.875rem;
}

/* CONTATO E LOCALIZAÇÃO */
.section-contato-localizacao {
    padding: 60px 0;
}

.section-contato-localizacao.inner {
    padding: 100px 0 60px;
}

.map-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;

    display: flex;
    align-items: center;
    justify-content: end;
    height: calc(100% - 240px);
}

.map-inner-wrapper {
    position: relative;
    border-radius: 1rem 0rem 0rem 1rem;
    overflow: hidden;
    width: calc(100% - 30px);
    height: 100%;
}

.map-iframe {
    width: 100%;
    height: 100%;
}

.map-subtitle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gray-gradient);
    padding: 20px 40px;

    color: var(--white);
    font-size: 1.25rem;
}

/* FOOTER */
.footer {
    background: var(--light-gray);
    padding: 36px 0 28px;
    position: relative;
}

.footer-list {
    list-style: none;
    width: 100%;
    margin-left: 40px;
}

.footer-item   {
    color: #fff;
    font-size: 1rem;
}
 .footer-item a {
    color: white;
}
.footer-item a:hover {
    color: #e6f2ff;
    text-decoration: none;
}
.wpp-button {
    position: fixed;
    bottom: 92px;
    right: 0;
    transform: translateX(86%);
    transition: transform 0.5s ease-in-out;
    z-index: 10;
}

.wpp-button__img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: scale(1) translateX(-60%) translateY(-50%);
    width: 80px;
    height: 80px;
    transition: transform 0.5s ease-out;
}

.wpp-button:hover {
    transform: translateX(0);
    transition: transform 0.5s ease-out;
}

.wpp-button:hover .wpp-button__img {
    transform: scale(1.06) translateX(-60%) translateY(-50%);
    transition: transform 0.5s ease-out;
}

.wpp-button__text-wrapper {
    background-color: var(--white);
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
    padding: 8px 40px 8px 60px;
}

.wpp-button__text {
    background: var(--gray-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25rem;
}

.wpp-button:hover .wpp-button__text {
    text-decoration: underline;
    text-decoration-color: var(--gray);
}

/* HOME */
.vitrine-home {
    padding: 150px 0 0;
    margin-top: -150px;
    /* background-image: url("../img/vitrine/vitrine-1.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.quem-somos-home {
    padding: 20px 0;
}

/* ESPECIALIDADES */
.especialidades-home {
    padding: 20px 0;
    position: relative;
}

.especialidades-home::before {
    /* background-image: url(../img/bg/especialidades-left-vector.png); */
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 60px;
    height: 80px;
    position: absolute;
    left: 0;
    bottom: -120px;
}

.especialidades-home::after {
    background-image: url(../img/bg/especialidades-right-vector.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 60px;
    height: 80px;
    position: absolute;
    right: 0;
    top: -80px;
}

.especialidade-item {
    position: relative;
    z-index: 2;
}

.especialidade-title {
    margin: 12px auto 10px;
}

.especialidade-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.especialidade-link:hover {
    color: var(--white);
    background: var(--gray-gradient);
}

/* EQUIPE */
.equipe-home {
    padding: 40px 0;
}

.perfil-card {
    padding: 15px;
}

.perfil-img {
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.perfil-name {
    margin-bottom: 0;
}

.perfil-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background-color: transparent;
}

.perfil-link:hover {
    color: var(--white);
    background: var(--gray-gradient);
}

/* DEPOIMENTOS */
.depoimentos-home {
    background-image: url("../img/bg/depoimentos-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 170px 0 150px;
    margin-top: -60px;
}

.video-frame {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.video-frame__thumb {
    border-radius: 5px;
    position: relative;
    width: 100%;
    object-fit: cover;
}
.imagem_depoimento{
    max-width: 250px;
    max-height: 350px;
    width: auto;
    height: auto;
    margin-left: 25%;
}

.btn-play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    background: rgba(0, 0, 0, 0.5);
    padding: 12px;
    border-radius: 50%;
}

.btn-play-video:hover img {
    transform: scale(1.05);
    transition: transform ease-out 0.3s;
}

/* BLOG */
.blog-home {
    padding: 60px 0;
}
.post-item {
    padding: 15px;
    text-align: start;
}

.post-item__img-wrapper {
    border-radius: 1.125rem;
    overflow: hidden;
}

.post-item__img {
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

.post-item:hover .post-item__img {
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

.post-item:hover .post-item__title {
    text-decoration: underline;
    text-decoration-color: var(--light-gray);
}

.post-item__date {
    font-size: 1rem;
    color: var(--light-gray);
    display: inline-block;
    margin: 10px 0 12px;
}

/* INSTAGRAM */
.instagram-section {
    background-image: url("../img/bg/instagram-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 486px;
    margin-bottom: 94px;
    
}

/* LOJA */
.loja-home {
    padding: 100px 0 40px;
}

.owl-carousel.owl-store .owl-stage {
    display: flex;
}

.store-item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
    padding: 0 15px;
}

.card-produto {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(white, white) padding-box, var(--gray-gradient);
    border-radius: 1rem;
    border: 1px solid transparent;
    max-width: 100%;
    height: 100%;
    padding-bottom: 10px;
}

.card-produto__img-wrapper {
    height: 17.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-produto__img-wrapper img {
    max-width: 100%;
    max-height: 100%;
}

.owl-carousel .owl-item .card-produto__img-wrapper .card-produto__img {
    max-height: 100%;
    width: auto;
}

.card-produto__body {
    height: calc(100% - 17.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
}

/* CASOS CLÍNICOS */
.casos-clinicos-home {
    background-image: url("../img/bg/casos-clinicos-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 60px;
}


.image-depoimento-internal {
    max-width: 250px;
    max-height: 350px;
    width: auto;
    height: auto;
}

@media (max-width: 1400px) {
    /* FOOTER */
    .footer {
        padding: 40px 0 28px;
    }
    .footer-item {
        font-size: 1rem;
        margin-left: -18px;
        margin-right: 9px;
    }

}

@media (max-width: 1200px) {
    .especialidades-home::before,
    .especialidades-home::after {
        display: none;
    }
  
    /* INSTAGRAM */
    .instagram-section {
        height: 416px;
        margin-bottom: 50px;
    }
  
}

@media (max-width: 992px) {
    /* HEADER */
    .header-link.nav-link {
        margin-bottom: 12px;
    }
    .imagem_depoimento{
        margin-left: 19%;
    }
    /* INSTAGRAM */
    .instagram-section {
        height: 300px;
    }

    /* SLIDER */
    .slide-container {
        width: 100%;
        height: 17rem;
    }
    .slide-container .img {
        background-size: cover;
        background-repeat: no-repeat;
    }
    .slide-container .slider::-webkit-slider-thumb {
        height: 17rem;
    }
    .slide-container .slider::-moz-range-thumb {
        height: 17rem;
    }
}

@media (max-width: 768px) {
    /* TIPOGRAFIA */
    .title-section {
        font-size: 2rem;
        background: var(--gray-gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .imagem_depoimento{
        margin-left: 20%;
    }
    .subtitle-section {
        font-size: 1rem;
    }
    .title-primary {
        font-size: 1.25rem;
    }
    .title-secondary {
        font-size: 1.125rem;
    }

    .paragraph {
        font-size: 1rem;
    }

    .light-paragraph {
        font-size: 0.875rem;
    }

    /* COMPONENTES */
    .main-btn {
        display: table;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
    }

    .inner-page {
        padding: 28px 15px 60px;
        background-color: var(--white);
    }

    .custom-modal.modal-dialog {
        margin: 1rem;
    }

    .custom-modal .modal-body {
        padding: 16px;
    }

    .custom-modal .img-column {
        padding: 0 48px;
        margin-bottom: 16px;
    }

    .profile-modal .modal-body .img-column::after {
        position: absolute;
        top: 125px;
        left: 0;
        width: 154px;
        height: 182px;
    }

    .profile-modal .perfil-img {
        z-index: 2;
        position: relative;
    }

    /* SLIDER */
    .slide-container {
        height: 14rem;
    }
    .slide-container .slider::-webkit-slider-thumb {
        height: 14rem;
    }
    .slide-container .slider::-moz-range-thumb {
        height: 14rem;
    }

    /* HEADER */
    .navbar-brand img {
        width: 232px;
        height: auto;
    }

    /* CONTATO E LOCALIZAÇÃO */
    .section-contato-localizacao.inner {
        padding: 60px 0;
    }
    .map-wrapper {
        position: static;
        justify-content: center;

        width: 100%;
        height: 22rem;
        transform: translateY(0);
        border-radius: 1rem;
    }

    .map-inner-wrapper {
        border-radius: 1rem;
    }

    .map-iframe {
        width: 100%;
    }

    /* FOOTER */
    .footer {
        background: var(--gray-gradient);
        padding: 24px 15px 40px;
    }
    .footer-list {
        width: 100%;
    }
    .wpp-button {
        right: 0.5rem;
        bottom: 3rem;
        top: auto;
        transform: translate(0);
    }
    .wpp-button__img {
        height: 56px;
        width: 56px;
        position: static;
        transform: translate(0);
    }
    .wpp-button:hover .wpp-button__img {
        transform: translate(0);
    }
    .wpp-button__text-wrapper {
        display: none;
    }
    /* HOME */
  
    .container-t {
        top: 10px;
    }
    .row-t {
        top: 80%;
    }
    .quem-somos-home {
        padding: 28px 15px;
    }

    /* ESPECIALIDADES */
    .especialidade-title {
        margin: 12px auto 10px;
    }
    .especialidades-home::before {
        background-image: url(../img/bg/especialidades-left-vector-mobile.svg);
        width: 70px;
        height: 110px;
        bottom: -120px;
    }
    .especialidades-home::after {
        background-image: url(../img/bg/especialidades-right-vector-mobile.svg);
        width: 70px;
        height: 110px;
        top: -120px;
    }

    /* EQUIPE */
    .equipe-home {
        padding: 28px 0;
    }

    .perfil-card {
        padding: 10px;
    }

    /* DEPOIMENTOS */
    .depoimentos-home {
        background-image: url("../img/bg/depoimentos-bg-mobile.png");
        margin-top: 0;
        padding: 128px 0;
    }

    /* INSTAGRAM */
    .instagram-section {
        background-image: url("../img/bg/instagram-bg-mobile.png");
        height: auto;
    }

    .instagram-section__cellphone-img {
        margin-top: -2rem;
    }

    .instagram-section__feed-img {
        margin-bottom: -2rem;
    }

    /* LOJA */
    .loja-home {
        padding: 100px 0 40px;
    }

    /* CASOS CLÍNICOS */
    .casos-clinicos-home {
        padding: 140px 30px 60px;
    }
    .owl-carousel.owl-store .owl-stage {
        display: flex;
    }
    .owl-carousel .owl-item .card-produto__img-wrapper .card-produto__img {
        max-height: 100%;
        width: auto;
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* Proporção de aspecto 16:9 (altura/largura) */
        overflow: hidden;
      }
      
      .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      /* .img-fluid{
        padding-left: 15px;
      } */
}
.owl-estyle .item img {
    width: 350px; 
    height: auto; 
    display: math !important;
    border-radius: 15px;
  
}


.owl-estyle .item h1 {
    color: #fff; 
    font-size:40px; 
    margin-top: 10px;
}

.hidden-image {
    display: none;
}
