/* ============================
   Geral
============================ */
.cta-psi {
  background-color: #4c53de;
  border: none;
}

.titulo-hero {
  font-size: 27px;
}

.text-reset {
  text-decoration: none;
}

.cor-principal {
  color: #4c53de!important;
}

/* ============================
   Responsividade
============================ */
@media (min-width: 768px) {
  .titulo-hero {
    font-size: 35px;
  }
}

/* ============================
   Seção de Avaliações
============================ */
.review-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #fff;
  transition: transform 0.3s;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.review-card:hover {
  transform: translateY(-5px);
}

.google-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
}

.carousel-inner {
  width: 100%;
}

.carousel-indicators {
  position: relative;
  margin-top: 20px;
}

.carousel-indicators button {
  background-color: #000;
}

.desktop-layout .review-card {
  margin: 0 10px; /* Espaçamento lateral entre os cards no desktop */
}

/* ============================
   WhatsApp Float
============================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 24px;
  z-index: 1000;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}

/* ============================
   Sidebar
============================ */
.sidebar {
  width: 280px;
  height: 100vh;
  position: fixed;
  left: -280px;
  top: 0;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 1050;
  overflow: hidden;
}

.sidebar.active {
  left: 0;
}

/* Cabeçalho da Sidebar */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 70px;
  border-bottom: 1px solid #eee;
}

/* Conteúdo rolável da Sidebar */
.sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 50px);
  padding: 10px 0;
}

.sidebar a {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.sidebar a:hover {
  background: #f4f4f4;
}

.iconify-sidebar {
  font-size: 22px;
}

.btn-bem-estar-sidebar {
  background: linear-gradient(135deg, #f3e8ff, rgba(99, 102, 241, 0.1));
}

.btn-whatsapp-sidebar {
  background: linear-gradient(135deg, #25D366, rgba(72, 201, 176, 0.1));
}

.btn-login-psi {
  font-size: 17px;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #4c53de;
  color: #f3e8ff!important;
  border: none;
}

/* ============================
   Navbar
============================ */
.menu-btn {
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.navbar {
  background-color: #fff;
  color: #4c53de!important;
  height: 70px;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease;
}

.navbar-brand img {
  height: 40px;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
}

.navbar a {
  color: #4c53de;
}

.login-btn {
  background: #6b72f8;
  border-radius: 20px;
  padding: 8px 15px;
}
.nav-links .login-btn::after {
  display: none !important;
}


.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar .nav-link {
    border-radius: 15px!important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 0;
}


/* ============================
   Responsividade Navbar
============================ */
@media (max-width: 991.98px) {
  .nav-links {
    display: none;
  }
}