@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main {
  overflow-x: hidden;
  position: relative;
}

#sobre-mim,
#atuacao,
#abordagem,
#depoimentos,
#agendamento {
  scroll-margin-top: 80px;
}

.navbar {
  background-color: #EEE5DC;
}
.navbar .nav-link {
  color: #814928;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  transition: 0.3s ease-in-out;
}
.navbar .nav-link:hover {
  background-color: #814928;
  color: #EEE5DC;
}

#hero {
  height: 100vh;
  width: 100%;
  background-image: url("../../img/bg-hero-gradiente.png");
  background-size: cover;
  background-position: top;
}
#hero .logo-hero {
  width: 256px;
  height: 256px;
}

#cta .card {
  background-color: #EEE5DC;
  border: 1px solid #814928;
  border-radius: 8px;
}
#cta .card .card-body {
  padding: 2rem 2rem;
  text-align: center;
}
#cta .card .card-body .card-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #814928;
  margin-bottom: 1rem;
}
#cta .card .card-body .card-text {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  color: #814928;
  margin-bottom: 1rem;
}
#cta .card .card-body .btn {
  background-color: #814928;
  color: #EEE5DC;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
#cta .card .card-body .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(129, 73, 40, 0.12);
}

.section-subtitle {
  font-family: "Manrope", sans-serif;
  color: #896555;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: black;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#atuacao {
  background-image: url("../../img/bg-logo.png");
  background-color: #EEE5DC;
  background-size: cover;
  background-position: center;
  min-height: 75vh;
}
#atuacao .card-descricao {
  background-color: #fff;
  border: 1px solid #814928;
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#atuacao .card-descricao .card-descricao-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #814928;
  margin-bottom: 1rem;
}
#atuacao .card-descricao .card-descricao-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  color: #896555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#atuacao .card-descricao .btn {
  background-color: #814928;
  color: #EEE5DC;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
#atuacao .card-descricao .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(129, 73, 40, 0.12);
}
#atuacao .especialidade-card {
  background-color: #fff;
  border: 1px solid #814928;
  border-radius: 8px;
  padding: 1rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#atuacao .especialidade-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(129, 73, 40, 0.1);
}
#atuacao .especialidade-card .especialidade-icon {
  height: 68px;
  width: auto;
  margin-bottom: 1rem;
}
#atuacao .especialidade-card .especialidade-label {
  font-family: "Manrope", sans-serif;
  color: #814928;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

#sobre-mim {
  position: relative;
  color: #EEE5DC;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(129, 73, 40, 0.9), rgba(129, 73, 40, 0.9)), url("../../img/bg-sobremim.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#sobre-mim .img-sobremim {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  #sobre-mim .img-sobremim {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    max-width: 100%;
  }
}
#sobre-mim .sobremim-content .section-subtitle, #sobre-mim .sobremim-content .section-title {
  color: #EEE5DC;
  margin: 0;
}
#sobre-mim .sobremim-content .section-subtitle {
  opacity: 0.9;
  font-weight: 400;
}
#sobre-mim .sobremim-content .sobremim-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #EEE5DC;
  padding-bottom: 8px;
}
#sobre-mim .sobremim-content .sobremim-title-wrapper .logo-sobremim {
  height: 60px;
  width: auto;
  margin-right: 1.5rem;
}
#sobre-mim .sobremim-content .sobremim-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
#sobre-mim .sobremim-content .sobremim-list li {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
#sobre-mim .sobremim-content .sobremim-list li::before {
  content: "•";
  color: #EEE5DC;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
#sobre-mim .sobremim-content .btn-sobremim {
  background-color: #EEE5DC;
  color: #814928;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
#sobre-mim .sobremim-content .btn-sobremim:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#agendamento {
  position: relative;
  background-color: white;
  background-image: url("../../img/bg-logo-atendimento.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#agendamento .cidade-title {
  font-family: "Playfair Display", serif;
  color: #814928;
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 2px solid #896555;
  padding-bottom: 0.5rem;
  display: inline-block;
}
#agendamento .local-card {
  background-color: #fff;
  border: 1px solid #814928;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(129, 73, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#agendamento .local-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(129, 73, 40, 0.12);
}
#agendamento .local-card .local-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
#agendamento .local-card .local-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#agendamento .local-card .local-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #814928;
  margin-bottom: 1rem;
}
#agendamento .local-card .local-card-info {
  font-family: "Manrope", sans-serif;
  color: #896555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}
#agendamento .local-card .local-card-info i {
  margin-top: 3px;
  color: #814928;
}
#agendamento .local-card .local-card-buttons {
  margin-top: auto;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
#agendamento .local-card .btn-local {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 0.6rem 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #814928;
}
#agendamento .local-card .btn-local-primary {
  background-color: #814928;
  color: #EEE5DC;
}
#agendamento .local-card .btn-local-primary:hover {
  background-color: rgb(109.5355029586, 61.9852071006, 33.9644970414);
  color: #fff;
}
#agendamento .local-card .btn-local-secondary {
  background-color: transparent;
  color: #814928;
}
#agendamento .local-card .btn-local-secondary:hover {
  background-color: #814928;
  color: #EEE5DC;
}

#depoimentos {
  background-color: #EEE5DC;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}
#depoimentos .depoimentos-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #814928;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
#depoimentos .depoimentos-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  color: #896555;
  line-height: 1.6;
  margin-bottom: 2rem;
}
#depoimentos .link-agendamento {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #896555;
  text-decoration: none;
  transition: color 0.3s ease;
  border: 1px solid #896555;
  border-radius: 8px;
  padding: 8px 16px;
}
#depoimentos .link-agendamento i {
  color: #814928;
}
#depoimentos .link-agendamento:hover {
  color: #814928;
}
#depoimentos .owl-stage {
  display: flex;
}
#depoimentos .owl-item {
  display: flex;
  flex: 1 0 auto;
}
#depoimentos .item {
  height: 100%;
  width: 100%;
}
#depoimentos .testimonial-card {
  background-color: #F9F4F2;
  border: 1px solid #814928;
  border-radius: 12px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
#depoimentos .testimonial-card .card-header {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #814928;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  border-bottom: none;
  display: flex;
  align-items: center;
}
#depoimentos .testimonial-card .testimonial-header-logo {
  height: 24px;
  width: auto;
  margin-right: 0.5rem;
}
#depoimentos .testimonial-card .card-body {
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  flex-grow: 1;
}
#depoimentos .testimonial-card .quote-icon {
  color: #814928;
}
#depoimentos .testimonial-card .card-text {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #896555;
  line-height: 1.7;
  margin-bottom: 0;
}
#depoimentos .testimonial-card .card-author {
  background-color: transparent;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}
#depoimentos .testimonial-card .card-author i {
  font-size: 2.5rem;
  color: #814928;
}
#depoimentos .testimonial-card .card-author div {
  font-family: "Manrope", sans-serif;
  line-height: 1.4;
}
#depoimentos .testimonial-card .card-author div strong {
  display: block;
  color: #814928;
  font-size: 1rem;
  font-weight: 700;
}
#depoimentos .testimonial-card .card-author div span {
  display: block;
  color: #896555;
  font-size: 0.9rem;
}
#depoimentos .owl-dots {
  text-align: center;
  padding-top: 2rem;
}
#depoimentos .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #896555;
  opacity: 0.5;
  transition: all 0.3s ease;
}
#depoimentos .owl-dots .owl-dot span {
  display: none;
}
#depoimentos .owl-dots .owl-dot.active {
  background: #814928;
  opacity: 1;
  width: 12px;
  height: 12px;
}
#depoimentos .owl-dots .owl-dot:hover {
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
