:root {
  --verde: #7c9a92;
  --verde-claro: #d9e4dd;
  --texto: #3a3a3a;
  --fundo: #fafafa;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto);
  padding-top: 70px;
}

h1, h2, h5 {
  font-family: 'Playfair Display', serif;
}

/* NAVBAR */
.navbar {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.navbar-brand {
  font-family: 'Playfair Display';
  color: var(--verde);
}

/* HERO */
.hero {
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.6rem;
}

.btn-hero {
  background: var(--verde);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.bg-light {
  background: var(--fundo);
}

/* FOTO */
.foto-perfil {
  border-radius: 16px;
}

/* AJUDA */
.ajuda-card {
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.icone-topo {
  width: 72px;
  height: 72px;
  background: var(--verde-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: -70px auto 20px;
}

.lista-ajuda {
  list-style: none;
  padding: 0;
  text-align: left;
}

.lista-ajuda li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.lista-ajuda li::before {
  content: "✔";
  color: var(--verde);
  position: absolute;
  left: 0;
}

/* FOOTER */
.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
}
.qualificacoes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualificacao-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.qualificacao-icone {
  width: 48px;
  height: 48px;
  background: #e9f0ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  font-size: 20px;
  flex-shrink: 0;
}
/* MENU */
.menu-custom {
  background: #fff;
  border-bottom: 1px solid #eee;
}

@media (max-width: 991px) {
  .menu-container {
    flex-wrap: nowrap;
  }
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

/* LOGO */
@media (max-width: 991px) {

  .menu-logo {
    max-width: calc(100% - 60px);
  }

  .logo-texto strong {
    font-size: 16px;
  }

  .logo-texto small {
    font-size: 12px;
  }

}
.menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-logo img {
  height: 100px;
}

.logo-texto {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-texto strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--verde);
}

.logo-texto small {
  font-size: 13px;
  color: #666;
}

/* LINKS CENTRAIS */
.menu-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
    margin-right: 60px;
}

.menu-links a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  position: relative;
}

.menu-links a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde);
  transition: 0.3s;
}

.menu-links a:hover::after {
  width: 100%;
}

/* AÇÕES */
.menu-acoes {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-acoes i {
  font-size: 18px;
  color: #fff;
}

.menu-acoes a:not(.btn-agendar) {
  background: var(--verde-claro);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-agendar {
  background: var(--verde);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}
/* HAMBURGER CUSTOM */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  width: 28px;
  height: 28px;
}

/* MOBILE */
@media (max-width: 991px) {

  /* menu abre em coluna */
  .navbar-collapse {
    margin-top: 16px;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }

  .menu-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .menu-acoes {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn-agendar {
    width: 100%;
    text-align: center;
  }
}

/* GARANTE QUE O BOTÃO APAREÇA */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(124,154,146, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 30px;
  height: 30px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

