body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

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

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}

.hero_area .hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(14, 55, 70, 0.9)), to(rgba(14, 55, 70, 0.15)));
  background: linear-gradient(to right, rgba(14, 55, 70, 0.9), rgba(14, 55, 70, 0.15));
}



.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.navbar-brand span {
  color: #ce9a9a;
}

.navbar-brand:hover {
  color: #ce9a9a;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-nav .nav-item .nav-link i {
  margin-right: 5px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #ce9a9a;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #ce9a9a;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
}

.slider_section .detail-box h1 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ce9a9a;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ce9a9a;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #ce9a9a;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel_btn-box {
  border-radius: 25px; !important; !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px auto 0 auto;
}

.slider_section .carousel_btn-box a {
  
  position: unset;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 1;
  color: #000000;
  font-size: 14px;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
  margin: 0 3px;
}

.slider_section .carousel_btn-box a:hover {
  background-color: #ce9a9a;
  color: #ffffff;
  
}

.product_section .heading_container {
  margin-bottom: 35px;
}

.product_section .product_container {
  position: relative;
  background-color: #f4f2ec;
  padding: 30px 0;
  margin: 0 75px;
}

.product_section .box {
  color: #000000;
  text-align: center;
  border-radius: 5px;
}

.product_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 15px 25px;
}

.product_section .box .img-box img {
  max-width: 225px;
  max-height: 190px;
}

.product_section .box .detail-box {
  padding: 15px;
}

.product_section .box .detail-box h4 {
  font-weight: 600;
}

.product_section .box .detail-box .new_price {
  font-weight: 600;
}

.product_section .box .detail-box .old_price {
  text-decoration: line-through;
  color: #999;
}

.product_section .box .detail-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.product_section .box .detail-box a {
  display: inline-block;
  padding: 5px 25px;
  background-color: #ce9a9a;
  color: #ffffff;
  border-radius: 25px; !important;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ce9a9a;
}

.product_section .box .detail-box a:hover {
  background-color: transparent;
  color: #ce9a9a;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 25px; !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #a16161;
  color: #ffffff;
  border-radius: 25px; !important;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #a16161;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #a16161;
}

.product_section .owl-carousel {
  position: unset;
}

.product_section .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product_section .owl-carousel .owl-nav button.owl-next,
.product_section .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  margin: 3px 0;
  border-radius: 100%;
  outline: none;
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #a16161;
  color: #ffffff;
  font-size: 24px;
}

.product_section .owl-carousel .owl-nav button.owl-next:hover,
.product_section .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #ce9a9a;
}

.product_section .owl-carousel .owl-dots {
  display: none;
}

.about_section {
  background-color: #a16161;
  color: #ffffff;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about_section .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_section .detail-box {
  margin: 45px 0;
}

.about_section .detail-box p {
  color: #fefefe;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ce9a9a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ce9a9a;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #ce9a9a;
}

.contact_section {
  position: relative;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #f4f2ec;
  outline: none;
  color: #000000;
  border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #222222;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::placeholder {
  color: #222222;
}

.contact_section .form_container input.message-box {
  height: 120px;
  border-radius: 5px;
}

.contact_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: #ce9a9a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ce9a9a;
}

.contact_section .form_container button:hover {
  background-color: transparent;
  color: #ce9a9a;
}

.contact_section .map_container {
  width: 100%;
  height: 345px;
  border-radius: 10px;
  overflow: hidden;
}

.contact_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

.client_section .client_container {
  margin-top: 45px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 5px;
}

.client_section .box .img-box {
  position: relative;
  width: 105px;
  margin-bottom: -45px;
  margin-left: 25px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 5px solid #ce9a9a;
}

.client_section .box .detail-box {
  border: 1px solid #a16161;
  padding: 60px 25px 25px 25px;
  margin-bottom: 25px;
}

.client_section .box .detail-box h5 {
  font-weight: 600;
}

.client_section .box .detail-box p {
  margin: 0;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}

.client_section .carousel-wrap .active + .active .box {
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px 10px 0 0;
  outline: none;
  background-color: #ce9a9a;
  color: #ffffff;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #161825;
}

/* footer section*/
.footer_section {
  background-color: #a16161;
  position: relative;
  color: #ffffff;
}

.footer_section .footer_content {
  padding: 60px 0 10px 0;
}

.footer_section .footer-col {
  margin-bottom: 45px;
}

.footer_section .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer_section .contact_nav a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer_section .contact_nav a i {
  font-size: 22px;
  margin-right: 10px;
}

.footer_section .contact_nav a:hover {
  color: #ce9a9a;
}

.footer_section h4 {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.footer_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  margin-left: 10px;
}

.footer_section .social_box a:hover {
  color: #ce9a9a;
  border-color: #ce9a9a;
}

.footer_section .footer_form input {
  width: 100%;
  border: none;
  height: 45px;
  margin-bottom: 15px;
  padding-left: 25px;
  background-color: #eaeaea;
  outline: none;
  color: #101010;
}

.footer_section .footer_form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ce9a9a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ce9a9a;
}

.footer_section .footer_form button:hover {
  background-color: transparent;
  color: #ce9a9a;
}



.footer_section .footer_form .botao-verde {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00478E;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #00478E;
}

.footer_section .footer_form .botao-verde:hover {
  background-color: transparent;
  color: #a3f0ae;
}



.footer_section .footer_form .botao-azul {
  display: inline-block;
  padding: 10px 45px;
  background-color: #0b7a76;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #0b7a76;
}

.footer_section .footer_form .botao-azul:hover {
  background-color: transparent;
  color: #a3f0ed;
}


.footer_section .footer-info {
  background-color: #0b2d39;
}

.footer_section .footer-info p {
  margin: 0;
}

.footer_section .footer-info p a {
  color: inherit;
}

.footer_section .footer-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_section .footer-info-box p,
.footer_section .footer-info-box .social_box {
  margin: 15px 0;
}
/*# sourceMappingURL=style.css.map */





.btn-box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 25px; !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.btn-box2 a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #a16161;
  color: #ffffff;
  border-radius: 25px; !important;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #a16161;
}

.btn-box2 a:hover {
  background-color: transparent;
  color: #a16161;
}


.ocultar{
  display:none;
}


    /* Seletor de data */
    .date-selector {
      display: flex;
      overflow-x: auto;
      margin-bottom: 15px;
      padding: 5px 0;
      cursor: grab;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge */
  }
  
  .date-card, .calendar-icon {
      min-width: 70px;
      height: 70px;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      background-color: #f9f9f9;
      transition: all 0.3s;
      color: #666;
  }
  
  .date-card {
      flex-direction: column;
  }
  
  .date-card.active {
      background-color: #e0af88;
      color: white;
      border-color: #e0af88;
  }
  
  .date-card:hover:not(.active), .calendar-icon:hover {
      background-color: #f0f0f0;
      border-color: #ccc;
  }
  
  .date-day {
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
  }
  
  .date-date {
      font-size: 16px;
      font-weight: bold;
  }
  
  .date-month {
      font-size: 12px;
      text-transform: uppercase;
  }
  
  .calendar-icon {
      font-size: 24px;
  }
  
  /* Esconder o input original */
  #data {
      display: none;
  }



  
  /* Botões de seleção */
 


#btn_salvar {
      width: 100%;
      padding-left: 15px;
      border-radius: 25px; !important;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      font-weight: 1000;
      color:rgb(255, 255, 255);
      height: 50px;
      background-color:#dc928d;
  }

  #mensagem {
    background-color: #d494e4;
    color: #ffffff;
    border-radius: 25px !important;
    border: 1px solid #e0e0e0;
    font-size: 20px;
    
    font-weight: 400;
    width: 50%; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: auto;
  }
  

#botao_editar {
  width: 100%;
  padding-left: 15px;
  border-radius: 25px; !important;
  border: 2px solid #e0e0e0;
  border-color:rgb(247, 170, 170);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-weight: 400;
  color: #555;
  height: 50px;
  background-color: #e0af88;

}

#botao_editar:hover {
  border-color: #e0af88;
  background-color: #ce9d76;
  box-shadow: 10 3px 8px rgb(253, 210, 207);
}

#btn-selecionar-servico {
    width: 100%;
    padding-left: 15px;
    border-radius: 25px; !important;
    border: 2px solid #e0e0e0;
    border-color:rgb(247, 170, 170);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-weight: 400;
    color: #555;
    height: 50px;
    background-color:  rgb(255, 255, 255);
}




#btn-selecionar-servico:hover{
  border-color: #e0af88;
  background-color:  rgb(245, 243, 243);
  box-shadow: 10 3px 8px rgb(253, 210, 207);
}

#btn_salvar:hover {
  border-color: #e0af88;
  background-color:#d17b75;
  box-shadow: 10 3px 8px rgb(253, 210, 207);
}

  #mensagem1 {
    background-color: rgb(255, 255, 255);
    width: 100%;
      padding-left: 15px;
      border-radius: 25px; !important;
      border: 2px solid #e0e0e0;
      
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      font-weight: 400;
      color: #555;
  }

 #btn-selecionar-funcionario, #telefone, #nome,  #email, #obs {
      width: 100%;
      padding-left: 15px;
      border-radius: 25px; !important;
      border: 2px solid #e0e0e0;
      
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      font-weight: 400;
      color: #555;
      height: 50px;
      background-color: rgb(255, 255, 255);
  }
  

  #btn-selecionar-servico:hover, #btn-selecionar-funcionario:hover, #btn_salvar:hover, #botao_editar:hover {
      border-color: #e0af88;
      box-shadow: 10 3px 8px rgb(253, 210, 207);
  }
  
  #btn-selecionar-servico::after, #btn-selecionar-funcionario::after, #btn_salvar::after {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 10px;
      color: #888;
      transition: transform 0.3s ease;
  }
  
  /* Estilo do modal */
  .modal-content {
      border: none;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      overflow: hidden;
  }
  
  .modal-header {
      background-color: #f8f9fa;
      border-bottom: 1px solid #f0f0f0;
      padding: 20px 25px;
  }
  
  .modal-header .modal-title {
      font-weight: 600;
      color: #333;
      font-size: 1.2rem;
  }
  
  .modal-header .close {
      opacity: 0.7;
      transition: opacity 0.3s;
      outline: none;
      box-shadow: none;
  }
  
  .modal-header .close:hover {
      opacity: 1;
  }
  
  .modal-body {
      padding: 25px;
  }
  
  /* Cards (serviço e funcionário) */
  .servico-card, .funcionario-card {
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 12px;
      border: 1px solid #eaeaea;
      margin-bottom: 15px;
      overflow: hidden;
  }
  
  .servico-card .card-body, .funcionario-card .card-body {
      padding: 15px;
  }
  
  .servico-card:hover, .funcionario-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0,0,0,0.08);
      border-color: #e0af88;
  }
  
  .servico-card.selected, .funcionario-card.selected {
      background-color: rgb(255, 244, 244);
      border-color: #e0af88;
      box-shadow: 0 0 0 2px rgb(253, 210, 207);
  }
  
  .servico-img img, .funcionario-img img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .servico-img img {
      border-radius: 10px;
  }
  
  .funcionario-img img {
      border-radius: 50%; /* Imagem circular para profissionais */
  }
  
  .servico-card h6, .funcionario-card h6 {
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
      font-size: 1rem;
  }
  
  .servico-card p {
      font-weight: 500;
      color: #e0af88;
  }
  
  .funcionario-card p {
      font-weight: 400;
      color: #666;
      font-size: 0.9rem;
  }
  
  /* Animação de entrada do modal */
  .modal.fade .modal-dialog {
      transform: scale(0.9);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .modal.show .modal-dialog {
      transform: scale(1);
      opacity: 1;
  }
  
  /* Cards de horário */
  .horarios-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
  }
  
  .horario-card {
      flex: 0 0 auto;
      width: calc(20% - 10px); /* 5 cards por linha em telas grandes */
      min-width: 70px;
      height: 45px;
      border-radius: 10px;
      border: 1px solid #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      background-color: #f9f9f9;
      transition: all 0.2s ease;
      font-weight: 500;
      color: #555;
  }
  
  .horario-card:hover {
      background-color: #f0f0f0;
      border-color: #e0af88;
  }
  
  .horario-card.selected {
      background-color: #e0af88;
      color: white;
      border-color: #e0af88;
  }
  
  /* Responsividade para telas menores */
  @media (max-width: 768px) {
      .horario-card {
          width: calc(25% - 10px); /* 4 cards por linha em telas médias */
      }
  }
  
  @media (max-width: 576px) {
      .horario-card {
          width: calc(33.333% - 10px); /* 3 cards por linha em telas pequenas */
      }
  }

  