@import url("../styles/fonts.css");
@import url("../styles/responsive.css");
@import url("../styles/variables.css");

* {
  margin: 0;
  padding: 0;
  font-family: "montserrat-light";
}

html {
  scroll-behavior: smooth;
}

body {
  /* background-color: rgb(221, 220, 213); */
  /* background-color: rgb(196, 195, 192); */
}

h1 {
  color: var(--cor-4);
  font-size: 2rem;
}

h2 {
  color: var(--cor-4);
  font-size: 1.5rem;
}

h3 {
  color: var(--cor-4);
  font-size: 1.2rem;
}

/* ========================== HOME ========================== */

#section-home {
  /* background-image: url(../assets/imgs/consultorio-teste-bg-2.jpg); */
  background-image: url(../assets/imgs/consultorio.jpeg);
  height: 700px;
  background-blend-mode: multiply;
  background-color: var(--cor-1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 55px 6rem 0 6rem;
}

#br-text-home {
  display: none;
}

#button-toggle-menu {
  border: 1px solid gray;
  padding: 10px;
  border-radius: 5px;
  color: var(--cor-1);
  background-color: var(--dourado);
  position: fixed;
  left: 10px;
  top: 10px;
  display: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.drop-menu {
  height: 324px !important;
}

nav {
  position: absolute;
  width: 100%;
  z-index: 10;
  transition: all 150ms ease-in-out;
}

ul {
  display: flex;
  justify-content: space-between;
  padding: 0 6rem;
  align-items: center;
  gap: 100px;
  height: 54px;
  overflow-y: hidden;
}

ul li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: var(--cor-4);
  transition: all 150ms ease-in-out;
  padding: 20px;
  font-size: 22px;
}

#nav-menu ul li a:hover {
  background-color: var(--cor-4);
  color: var(--cor-1);
}

.home-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.home-content>div h1 {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  white-space: nowrap;
}

.home-content>div h2 {
  font-size: 1.4rem;
}

.home-content>p:nth-child(2) {
  font-size: 22px;
  color: var(--cor-4);
}

.home-content>a:nth-child(3) {
  background-color: var(--cor-4);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  text-decoration: none;
  color: rgb(24, 24, 24);
  font-weight: bold;
  width: fit-content;
  margin-top: 3rem;
  padding: 0px 25px 0px 10px;
}

.home-content>a:nth-child(3)>img {
  width: 60px;
  height: 60px;
}

.home-content>a:nth-child(3)>p {
  font-size: 18px;
}

.img-home>img {
  position: absolute;
  bottom: 0;
}

#section-home>div:nth-child(2) {
  height: 100%;
  position: relative;
  width: 40%
}

#home-barra-dourada {
  background-color: var(--dourado);
  width: 625px;
  height: 10px;
}

#img-isabella-home {
  position: absolute;
  bottom: -90px;
  right: 200px;
}

#text-center-home {
  position: absolute;
  right: 40%;
  top: 55%;
  font-size: 40px;
}

#btn-agendar-consulta {
  color: var(--cor-1);
  text-decoration: none;
  background-color: var(--dourado);
  padding: 10px;
  padding-right: 25px;
  font-size: 20px;
  font-family: "montserrat-regular";
  border-radius: 50px;
  position: absolute;
  bottom: 50px;
  left: 40px;
  display: flex;
  align-items: center;
  transition: all 150ms ease-in-out;
}

#btn-agendar-consulta:hover {
  background-color: var(--cor-3);
}

#btn-agendar-consulta img {
  width: 50px;
}

/* ========================== ESPECIALIDADES ========================== */

#section-especialidades {
  margin-top: 150px;
}

.div-split-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.div-split-section h1 {
  color: var(--cor-1);
  font-size: 50px;
  text-align: center;
  font-family: montserrat-bold;
}

.div-split-section>div {
  width: 50%;
}

.split-barra {
  background-color: var(--cor-1);
  height: 20px;
  width: 100%;
}

#especialidades-content {
  margin-top: 200px;
  position: relative;
}

.item-line-especialidades {
  display: flex;
  flex-direction: row;
}

.item-bg-escuro,
.item-bg-claro {
  width: 50%;
  text-align: center;
  padding: 100px 20px;
  height: 150px;
  font-size: 20px;
}

.item-bg-escuro p,
.item-bg-claro p {
  margin-top: 70px;
}

.item-bg-escuro {
  background-color: var(--cor-2);
  color: var(--cor-4);
}

.item-bg-claro {
  color: var(--cor-1);
}

.item-bg-claro h1 {
  background-color: var(--dourado);
  width: fit-content;
  margin: auto;
  padding: 0px 50px;
  border-radius: 50px;
  color: var(--cor-1);
}

#buttons-prev-next {
  position: absolute;
  bottom: -250px;
  z-index: 1000;
  width: 100%;
  display: none;
  justify-content: center;
  gap: 30px;
}

#buttons-prev-next span {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--cor-4);
  background-color: var(--cor-1);
}

/* ========================== PORTFÓLIO ========================== */

#section-portfolio {
  margin-top: 150px;
  position: relative;
}

#portfolio-content {
  margin-top: 150px;
  display: flex;
  justify-content: center;
}

#portfolio-content>div {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#portfolio-content img {
  width: 425px;
  height: 550px;
  margin-bottom: 20px;
  margin: auto;
}

#portfolio-content p {
  text-align: center;
  font-size: 30px;
  margin-top: 20px;
  color: var(--cor-1);
  width: 100%;
  margin: auto;
}

.owl-nav {
  display: none !important;
  /* position: absolute;
  bottom: -50px; */
}

/* .owl-nav button {
  width: 10px !important;
  height: 10px !important;
  background-color: blue !important;
} */

#div-arraste-lado {
  position: absolute;
  top: 120px;
  right: 80px;
  color: gray;
  font-size: 26px;
  font-style: italic;
  animation-name: alteracao-opacity-text;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes alteracao-opacity-text {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/* ========================== SOBRE MIM ========================== */

#section-sobre-mim {
  background-color: var(--cor-1);
  padding: 100px;
  margin-top: 150px;
}

#section-sobre-mim>div:nth-child(1) {
  width: 100%;
  display: flex;
  justify-content: center;
}

#img-logo-sobre-mim {
  position: absolute;
  margin: auto;
  width: 150px;
  transform: translateY(-190px);
}

#sobre-mim-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

#sobre-mim-title>div>div:nth-child(1) {
  background-color: #4B4F3A;
  width: 15px;
  height: 40px;
}

#sobre-mim-title>div>div:nth-child(2) {
  background-color: var(--dourado);
  width: 15px;
  height: 40px;
}

#sobre-mim-title h1 {
  color: var(--cor-4);
  font-family: "montserrat-regular";
  font-size: 40px;
}

#sobre-mim-content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

#sobre-mim-content>div {
  color: var(--cor-4);
  font-size: 28px;
  line-height: 80px;
  width: 50%;
}

#sobre-mim-content>img {
  width: 500px;
}

/* ========================== FEEDBACKS ========================== */

#section-feedbacks {
  padding: 150px 100px;
}

#feedbacks-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

#feedbacks-title>div>div:nth-child(1) {
  background-color: #4B4F3A;
  width: 15px;
  height: 40px;
}

#feedbacks-title>div>div:nth-child(2) {
  background-color: var(--dourado);
  width: 15px;
  height: 40px;
}

#feedbacks-title h1 {
  font-family: "montserrat-regular";
  color: var(--cor-1);
  font-size: 40px;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 50px;
}

#feedbacks-content {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

#feedbacks-content>div {
  background-color: var(--cor-2);
  width: 500px;
  padding: 20px;
  border-radius: 10px;
  color: var(--cor-4);
  cursor: default;
  transition: all 200ms ease-in-out;
}

#feedbacks-content>div:hover {
  background-color: var(--cor-4);
  color: var(--cor-2);
}

#feedbacks-content>div:hover i {
  border: 1px solid var(--cor-2);
}

#feedbacks-content>div>div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

#feedbacks-content>div>div>i {
  border: 1px solid var(--cor-4);
  padding: 10px;
  border-radius: 100%;
}

#feedbacks-content>div>div h1 {
  font-size: 1.5rem;
  transition: all 200ms ease-in-out;
}

#feedbacks-content>div:hover h1 {
  color: var(--cor-1);
}

#feedbacks-content>div>p {
  margin-top: 40px;
  font-size: 18px;
  line-height: 30px;
}

/* ========================== CONTATO ========================== */

#section-contato {
  background-color: var(--cor-1);
  padding: 50px 50px 0px 50px;
}

#contato-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contato-content>a>img {
  width: 500px;
}

#section-contato p {
  color: var(--cor-4);
}

#contato-content>div:nth-child(1) {
  display: flex;
  flex-direction: column;
}

#contato-content>div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

#contato-content>div:nth-child(1)>div:nth-child(1),
#contato-content>div:nth-child(1)>div:nth-child(2),
#contato-content>div:nth-child(1)>div:nth-child(3) {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  font-size: 20px;
  width: 80%;
  padding-left: 120px;
}

#contato-content>div:nth-child(2)>div:nth-child(1),
#contato-content>div:nth-child(2)>div:nth-child(2) {
  display: flex;
  align-items: top;
  gap: 10px;
  margin-top: 50px;
  font-size: 20px;
  width: 80%;
  padding-left: 120px;
}

#second-img-mapa {
  display: none;
}

#contato-footer {
  text-align: center;
  margin-top: 100px;
}

#contato-footer img {
  width: 50px;
}

#contato-footer p {
  font-size: 30px;
  font-family: moondance;
}