html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

header {
  background: url('path-to-your-image.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.5rem;
}

main {
  flex: 1;
  margin-top: 20px;
  padding: 0 20px;
}

h2 {
  text-align: center;
  color: #e09cb9;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pricing-item, .services-item {
  text-align: center;
  margin-bottom: 30px;
}

.carousel-inner {
  margin: 20px 0;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-title {
  color: #e09cb9;
  font-size: 1.75rem;
}




/*---------------------NAVBAR--------------*/
  .navbar {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
      margin-right: 15px;
      transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
      color: #d88ca5 !important;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-brand {
      font-size: 1.5rem;
      letter-spacing: 1px;
  }

  .navbar-text a {
      transition: color 0.3s;
  }

  .navbar-text a:hover {
      color: #ffcccb !important;
  }

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


/* Footer Styles */
.container-footer {
  max-width: 940px;
  margin: 0 auto;
  padding: 70px 0 40px;
}

.footer-column {
  width: 33.3333%;
  padding: 0 10px;
}

.footer-column img {
  float: left;
}

.footer-column h3 {
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin: 24px 0 10px 10px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .5px;
  line-height: 1.5em;
  margin: 15px 0 16px;
}

.footer-links a {
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f1c1d1;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .5px;
  line-height: 1.5em;
  margin-top: 15px;
}

#map-container {
  margin-top: 1rem;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Social Icons */
.social-icons a {
  margin-right: 10px;
  color: white;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f1c1d1;
}

/* Styled Title */
.styled-title {
  font-size: 2rem;
  font-weight: bold;
  color: #e09cb9;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(90deg, rgba(224,156,185,0.2) 0%, rgba(224,156,185,0.4) 50%, rgba(224,156,185,0.2) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* About Section */
#about {
  padding: 60px 0;
}

#about h2 {
  color: #e09cb9;
  margin-bottom: 40px;
}

#about .about-images img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#about .about-images .col-md-4 {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #about .about-images .col-md-4 {
    padding: 0 15px;
  }
}

#about img.rounded-circle {
  border: 5px solid #e09cb9;
}

#about img.rounded {
  border: 3px solid #d88ca5;
  margin-top: 15px;
}

/* Button Styles */
.btn-attractive {
  background-color: #e09cb9;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-attractive:hover {
  background-color: #d88ca5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-attractive:focus {
  outline: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Recommendations */
#recommendations {
  background-color: #f8f9fa;
  padding: 60px 0;
}

#recommendations h2 {
  color: #e09cb9;
  margin-bottom: 40px;
}

.recommendation-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  text-align: center;
}

.recommendation-card img {
  border-radius: 50%;
  max-width: 100px;
  margin: 0 auto 15px;
}

.recommendation-card .card-body {
  padding: 20px;
}

.recommendation-card .card-title {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.recommendation-card .date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.recommendation-card .card-text {
  font-size: 1rem;
  color: #333;
}

/* Certificados */
.modal-content {
  border-radius: 10px;
}

.modal-header, .modal-footer {
  border: none;
}

/* Cartões */
.btn-attractive {
  background-color: #e09cb9;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-attractive:hover {
  background-color: #d88ca5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-attractive:focus {
  outline: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Botão WhatsApp */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-body input, .modal-body textarea {
  width: 100%;
  margin-bottom: 10px;
}

.modal {
  position: fixed;
  bottom: 80px;
  left: 20px;
  margin: 0;
  z-index: 1050;
}

.btn-success {
  background-color: #25D366;
  border-color: #25D366;
}

.btn-success:hover {
  background-color: #1EBE5B;
  border-color: #1EBE5B;
}

.chat-bubble {
  background: #f1f0f0;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  margin-bottom: 10px;
  max-width: 300px;
  width: 100%;
}

.chat-bubble img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-message {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.chat-message p {
  margin: 0;
}

.modal-title img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

#whatsapp-button img {
  width: 60px;
  height: 60px;
}

/* Estilos personalizados para a navbar */
/* Estilos personalizados para a navbar */
.navbar {
  background-color: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar.fixed-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-weight: bold;
  color: #e09cb9;
  font-size: 1.5rem;
}

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

.nav-link {
  color: #e09cb9;
  font-size: 1.1rem;
  transition: background-color 0.2s, color 0.2s;
}

.nav-link:hover {
  background-color: #e09cb9;
  color: white;
  border-radius: 5px;
}

.navbar-text a {
  color: #e09cb9;
  font-size: 1.1rem;
  text-decoration: none;
}

.navbar-text a:hover {
  color: #e09cb9;
  text-decoration: underline;
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%280, 123, 255, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}


/* ......................LOCAL ...........*/
.styled-title {
  font-size: 2rem;
  font-weight: bold;
  color: #e09cb9;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(90deg, rgba(224,156,185,0.2) 0%, rgba(224,156,185,0.4) 50%, rgba(224,156,185,0.2) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.carousel-item img {
  max-height: 650px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 10px;
}
.carousel {
  padding: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}


/* .....................pREÇARIO...........*/
.styled-title {
  font-size: 2rem;
  font-weight: bold;
  color: #e09cb9;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(90deg, rgba(224,156,185,0.2) 0%, rgba(224,156,185,0.4) 50%, rgba(224,156,185,0.2) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.pricing-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card img {
  border-radius: 15px 15px 0 0;
  object-fit: cover;
  height: 200px;
  width: 100%;
}
.pricing-card h3, .pricing-card p {
  margin: 0.5rem 0;
}
.pricing-card .card-body {
  padding: 1.5rem;
}




/* .....................Recomendações..........*/

.styled-title {
  font-size: 2rem;
  font-weight: bold;
  color: #e09cb9;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(90deg, rgba(224,156,185,0.2) 0%, rgba(224,156,185,0.4) 50%, rgba(224,156,185,0.2) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.recommendation-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}
.recommendation-card:hover {
  transform: translateY(-10px);
}
.recommendation-card .card-body {
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(224,156,185,0.2) 0%, rgba(224,156,185,0.4) 50%, rgba(224,156,185,0.2) 100%);
  border-radius: 15px;
}
.recommendation-card .card-title {
  color: #e09cb9;
  font-size: 1.5rem;
}
.recommendation-card .date {
  color: #666;
  font-size: 0.9rem;
}
.recommendation-card .card-text {
  color: #333;
  font-size: 1rem;
}
.star-rating {
  color: #FFD700;
}

/*..................................................*/
.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.btn-attractive {
  background-color: #e09cb9;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-attractive:hover {
  background-color: #d88ca5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.styled-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e09cb9;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(90deg, rgba(224, 156, 185, 0.2) 0%, rgba(224, 156, 185, 0.4) 50%, rgba(224, 156, 185, 0.2) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*-------------SKILLSECTION----------------------*/

.skills-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.styled-title {
  font-size: 2.5rem;
  color: #e09cb9;
  margin-bottom: 30px;
}

.skills-section ul {
  list-style: none;
  padding-left: 0;
}

.skills-section li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.skills-section li i {
  color: #e09cb9;
  margin-right: 10px;
}

/*------------------------------------------------*/
    #cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 20px;
      z-index: 1000;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    #cookie-banner button {
      margin-right: 10px;
    }

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



.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #f9f9f9;
}

.video-frame {
  position: relative;
  border: 5px solid pink; /* Moldura rosa */
  border-radius: 15px;
  overflow: hidden;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.conteudo-sobreposto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  text-shadow: 1px 1px 4px #000;
}

.conteudo-sobreposto h1 {
  font-size: 2em;
  background-color: rgba(255, 192, 203, 0.4); /* rosa claro transparente */
  padding: 10px 20px;
  border-radius: 10px;
}

