body {
  background-color: #ffffff;
  color: #2E0203;
}
.nav-bgcolor {
  background-color: #3E0909;
  color: #ffffff;
}
header {
  background-color: #2E0203;
  color: #ffffff;
}
.section-title {
  border-bottom: 2px solid #2E0203;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.foto-sheila {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}
.logo-header {
  max-height: 190px;
}
footer {
  background-color: #2E0203;
  color: #ffffff;
  padding: 1rem 0;
}
.align-top {
  align-self: flex-start;
}
.card-icon {
  font-size: 2rem;
  color: #2E0203;
  background-color: #ffffff;
  border: 2px solid #2E0203;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 10px auto;
}
.card-iconbox {
  font-size: 2rem;
  color: #2E0203;
  background-color: #ffffff;
  border: 2px solid #2E0203;
  border-radius: 50%;
  width: 90px;
  height: 60px;
  line-height: 56px;
  margin: 20px auto 10px auto;
  padding: 2px;
}

.card-fixo {
  border: 1px solid #2E0203;
  background-color: #fff;
  color: #2E0203;
  transition: transform 0.2s;
}





.card-area {
  border: 1px solid #2E0203;
  background-color: #fff;
  color: #2E0203;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}
.card-area:hover {
  transform: scale(1.02) translateY(-5px);
}
.card-area h4 {
  font-size: 1.25rem;
  margin-top: 10px;
  text-align: center;
}
.card-area p {
  font-size: 0.95rem;
  text-align: center;
}

/* Detalhes ocultos inicialmente */
.card-detalhes {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out, padding 0.5s ease-in-out;
  text-align: left;
  padding: 0 15px;
}
.card-detalhes p {
  text-align: left;
}
/* Card expandido */
.card-area.expandido {
  width: 100% !important;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 15px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  z-index: 10;
}

/* Detalhes visíveis */
.card-area.expandido .card-detalhes {
  max-height: 1500px; /* ajuste conforme necessidade */
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .card-area.expandido .card-detalhes {
    max-height: 3000px;
  }
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;
}
.whatsapp-float,
.telegram-float {
  position: fixed;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float {
  bottom: 20px;
  right: 20px;
}
.telegram-float {
  bottom: 90px;
  right: 20px;
  background-color: #0088cc;
}
.whatsapp-float:hover,
.telegram-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;
} 




.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-button:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;
}

.floating-button i {
  font-size: 20px;
}

.floating-button.telegram {
  bottom: 90px; /* Fica acima do botão do WhatsApp */
  right: 20px;
  background-color: #0088cc;
}







  .social-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }

  .social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
  }

  .social-icon.whatsapp {
    background-color: #25d366;
  }

  .social-icon.linkedin {
    background-color: #0077b5;
  }

  .social-icon.telegram {
    background-color: #0088cc;
  }
  .social-icon.maps {
    background-color: #db4437; /* Cor padrão Google Maps */
  }


  
  .review-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    height: 100%;
  }

  .avatar {
    background: #34a853;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  .review-header .text-warning {
    letter-spacing: 1px;
  }
