@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    background-color: #F8F9FA;
}

a, a:hover {
    text-decoration: none;
}

/* -- Variáveis -- */
:root {
    --color_prim: #974945;
    --color_sec0: #DFC7C5;
    --color_dk: #343A40;
    --color_lt: #F8F9FA;
}

/* ---------- Nav index landingpage ---------- */
.navbar {
    width: 100%;
    display: flex;
}
.nav {
    padding: 0;
}
#navbar {
    padding: 0;
}
.navbar_cta { 
    font-size: 2rem;
    font-weight: bold;
    color: var(--color_dk);
}
.navbar_cta:hover {
    color: var(--color_dk);
}
.navbar_container {
    width: 100%;
    background-color: #DFDFDF;
    margin: 20px 0;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    position: relative;
}
.navbar-nav {
    margin: auto 10px;
}
.navbar_logo {
    color: var(--color_prim);
    font-size: 2.4rem;
    font-weight: bold;
}
.navbar_logo:hover {
    color: var(--color_prim);
}
.navbar-nav a {
    padding: 0;
    margin: 0 10px;
}
.navbar-nav .nav-link {
  	font-size: 1.6rem;
	color: var(--color_dk);
}

.menu_small {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: end;
    display: none;
    z-index: 2;
}
.menu_small ul {
    list-style-type: none;
}
.menu_small .nav-link {
    font-size: 1.6rem;
	color: #343a40;
	font-weight: bold;
}
.navbar_nav_small {
    background-color: var(--color_lt);
    padding: 10px;
    margin: 0;
    transition: 0.5s ease-in-out;
}
/* ------------------------------- */

/* ----------- Recursos gerais ----------- */

.btn_cta {
    font-size: 2rem;
    color: var(--color_lt);
    border: 2px solid transparent;
    padding: 10px 20px;
    text-align: center;
    border-radius: 30px;
    background-color: var(--color_dk);
    transition: .5s;
}
.btn_cta:hover {
    color: var(--color_dk);
    border: 2px solid var(--color_dk);
    background-color: var(--color_lt);
}
.titulo_conteudo {
    font-size: 4rem;
    color: var(--color_dk);
}
.subtitulo_conteudo {
    font-size: 2.4rem;
    color: var(--color_dk);
}

/* ------------------------------- */

/* ----------- CAPA (mainpage: index) ----------- */

.capa_container {
    background-image: url(imagens/dentista_hero_banner.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 828px;
    padding: 50px;
    margin: 10px 0 60px 0;
    border-radius: 10px;
}
.texto-capa {
    color: var(--color_dk);
    width: 580px;
    opacity: 0;
    animation-name: texto-capa;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
@keyframes texto-capa {
    From { }
    To { opacity: 1; }
}
.titulo {
    margin: 0;
    font-size: 7.2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--color_prim);
    margin-bottom: 140px;
}
.subtitulo {
    margin: 0px;
    font-size: 2.4rem;
    color: var(--color_dk);
    margin-bottom: 40px;
}
/* ------------------------------- */

/* ----------- SECTION: SERVIÇOS ----------- */
#servicos .row {
    padding: 0;
    margin-bottom: 20px;
}
#servicos .subtitulo_conteudo {
    padding: 0;
    max-width: 480px;
}
.card_servicos_container {
    display: flex;
    gap: 20px;
}
.card_servicos1 {
    width: 280px;
    height: 280px;
    color: var(--color_dk);
    background-color: var(--color_sec0);
    border-radius: 10px;
    position: relative;
    padding: 20px;
}
.card_servicos1 p:nth-child(1) {
    color: #aaaaaa;
    font-size: 2.8rem;
}
.card_servicos2 {
    width: 280px;
    height: 280px;
    color: var(--color_lt);
    background-color: var(--color_prim);
    border-radius: 10px;
    position: relative;
    padding: 20px;
}
.card_servicos2 p:nth-child(1) {
    color: #aaaaaa;
    font-size: 2.8rem;
}
.card_titulo {
    font-size: 2rem;
    font-weight: bold;
}
.card_subtitulo {
    font-size: 2rem;
}
.servicos_cta {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-image: url(imagens/dentista_servicos_imgbg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.servicos_cta .btn_cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
/* ------------------------------- */

/* ----------- SECTION: CLÍNICA ----------- */
#clinica .row {
    gap: 20px;
    display: flex;
    justify-content: center;
}
#clinica .titulo_conteudo {
    margin-top: 60px;
}
#clinica .subtitulo_conteudo {
    margin-bottom: 40px;
}
.clinica_img1 {
    height: 280px;
    max-width: 650px;
    background-image: url(imagens/dentista_clinica_img1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.clinica_img2 {
    position: relative;
    height: 280px;
    max-width: 650px;
    background-image: url(imagens/dentista_clinica_img2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 60px;
}
.clinica_img2 .btn_cta {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
/* ------------------------------- */

/* ----------- SECTION: DEPOIMENTOS ----------- */

.depoimentos {
    background-color: var(--color_prim);
    padding-bottom: 60px;
}
.depoimentos .titulo_conteudo {
    margin-top: 60px;
    color: var(--color_lt);
}
.depoimentos .subtitulo_conteudo {
    margin-bottom: 40px;
    color: var(--color_lt);
}
.card_depoimentos_container {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 20px 40px;
    overflow-x: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
    scroll-snap-type: x mandatory; /* controla a parada de cada item do scroll */
    scroll-behavior: smooth; /* controla a velocidade do scroll */
}
.card_depoimentos {
    width: 280px;
    background-color: white;
    text-align: center;
    box-shadow: -4px 4px 4px var(--color_prim);
    -webkit-box-shadow: -4px 4px 4px var(--color_prim);
    -moz-box-shadow: -4px 4px 4px var(--color_prim);
    border: 1px solid rgba(124, 175, 226, 0.25);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    scroll-snap-align: center; /* controla a posição de cada item do scroll */
}
.card_depoimentos .card_subtitulo {
    margin: 10px 0;
    width: 220px;
}
.card_depoimentos_img {
    height: 64px;
    width: 64px;
}
.card_depoimentos_estrelas {
    height: 24px;
}
/* ------------------------------- */

/* ----------- SECTION: CONTATO ----------- */
#contato {
    padding: 60px 0;
    position: relative;
}
.info_contato {
    position: absolute;
    bottom: 0;
}
.info_contato .subtitulo_conteudo {
    font-size: 2rem;
}
.google_map {
    width: 100%;
}
.whatsapp_img {
    height: 28px;
    width: 28px;
}

/* ------------------------------- */

/* ----------- SECTION: CTA ----------- */

#cta {
    height: 626px;
    width: 100%;
    background-image: url(imagens/dentista_cta_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#cta .row .col-md {
    height: 626px;
    width: 100%;
    position: relative;
}
#cta .btn_cta {
    position: absolute;
    bottom: 50px;
    left: 50px;
}

/* ------------------------------- */

/* ----------- RODAPÉ HOMEPAGE ----------- */

.rodape_lp {
    background-color: #dfdfdf;
    padding-top: 60px;
    margin: 60px 60px 20px 60px;
    border-radius: 10px;
}
.rodape_titulo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color_prim);
}
.rodape_texto, .rodape_texto a {
    font-size: 1.8rem;
    color: var(--color_dk);
}
.rodape_lp div .col-md-3:nth-child(n + 2) {
    text-align: center;
}
.rodape_texto img {
    height: 32px;
    margin-left: 5px;
    margin-bottom: 5px;
}
.btn_redes_sociais img {
    height: 32px;
    margin: 10px;
    transition: .25s ease-in-out;
}
.btn_redes_sociais img:hover {
    transform: scale(1.5);
}
.rodape_texto_final, .rodape_texto_final a {
    font-size: 1.6rem;
    color: var(--color_dk);
}

/* ------------------------------- */

/*---------------- Media queries ----------------*/
/* xs < 768 */
@media screen and (max-width: 767px) {
    .navbar_cta { font-size: 1.4rem; }
    .navbar_logo { font-size: 1.8rem; }
    .navbar-nav { display: none; }
    .navbar_cta { display: none; }
    .menu_small { display: block;}
    .btn_cta { font-size: 1.4rem; border: 1px solid transparent; padding: 4px 8px; }
    .btn_cta:hover { border: 1px solid var(--color_dk); }
    .capa_container { height: 310px; padding: 8px; margin: 10px 4px 20px 4px; }
    .texto-capa { width: 100%; }
    .titulo_conteudo { font-size: 2rem; }
    .subtitulo_conteudo { font-size: 1.4rem; }
    .titulo { font-size: 2rem; width: 158px; margin-bottom: 40px; }
    .subtitulo { font-size: 1.6rem; width: 158px; margin-bottom: 10px; }
    .card_servicos1 { padding: 10px; height: 212px; }
    .card_servicos2 { padding: 10px; height: 212px; }
    .card_servicos1 p:nth-child(1) { font-size: 2rem; }
    .card_servicos2 p:nth-child(1) { font-size: 2rem; }
    .card_titulo { font-size: 1.6rem; }
    .card_subtitulo { font-size: 1.4rem; }
    .servicos_cta { height: 200px; margin: 20px 4px; }
    #clinica .titulo_conteudo { margin-top: 0; }
    #clinica .subtitulo_conteudo { margin-bottom: 20px; }
    .clinica_img1 { height: 180px; max-width: 100%; margin: 0 4px; }
    .clinica_img2 { height: 180px; max-width: 100%; margin: 0 4px; margin-bottom: 20px; }
    .depoimentos { padding-bottom: 20px; }
    .depoimentos .titulo_conteudo { margin-top: 40px; }
    .depoimentos .subtitulo_conteudo { margin-bottom: 20px; }
    .card_depoimentos_container { gap: 20px; justify-content: start; padding: 10px 20px 40px 20px; }
    .card_depoimentos { width: 170px; padding: 8px; }
    .card_depoimentos_img { height: 38px; width: 38px; }
    .card_depoimentos_estrelas { height: 16px; margin: 0 30px }
    .card_depoimentos .card_subtitulo { margin: 4px 0; width: 100%; }
    .info_contato .subtitulo_conteudo { font-size: 1.4rem; }
    #contato { padding: 40px 0; }
    .info_contato { position: relative;}
    .info_contato .subtitulo_conteudo { font-size: 1.4rem; }
    .whatsapp_img { height: 18px; width: 18px; }
    #cta { height: 172px; }
    #cta .row .col-md { height: 172px; position: relative; }
    #cta .btn_cta { position: absolute; bottom: 8px; left: 12px; }
    .rodape_lp { padding-top: 20px; margin: 40px 4px 8px 4px; }
    .rodape_titulo { font-size: 1.4rem; margin-top: 10px; }
    .rodape_texto, .rodape_texto a { font-size: 1.2rem; }
    .rodape_lp div .col-md-3 { text-align: center; }
    .rodape_texto img { height: 18px; margin-left: 4px; margin-bottom: 4px; }
    .btn_redes_sociais img { height: 18px; margin: 4px; }
    .rodape_texto_final, .rodape_texto_final a { font-size: 0.9rem; color: var(--color_dk); }
}

/* sm */
@media screen and (min-width: 768px) {
    .navbar_cta { font-size: 1.6rem; }
    .navbar_logo { font-size: 2rem; }
    .navbar-nav .nav-link { font-size: 1.4rem; }
    .btn_cta { font-size: 1.6rem; }
    .titulo_conteudo { font-size: 3.6rem; }
    .subtitulo_conteudo { font-size: 2rem; }
    .titulo { font-size: 6.8rem; }
    .subtitulo { font-size: 2rem; }
    .card_servicos1 p:nth-child(1) { font-size: 2.4rem; }
    .card_servicos2 p:nth-child(1) { font-size: 2.4rem; }
    .card_titulo { font-size: 1.6rem; }
    .card_subtitulo { font-size: 1.4rem; }
    .info_contato .subtitulo_conteudo { font-size: 1.6rem; }
    .rodape_titulo { font-size: 1.6rem; }
    .rodape_texto, .rodape_texto a { font-size: 1.6rem; }
}

/* md */
@media screen and (min-width: 992px) {
    .navbar_cta { font-size: 1.8rem; }
    .navbar_logo { font-size: 2.2rem; }
    .navbar-nav .nav-link { font-size: 1.6rem; }
    .btn_cta { font-size: 1.8rem; }
    .titulo_conteudo { font-size: 3.8rem; }
    .subtitulo_conteudo { font-size: 2.2rem; }
    .titulo { font-size: 7rem; }
    .subtitulo { font-size: 2.2rem; }
    .card_servicos1 p:nth-child(1) { font-size: 2.6rem; }
    .card_servicos2 p:nth-child(1) { font-size: 2.6rem; }
    .card_titulo { font-size: 1.8rem; }
    .card_subtitulo { font-size: 1.8rem; }
    .info_contato .subtitulo_conteudo { font-size: 1.8rem; }
    .rodape_titulo { font-size: 1.8rem; }
    .rodape_texto, .rodape_texto a { font-size: 1.8rem; }
}

/* lg */
@media screen and (min-width: 1200px) {

}