:root {
  --color-primary: #0d5454;       /* verde/teal escuro do logo */
  --color-primary-light: #2f7774;
  --color-accent: #c87b32;       /* terracota do logo */
  --color-bg: #f7f1e7;           /* bege claro do fundo */
  --color-bg-alt: #f3ebe0;
  --color-bg-soft: #faf5ee;
  --color-text: #1f2424;
  --color-text-muted: #6b6b72;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgba(247, 241, 231, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 120px;   /* aumentado */
  width: auto;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 4px 0;
}

.nav a:hover {
  color: var(--color-primary);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: rgba(13, 84, 84, 0.06);
}

.btn--sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* Sections */

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--highlight {
  background: radial-gradient(circle at top left, #f2e5d2, #f7f1e7);
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.subtitle {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 10px;
}

/* Hero */

.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(200, 123, 50, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(13, 84, 84, 0.12), var(--color-bg));
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.hero p {
  max-width: 560px;
  color: var(--color-text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.hero__bullets li {
  margin-bottom: 4px;
}

.hero__bullets li::before {
  content: "•";
  color: var(--color-accent);
  margin-right: 6px;
}

.hero__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__symbol {
  width: 260px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0e6d7;
  box-shadow: var(--shadow-soft);
}

.hero__symbol img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__caption {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Layout helpers */

.section__two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* Sobre / foto terapeuta */

.sobre__foto-wrap {
  display: flex;
  justify-content: center;
}

.sobre__foto {
  width: 450px;
  max-width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #f0e6d7;
  box-shadow: var(--shadow-soft);
}

.sobre__foto img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Formações */

.formacoes-box {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.formacoes-box--inline {
  margin-top: 18px;
}

.formacoes-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formacoes-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.formacao-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.formacao-logo img {
  height: auto;
  max-height: 60px;
  display: block;
}

/* Cards & grids */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.cards-grid--testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
}

.card--testimonial {
  background: #ffffff;
}

.card--testimonial p {
  font-style: italic;
}

.card__author {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.section__note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Checklists & lists */

.checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}

.regions-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.regions-list li {
  margin-bottom: 4px;
}

/* Form */

.form {
  background: #ffffff;
  padding: 22px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.form__group {
  margin-bottom: 14px;
}

.form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6d1c7;
  font: inherit;
  background-color: #fefbf7;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(13, 84, 84, 0.25);
}

.form__note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background-color: #f3ebdf;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  align-items: center;
}

.footer__info p {
  margin: 2px 0;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social a {
  display: flex;
  color: var(--color-text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.footer__dev {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer__dev:hover {
  opacity: 1;
}

.footer__dev img {
  height: auto;
  width: 45px;
}

/* Responsivo */

@media (max-width: 900px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .nav {
    display: none; /* pode trocar depois por menu hamburguer */
  }

  .hero__inner,
  .section__two-cols,
  .cards-grid,
  .cards-grid--testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 72px;
  }

  .hero__image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .logo-img {
    height: 80px;
  }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
  animation: pulse-shake 3s infinite;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation-play-state: paused; /* Pausa a animação no hover */
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFF;
}

/* Animação para chamar atenção */
@keyframes pulse-shake {
  0%, 50%, 100% { transform: translateX(0) rotate(0); }
  55%, 65% { transform: translateX(-4px) rotate(-3deg); }
  60%, 70% { transform: translateX(4px) rotate(3deg); }
}

/*Desenvolvido por jcodeworks.com.br*/
