:root {
  /* --pistache: #e5d2b8; */
  --pistache: #adb5a0;
  --gelo: #f1f2f6;
  --h1-bemvindo: #7b8564;
  font-size: 21px !important;
}

html {
  scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    background: #ffffff;
    color: #333;
}

.header {
  background: var(--pistache);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around; /* Alinha tudo à esquerda */
  gap: 40px; /* Espaçamento entre logo, botão e menu */
}

.logo {
    height: 125px;
}

.carousel-inner img {
  max-height: 1000px;
  object-fit: cover;
}


.menu a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  list-style: none;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Esconde o ícone de fechar inicialmente */
.menu-toggle .icon-close {
  display: none;
}

/* Menu padrão */
.menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  list-style: none;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 30px;
  align-items: center;  /* mantém o alinhamento vertical central */
  background: var(--pistache);
  color: #fff;
  justify-content: center;
}

.hero-text {
  flex: 1 1 400px; /* cresce e encolhe */
  max-width: 600px;
  color: #fff;
}

.hero-img {
  flex: 0 0 300px; /* fixa largura e não cresce */
  max-width: 40%;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
  align-self: center; /* garante alinhamento vertical mesmo se flex estiver wrap */
}


.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--h1-bemvindo);
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
}

.btn-psi {
  background-color: #7b8564 !important; /* vermelho visível */
  color: #fff !important;
  padding: 20px 30px !important;
  font-size: 1.6rem !important;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-psi:hover {
  transform: translateY(3px);
  color: #fff;
}


.content {
    text-align: center;
    padding: 60px 30px;
    max-width: 100%;
    margin: auto;
    background-color: #f1f2f6;
}

.content h2 {
    font-size: 2rem;
    color: var(--h1-bemvindo);
    font-weight: bold;
    
}

.content p {
    margin-top: 15px;
}



/* Quem sou eu e Minha Abordagem */
.highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 30px;
    align-items: center;
    background: var(--pistache);
    justify-content: center;
    color: #fff;
}

.highlight img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.highlight div {
    max-width: 500px;
}

.highlight h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--h1-bemvindo);
    font-weight: bold;
}


.bi-chat-left-quote {
    font-size: 22px;
}

.card {
  border-radius: 50px !important;
}

.card-title {
  color: var(--h1-bemvindo) !important;
  font-weight: bold;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  max-width: 1400px; /* AUMENTA o limite de largura */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.custom-card {
  flex: 1 1 500px;
  max-width: 540px;
  background: #fdfdfd;
  border: 4px solid transparent;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
}

/* .border-pink {
  border-color: #f7d49f !important;
} */

.card-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* Estilo da lista */
.custom-card-link {
  flex: 1 1 500px;         /* ocupa mais espaço horizontal */
  max-width: 540px;        /* mais largo que os cards pequenos */
  background: #fdfdfd;
  border: 4px solid transparent;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.custom-card-link:hover {
  transform: translateY(-5px);
}

.card-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
}

.card-list li {
  display: flex;
  align-items: flex-start; /* Alinha topo com topo */
  margin-bottom: 10px;
  
}

.check-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.check-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* quote */
.quote-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 60px 30px;
  max-width: 100%;
  margin: auto;
  background-color: var(--gelo);
}

/* .border-blue {
  border-color: #daffeb !important;
} */

/* .border-green {
  border-color: #daffeb !important;
} */

.quote-section .custom-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 50px; /* espaço para o ícone */
}

.quote-section .bi-chat-left-quote {
  position: absolute;
  top: 25px;
  left: 20px;
  font-size: 2rem;
  color: #a1968a; /* ou outra cor que desejar */
}




/* FAQ */
.faq {
  padding: 60px 30px;
  background: var(--gelo);
  max-width: 100%;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--h1-bemvindo);
  font-weight: bold;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background: var(--pistache);
}

.faq-question:hover .question-text,
.faq-question:hover .icon {
  color: #fff;
}

.question-text {
  color: #000;
  transition: color 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  font-size: 1.1rem;
  color: #555;
}

.faq-question .icon {
  font-size: 1.8rem;
  color: #000000;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question.active .icon {
  transform: rotate(45deg); /* transforma "+" em "×" visualmente */
}


.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 3rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons .whatsapp {
  color: #25D366;
}

.social-icons .instagram {
  color: #C13584;
}



/* ===== Footer CTA ===== */
.footer-cta {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 60px 30px;
  background: #f7f7f7; /* leve contraste acima do footer */
}

.footer-cta__media {
  flex: 0 0 300px;
  display: grid;
  place-items: center;
}

.footer-portrait {
  width: 260px;
  aspect-ratio: 1 / 1;     /* garante formato quadrado */
  object-fit: cover;       /* preenche sem deformar */
  border-radius: 50%;      /* foto redonda */
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  outline: 6px solid #fff; /* aro branco */
  outline-offset: 0;
}

.footer-cta__content {
  flex: 1 1 520px;
}

.footer-cta__content h2 {
  font-size: 2rem;
  margin: 0 0 10px;
  color: #b47a55;
}

.footer-cta__lead {
  margin: 0 0 22px;
  color: #555;
  font-size: 1.05rem;
}

/* Cards de contato */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.10);
}

.contact-card i {
  font-size: 1.8rem;
  line-height: 0;
}

.contact-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-card strong {
  font-size: 1.05rem;
  color: #333;
}

.contact-card span {
  font-size: .95rem;
  color: #666;
}

/* Cores por rede */
.contact-card.whatsapp i { color: #25D366; }
.contact-card.instagram i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--h1-bemvindo);
  color: #fff;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr; /* sobre | links | contato */
  gap: 32px;
  align-items: start;
}

.footer__logo {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 12px;
  border-radius: 12px; /* opcional */
}

.footer__about p {
  margin: 6px 0;
  color: rgba(255,255,255,.92);
}

.footer__links h4,
.footer__contact h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: #fff;
}

.footer__links ul,
.footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li + li,
.footer__contact li + li {
  margin-top: 8px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease, text-decoration-color .2s ease;
  text-underline-offset: 3px;
}
.footer a:hover,
.footer a:focus { opacity: 1; text-decoration: underline; }

.footer__contact i {
  font-size: 1rem;
  margin-right: 8px;
  color: var(--pistache); /* destaque */
  vertical-align: -1px;
}

/* Social cores */
.footer .bi-whatsapp { color: #25D366; }
.footer .bi-instagram {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.22);
  padding: 16px 24px 22px;
  text-align: center;
  font-size: .95rem;
}
.footer__bottom p { margin: 6px 0; }

/* ===== Responsivo ===== */
@media (max-width: 960px) {
  .footer__container {
    grid-template-columns: 1fr 1fr; /* sobre | (links/contato) */
  }
}

@media (max-width: 640px) {
  .footer__container {
    grid-template-columns: 1fr; /* uma coluna */
    text-align: center;
  }
  .footer__logo { margin: 0 auto 12px; }
  .footer__links ul li { display: inline-block; margin: 6px 12px; }
}


@media (max-width: 937px) {

  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    margin-top: 0;
  }

  .hero-img {
    margin-top: 20px;
    max-width: 80%;
  }
    .highlight {
    flex-direction: column;
    }

  .menu {
    display: none;
    width: 100%;
    background: var(--h1-bemvindo);
    text-align: center;
  }

  .menu.active {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .menu li {
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* Alterna ícones no estado ativo */
  .menu.active ~ .menu-toggle .icon-hamburger {
    display: none;
  }

  .menu.active ~ .menu-toggle .icon-close {
    display: inline;
  }

  .menu.active {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .menu li {
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* Alterna ícones no estado ativo */
  .menu.active ~ .menu-toggle .icon-hamburger {
    display: none;
  }

  .menu.active ~ .menu-toggle .icon-close {
    display: inline;
  }

  .footer-cta {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta__content { width: 100%; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-portrait { width: 220px; }

}


/* ===== CONTATO — mapa full-row no responsivo e com card no mobile ===== */

/* mantém seu flex e permite quebra controlada */
#contato.footer-cta { flex-wrap: wrap; }

/* ordem segura: foto → texto → mapa */
#contato .footer-cta__media   { order: 1; }
#contato .footer-cta__content { order: 2; }
#contato .footer-cta__map     { order: 3; }

/* mapa no desktop: flexível, mas com limites */
#contato .footer-cta__map {
  flex: 1 1 520px;
  max-width: 680px;
  /* p/ mobile < 600px: o scroll fica só aqui (não na página) */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* wrapper do iframe — usa 4:3 (600x450) para manter o card */
#contato .map-ratio {
  position: relative;
  width: 600px;            /* <- largura fixa que preserva o card do Google */
  aspect-ratio: 4 / 3;     /* 600x450 */
  border-radius: 12px;
  overflow: hidden;
  background: #e9ecef;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* iframe ocupa todo o wrapper */
#contato .map-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* links abaixo do mapa */
#contato .map-link {
  display: inline-block;
  margin-top: 10px;
  margin-right: 12px;
  font-size: .95rem;
  color: var(--h1-bemvindo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ——— quando a tela reduzir, o mapa ganha uma linha inteira ——— */
@media (max-width: 1450px) {
  #contato .footer-cta__map {
    flex: 1 1 100%;
    max-width: 100%;
    /* centraliza o bloco 600px dentro da linha inteira */
    display: block;
  }
}

/* <600px: mantém o card (mapa continua 600px) e só o bloco do mapa rola lateralmente */
@media (max-width: 599.98px) {
  #contato .footer-cta__map {
    /* ocupa a linha inteira e centraliza visualmente */
    padding-bottom: 2px; /* espaço para evitar “colar” na borda ao rolar */
  }
  /* dica sutil de deslize no mobile */
  #contato .footer-cta__map::after {
    content: "↔️ arraste para ver o mapa completo";
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 6px;
  }
  #contato .map-link {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

/* polimento da foto apenas nesta seção */
#contato .footer-portrait {
  width: 260px;
  max-width: 100%;
}



