/* Kimura — página estática (sem Elementor) */
:root {
  --color-primary: #133f3d;
  --color-secondary: #f5efe6;
  --color-text: #7a7a7a;
  --color-accent: #d27d28;
  /* Texto sobre fundo claro (WCAG AA) */
  --color-accent-text: #9a5a16;
  --color-gold: #faaf3a;
  --color-cream: #f6f4f2;
  --color-beige-section: #c6b198;
  --color-heading: #133f3d;
  --color-quote-overlay: #42372f;
  --max-w: 1170px;
  --font-body: "Satoshi Variable", "Satoshi", system-ui, sans-serif;
  --font-display: "Hagrid Variable", "Hagrid", Georgia, "Times New Roman", serif;
  --font-label: "Satoshi Variable", "Satoshi", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

@keyframes kimuraFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kimuraFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-up,
.animate-fade {
  opacity: 0;
}

.animate-up {
  transform: translateY(26px);
}

.animate-up.is-visible {
  animation: kimuraFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.animate-fade.is-visible {
  animation: kimuraFadeIn 0.9s ease forwards;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px))
    max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px));
}

/* Barra aviso */
.top-bar {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  font-size: clamp(0.72rem, 2.8vw, 0.85rem);
  line-height: 1.45;
  padding: max(0.65rem, env(safe-area-inset-top, 0px)) 1rem 0.65rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  hyphens: auto;
  -webkit-hyphens: auto;
}

.top-bar strong {
  font-weight: 700;
}

/* Header */
.site-header {
  background: var(--color-primary);
  padding: 12px 0;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.logo {
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 6.75rem);
}

.logo img {
  width: auto;
  max-width: min(188px, 48vw);
  height: auto;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .logo {
    max-width: none;
  }

  .logo img {
    max-width: min(42%, 228px);
  }
}

.social {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--color-accent);
  border-radius: 4px;
  color: #fff;
  transition: opacity 0.25s, transform 0.25s;
}

.social a:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero — imagem em <img> para LCP (fetchpriority, WebP) */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(280px, 50vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: max(clamp(2.75rem, 10vw, 6.8rem), env(safe-area-inset-top, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  padding-bottom: clamp(3.25rem, 12vw, 11rem);
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  background: var(--color-primary);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-primary);
  opacity: 0.53;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-family: var(--font-label);
  font-size: clamp(0.65rem, 2.8vw, 0.95rem);
  font-weight: 700;
  letter-spacing: clamp(0.08em, 1.2vw, 0.2em);
  text-transform: uppercase;
  color: var(--color-secondary);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  margin: 0 auto 1.25rem;
  max-width: 22rem;
  line-height: 1.35;
}

@media (min-width: 480px) {
  .hero-kicker {
    max-width: none;
  }
}

.hero-divider {
  width: 50%;
  max-width: 280px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.25rem auto;
  border: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 6.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--color-secondary);
  margin: 0 auto 1.75rem;
  padding-inline: 0.25rem;
  max-width: 100%;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}

@media (min-width: 480px) {
  .hero-title {
    margin-bottom: 2rem;
  }
}

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: 500;
  letter-spacing: clamp(0.12em, 1vw, 0.2em);
  text-transform: uppercase;
  text-decoration: none;
  padding: clamp(1rem, 4vw, 1.5rem) clamp(1.25rem, 6vw, 2.75rem);
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  background: var(--color-gold);
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s;
  width: 100%;
  max-width: min(100%, 22rem);
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .btn {
    width: auto;
    max-width: none;
  }
}

.btn:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/* Seção natureza */
.section-nature {
  background: #fff;
  padding: clamp(64px, 12vw, 100px) 0 clamp(80px, 14vw, 130px);
}

.nature-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .nature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nature-img img {
  width: 100%;
  border-radius: 0;
  min-height: 240px;
  object-fit: cover;
}

.section-label {
  font-family: var(--font-label);
  font-size: clamp(0.72rem, 2.2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: clamp(0.12em, 1.5vw, 0.27em);
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin: 0 0 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.section-nature .section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
}

.nature-text p {
  margin: 0 0 1rem;
}

.nature-divider {
  width: 89px;
  height: 1px;
  background: var(--color-accent);
  border: 0;
  margin: 2rem 0 0;
}

/* Especializações */
.section-spec {
  background: var(--color-cream);
  padding: clamp(2.5rem, 8vw, 6rem) 0 clamp(3rem, 10vw, 7rem);
  margin-top: clamp(-2.25rem, -6vw, -4rem);
}

.spec-title-wrap {
  padding-top: clamp(2rem, 6vw, 5rem);
  margin-bottom: 1.75rem;
}

.spec-title-wrap .section-title {
  font-size: 1.5rem;
  color: var(--color-accent-text);
}

.spec-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(19, 63, 61, 0.14);
}

.spec-card img {
  width: 100%;
  height: 174px;
  object-fit: cover;
}

.spec-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  color: var(--color-heading);
  margin: 0;
  padding: 1.25rem 1.25rem 0;
  font-weight: 400;
}

@media (min-width: 480px) {
  .spec-card h3 {
    padding: 1.5rem 1.5rem 0 2.5rem;
  }
}

.spec-card p {
  margin: 0;
  padding: 0.6rem 1.25rem 1.25rem;
  font-size: clamp(0.88rem, 2.4vw, 0.95rem);
}

@media (min-width: 480px) {
  .spec-card p {
    padding: 0.6rem 1.25rem 1.5rem 2.5rem;
  }
}

/* Utilitário */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Citação */
.section-quote {
  position: relative;
  padding: clamp(4rem, 12vw, 12rem) 1rem;
  text-align: center;
  background: var(--color-quote-overlay) url("../img/Kimura_kate-laine-qDVocR-Ps9U.jpg") center / cover no-repeat;
  background-blend-mode: multiply;
}

.section-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(66, 55, 47, 0.4);
}

.section-quote .container {
  position: relative;
  z-index: 2;
}

.quote-divider {
  width: 89px;
  height: 1px;
  background: var(--color-gold);
  border: 0;
  margin: 0 auto 2rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 300;
  color: var(--color-secondary);
  margin: 0 0 2rem;
  max-width: 52rem;
  margin-inline: auto;
}

.quote-author {
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}

/* Equipe */
.section-team {
  background: var(--color-cream);
  padding: clamp(3.5rem, 10vw, 6.25rem) 0;
}

.team-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.team-col .section-label {
  color: var(--color-accent-text);
}

.team-col .section-title {
  color: #464646;
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
}

.team-col p {
  margin-top: 0.75rem;
}

.team-col img {
  width: 100%;
  height: auto;
  max-height: min(560px, 75vh);
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  margin-top: 0.75rem;
}

/* FAQ */
.section-faq {
  background: var(--color-beige-section);
  padding: clamp(3.5rem, 10vw, 8rem) 0;
}

.faq-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  color: var(--color-heading);
  margin: 0 0 2rem;
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .faq-title {
    text-align: left;
    grid-column: 1 / -1;
  }
}

.faq-img img {
  width: 100%;
  height: clamp(200px, 40vw, 450px);
  object-fit: cover;
  border-radius: 8px;
}

.faq-list details {
  background: var(--color-accent);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-list details:hover {
  box-shadow: 0 6px 18px rgba(66, 55, 47, 0.18);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  line-height: 1.4;
  color: #fff;
  position: relative;
  word-break: break-word;
  hyphens: auto;
}

@media (min-width: 480px) {
  .faq-list summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  background: var(--color-accent);
  color: #fff;
}

.faq-list .faq-body {
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 1rem 1.15rem 1.25rem 1.25rem;
  margin: 0;
  font-size: clamp(0.88rem, 2.4vw, 1rem);
}

@media (min-width: 480px) {
  .faq-list .faq-body {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  }
}

/* Localização */
.section-location {
  background: var(--color-secondary);
  padding: clamp(3.5rem, 8vw, 6.25rem) 0;
}

.location-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: clamp(220px, 45vh, 400px);
  min-height: 200px;
  border: 0;
  filter: contrast(0.95) brightness(0.98);
}

.location-text {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* Mobile: bloco centralizado e simétrico */
@media (max-width: 767px) {
  .section-location .location-text {
    text-align: center;
    align-items: center;
  }

  .section-location .location-text p {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section-location .location-text .btn-sm {
    align-self: center;
    width: 100%;
    max-width: min(100%, 22rem);
  }
}

@media (min-width: 768px) {
  .section-location .location-text {
    text-align: left;
    align-items: stretch;
  }

  .section-location .location-text p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.location-text p {
  margin: 0 0 clamp(0.85rem, 2.5vw, 1.1rem);
  color: var(--color-text);
  line-height: 1.55;
}

.location-text p:last-of-type {
  margin-bottom: 0;
}

.location-text strong {
  color: var(--color-heading);
}

.location-text .wa-phone {
  color: var(--color-heading);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.location-text .wa-phone:hover,
.location-text .wa-phone:focus-visible {
  border-bottom-color: currentColor;
}

.btn-sm {
  margin-top: clamp(1.15rem, 3.5vw, 1.5rem);
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.5rem, 5vw, 2.5rem);
  font-size: clamp(0.72rem, 2.2vw, 0.8rem);
  width: 100%;
  max-width: min(100%, 22rem);
  align-self: center;
  text-align: center;
}

@media (min-width: 768px) {
  .btn-sm {
    width: auto;
    align-self: flex-start;
  }
}

.btn,
.btn-sm {
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn:hover,
.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 63, 61, 0.2);
}

/* Footer */
.site-footer {
  background: var(--color-heading);
  color: var(--color-secondary);
  padding: clamp(2.25rem, 7vw, 3.25rem) 0 max(2rem, env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 4vw, 1.75rem);
}

.footer-logo {
  display: block;
  line-height: 0;
}

.footer-logo img {
  width: min(36vw, 112px);
  max-width: 112px;
  height: auto;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .footer-logo img {
    width: min(24vw, 128px);
    max-width: 128px;
  }
}

/* Rodapé: lista própria (não usa .social do header — evita flex-end / margin-left:auto) */
.site-footer .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--color-accent);
  border-radius: 4px;
  color: #fff;
  transition: opacity 0.25s, transform 0.25s;
}

.site-footer .footer-social a:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.site-footer .footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copy {
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0;
  padding-top: clamp(1.1rem, 3vw, 1.35rem);
  border-top: 1px solid rgba(245, 239, 230, 0.28);
  text-align: center;
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.5;
  opacity: 0.95;
}

#whats:target {
  scroll-margin-top: 1rem;
}

/* Botão flutuante WhatsApp */
.float-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .float-wa:hover {
    transform: scale(1.06);
  }
}

.float-wa:hover {
  background: #20bd5a;
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.5),
    0 3px 8px rgba(0, 0, 0, 0.2);
}

.float-wa:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

.float-wa svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .animate-up,
  .animate-fade {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .social a,
  .site-footer .footer-social a,
  .spec-card,
  .faq-list details,
  .btn,
  .btn-sm,
  .float-wa {
    transition: none !important;
    transform: none !important;
  }
}

@media (min-width: 768px) {
  .float-wa {
    width: 3.75rem;
    height: 3.75rem;
  }

  .float-wa svg {
    width: 30px;
    height: 30px;
  }
}

/* Telas muito estreitas (ex.: 320px) */
@media (max-width: 359px) {
  .top-bar {
    font-size: 0.68rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .social a,
  .site-footer .footer-social a {
    width: 2.5rem;
    height: 2.5rem;
  }
}
