@media (max-width: 480px) {
  body {
    font-size: 1.04rem;
  }
  .hero {
    padding: 1.2rem 2vw 2.5rem;
    gap: 1.2rem;
  }
  .hero-content {
    gap: 1.2rem;
  }
  .hero-copy {
    margin-top: 1.2rem;
  }
  .hero-card {
    padding: 1.1rem 0.7rem 1rem 0.7rem;
    border-radius: 18px;
    font-size: 1.07rem;
  }
  .hero-card h2 {
    font-size: 1.18rem;
  }
  .hero-card p {
    font-size: 1rem;
  }
  .card-highlight {
    margin-top: 1.1rem;
    padding: 0.7rem;
    font-size: 0.98rem;
  }
  .hero-image {
    border-radius: 18px;
  }
  .hero-image img {
    min-height: 160px;
    border-radius: 18px;
  }
  .card-media {
    margin: -1rem -1rem 1rem;
    border-radius: 14px 14px 0 0;
  }
  .card-media img {
    height: 110px;
    border-radius: 14px 14px 0 0;
  }
  .card-media-focus-4 img {
    height: 220px !important;
    object-fit: cover !important;
    object-position: center 5% !important;
  }
  .card {
    padding: 1.1rem;
    border-radius: 14px;
  }
  .approach-visual {
    border-radius: 14px;
  }
  .approach-visual img {
    height: 120px;
    border-radius: 14px;
  }
  .approach-video {
    border-radius: 14px;
  }
  .approach-video video {
    height: 220px;
    border-radius: 14px;
  }
  .section {
    padding: 0 2vw;
  }
  .accent {
    border-radius: 18px;
    padding: 2rem 2vw;
  }
  .footer {
    padding: 1rem 2vw 2rem;
    font-size: 0.95rem;
  }
}
:root {
  --bg: #f7f3ef;
  --bg-deep: #f1ece6;
  --ink: #2b2622;
  --muted: #6b5f56;
  --accent: #c9a86a;
  --accent-dark: #9d7d43;
  --card: rgba(255, 255, 255, 0.9);
  --border: rgba(43, 38, 34, 0.12);
  --shadow: 0 30px 60px rgba(43, 38, 34, 0.16);
  --elev-soft: 0 14px 32px rgba(43, 38, 34, 0.1);
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--ink);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

/* ---- Barra de progresso de leitura ---- */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

.bg-orbit {
  position: fixed;
  top: -10vh;
  right: -15vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.35), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}

.hero {
  padding: 7rem 6vw 4.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.5), transparent 60%);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 12rem;
  right: 3vw;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.14), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  padding: 0.8rem 6vw;
  border-radius: 0 0 16px 16px;
  backdrop-filter: blur(8px);
  background: rgba(247, 243, 239, 0.92);
  border: 1px solid rgba(43, 38, 34, 0.08);
  border-top: none;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-actions .cta {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(43, 38, 34, 0.16);
  padding: 0.52rem 0.95rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(43, 38, 34, 0.08);
  border-radius: 999px;
  position: relative;
}

.nav-actions .cta:hover {
  transform: none;
  box-shadow: 0 8px 18px rgba(43, 38, 34, 0.08);
}

.nav-actions .cta::after {
  display: none;
}

.nav-actions .cta:hover::after {
  width: 0;
}

.nav-actions a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
}

.nav-actions a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-actions a:hover::after {
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  padding: 0.95rem 1.9rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cta-wa-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.cta-primary {
  background: linear-gradient(160deg, #e0bc7a 0%, #c9a86a 45%, #a67a3a 100%);
  color: #fffaf2;
  box-shadow: 0 10px 28px rgba(168, 131, 74, 0.45);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.cta-primary:hover::before {
  left: 140%;
}

.cta-primary::after {
  content: '\2192';
  margin-left: 0.15rem;
  transition: transform 0.25s ease;
  display: inline-block;
  font-style: normal;
}

.cta-primary:hover::after {
  transform: translateX(5px);
}

.cta-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.cta-outline:hover {
  background: rgba(201, 168, 106, 0.09);
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(168, 131, 74, 0.2);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(43, 38, 34, 0.2);
}

.cta-primary:hover {
  box-shadow: 0 16px 38px rgba(168, 131, 74, 0.55);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
  margin-top: -1.6rem;
}

.hero-copy {
  margin-top: 3rem;
}

.hero-visual {
  padding-top: 0.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-metrics span {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.hero-card {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card-spotlight {
  margin-top: 2rem;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  padding: 1.5rem 1.2rem 1.2rem;
  box-shadow: 0 2px 16px rgba(43, 38, 34, 0.08);
}

.hero-card-title {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.hero-card-copy {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.hero-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-highlight {
  margin-top: 2rem;
  padding: 1.2rem;
  background: rgba(201, 168, 106, 0.12);
  border-radius: 16px;
  font-weight: 600;
}

.card-highlight-soft {
  background: #f7e9ff;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  display: inline-block;
  font-size: 1.18rem;
  margin-top: 0;
}

.card-highlight-label {
  font-weight: 600;
}

.card-highlight-text {
  margin-left: 0.5em;
}

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-bottom: 5rem;
}

.section {
  padding: 0 6vw;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.8rem 0 1rem;
}

.section-header p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(43, 38, 34, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-media {
  margin: -2rem -2rem 1.5rem;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.card-media-image-tall {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  max-height: 340px;
  border-radius: 16px;
}

.card-media-focus-2 img {
  object-position: center 70%;
}

.card-media-focus-3 img {
  object-position: center 80%;
}

.card-media-focus-4 img {
  height: 300px !important;
  object-fit: cover !important;
  object-position: center 5% !important;
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(43, 38, 34, 0.14);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.card ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.6rem;
}

.accent {
  background: linear-gradient(120deg, rgba(201, 168, 106, 0.12), transparent 70%);
  padding: 4rem 6vw;
  border-radius: 48px;
  margin: 0 4vw;
}

.section-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(245, 236, 223, 0.95));
  box-shadow: 0 18px 35px rgba(43, 38, 34, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.section-cta h3 {
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.25;
}

.section-cta p {
  color: var(--muted);
  margin: 0;
}

.section-cta-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section-cta .eyebrow {
  margin: 0;
}

@media (min-width: 601px) {
  .section-cta {
    gap: 1rem;
    padding: 2.2rem;
  }

  .section-cta .eyebrow {
    margin-bottom: 0.2rem;
  }

  .section-cta h3 {
    margin-bottom: 0.25rem;
  }

  .section-cta p {
    max-width: 62ch;
    line-height: 1.75;
  }

  .section-cta-actions {
    margin-top: 0.35rem;
  }
}

.section-cta-actions .cta,
.contact-cta-card .cta {
  min-width: 220px;
}

.approach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.approach h3 {
  margin-bottom: 0.8rem;
}

.approach p {
  color: var(--muted);
}

.approach-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.approach-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(43, 38, 34, 0.12);
}

.approach-visual img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.approach-visual-focus img {
  object-position: center 20%;
}

.approach-video {
  margin-bottom: 2rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(43, 38, 34, 0.12);
  position: relative;
}

.approach-video-feature {
  max-width: 760px;
  margin: 0 auto 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(43, 38, 34, 0.12);
}

.approach-video-real {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.approach-video video {
  width: 100%;
  height: 720px;
  display: block;
  object-fit: cover;
  object-position: center 58%;
}

.video-audio-toggle {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.75);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-audio-toggle:hover {
  transform: translateY(-2px);
  background: rgba(17, 17, 17, 0.9);
}

.video-audio-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 18px rgba(43, 38, 34, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item summary::marker {
  color: var(--accent-dark);
}

.faq-item p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(43, 38, 34, 0.08);
}

.contact-cta-card--enhanced {
  background: linear-gradient(145deg, #fff 60%, #f7f3ef);
  border-color: rgba(201, 168, 106, 0.3);
}

.contact-cta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-cta-wa-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.contact-cta-wa-icon svg {
  width: 26px;
  height: 26px;
}

.contact-cta-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.4rem 0;
}

.contact-cta-benefits li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.contact-cta-benefits li span {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1rem;
}

.contact-cta-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem !important;
}

.contact-cta-card h3 {
  font-size: 1.7rem;
  margin: 0;
  line-height: 1.25;
}

.contact-cta-card p {
  color: var(--muted);
  margin: 0;
}

.contact-cta-card .cta {
  justify-self: start;
  margin-top: 0.6rem;
}

.contact-cta-card .eyebrow {
  margin: 0;
}

@media (min-width: 601px) {
  .contact-cta-card {
    gap: 1rem;
    padding: 2.2rem;
  }

  .contact-cta-card .eyebrow {
    margin-bottom: 0.2rem;
  }

  .contact-cta-card h3 {
    margin-bottom: 0.2rem;
  }

  .contact-cta-card p {
    max-width: 54ch;
    line-height: 1.75;
  }

  .contact-cta-card .cta {
    margin-top: 0.35rem;
  }
}

@media (min-width: 901px) {
  .section-cta,
  .contact-cta-card {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 0.95rem;
  }

  .section-cta {
    padding: 2.4rem;
  }

  .section-cta h3,
  .contact-cta-card h3 {
    line-height: 1.35;
  }

  .section-cta p,
  .contact-cta-card p {
    width: 100%;
    line-height: 1.8;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .section-cta-actions,
  .contact-cta-card .cta {
    margin-top: 0.65rem;
  }
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--accent-dark);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-map {
  margin-bottom: 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(43, 38, 34, 0.14);
  border: 1px solid var(--border);
}

.map-iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.contact-photo {
  margin-top: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-photo img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

/* ---- Seção Sobre ---- */
.sobre-section {
  padding-top: 1rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sobre-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.sobre-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.sobre-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.4rem 0 0;
}

.sobre-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.sobre-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0.4rem 0;
}

.sobre-badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(43, 38, 34, 0.06);
}

.sobre-badge span {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: "Playfair Display", serif;
}

.sobre-badge p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
  line-height: 1.4;
}

/* ---- Depoimentos ---- */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.depoimento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 12px 28px rgba(43, 38, 34, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.depoimento-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.depoimento-card > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
  flex: 1;
  font-style: italic;
}

.depoimento-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.depoimento-nome {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.depoimento-fonte {
  font-size: 0.76rem;
  color: var(--muted);
  background: var(--bg-deep);
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ---- Depoimentos Vídeo ---- */
.depoimentos-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.depoimento-video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(43, 38, 34, 0.07);
}

.depoimento-video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

@media (max-width: 900px) {
  .depoimentos-video-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Resultados - Antes & Depois ---- */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .resultados-grid {
    grid-template-columns: 1fr;
  }
}

.resultado-caso {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(43, 38, 34, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resultado-caso:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(43, 38, 34, 0.13);
}

.resultado-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  flex: 1;
}

.resultado-col {
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
}

.resultado-img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
}

.resultado-img-wrap > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: opacity 0.22s ease;
}

/* Cartão com ciclo de imagens ao clicar */
.resultado-clickable {
  cursor: pointer;
}

.resultado-gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}

.resultado-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  transition: background 0.22s ease;
}

.resultado-dot.is-active {
  background: #fff;
}

/* Hint de interatividade nos cards com cycling */
.resultado-click-hint {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.resultado-click-hint.hidden {
  opacity: 0;
}

.resultado-label {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.antes-label {
  background: rgba(43, 38, 34, 0.72);
  color: #fff;
}

.depois-label {
  background: linear-gradient(135deg, #c9a86a, #b8924f);
  color: #fffaf2;
  left: auto;
  right: 0.7rem;
}

.resultado-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.6rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.resultado-thumbs::-webkit-scrollbar {
  display: none;
}

.resultado-thumb {
  flex: 0 0 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.resultado-thumb:hover {
  opacity: 0.82;
  transform: scale(1.06);
}

.resultado-thumb.is-active {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
  opacity: 1;
  transform: none;
}

.resultado-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

/* ---- Certificados ---- */
.certificados {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.certificados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.certificado-card {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 8px 24px rgba(43,38,34,0.08);
}

.certificado-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(43,38,34,0.14);
}

.certificado-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.certificado-zoom-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(43,38,34,0.55));
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  padding: 1.2rem 0.5rem 0.6rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.certificado-card:hover .certificado-zoom-hint,
.certificado-card:focus .certificado-zoom-hint {
  opacity: 1;
}

.certificado-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,15,10,0.88);
  z-index: 10000;
  box-sizing: border-box;
}

.certificado-lightbox.is-open {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.certificado-lightbox img {
  max-width: min(92vw, 700px);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  cursor: zoom-in;
}

.certificado-lightbox.is-zoomed {
  display: block;
  overflow: auto;
  padding: 2rem;
  box-sizing: border-box;
  cursor: default;
}

.certificado-lightbox img.is-zoomed {
  display: block;
  margin: 0 auto;
  max-width: none;
  max-height: none;
  width: min(180vw, 1600px);
  cursor: zoom-out;
}

.certificado-lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.certificado-lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

/* ---- Scroll reveal ---- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Nav ativo (scroll spy) ---- */
.nav-actions a.nav-active {
  color: var(--accent-dark);
}

.nav-actions a.nav-active::after {
  width: 100%;
}

.footer {
  padding: 2rem 6vw 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 16px 30px rgba(31,191,91,0.35), 0 0 0 0 rgba(31,191,91,0.50); }
  70%  { box-shadow: 0 16px 30px rgba(31,191,91,0.35), 0 0 0 16px rgba(31,191,91,0); }
  100% { box-shadow: 0 16px 30px rgba(31,191,91,0.35), 0 0 0 0 rgba(31,191,91,0); }
}

@keyframes hero-cta-glow {
  0%, 100% { box-shadow: 0 10px 28px rgba(168, 131, 74, 0.45); }
  50%       { box-shadow: 0 10px 28px rgba(168, 131, 74, 0.45), 0 0 0 8px rgba(168, 131, 74, 0.14); }
}

.hero-actions .cta-primary {
  animation: hero-cta-glow 3.8s ease-in-out infinite;
}

.hero-actions .cta-primary:hover {
  animation: none;
}

.whatsapp-float {
  position: fixed;
  right: 1.8rem;
  bottom: 1.8rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #1fbf5b;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(31, 191, 91, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.8s ease-out infinite;
}

.whatsapp-float::before {
  content: "Falar no WhatsApp";
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

.whatsapp-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(31, 191, 91, 0.4);
}

/* --- Hamburger nav --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Footer social --- */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--ink);
}

.footer-social-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.hero-content,
.section,
.faq-item,
.section-cta {
  animation: riseIn 0.6s ease both;
}

.grid .card:nth-child(1),
.faq-list .faq-item:nth-child(1) {
  animation-delay: 0.05s;
}

.grid .card:nth-child(2),
.faq-list .faq-item:nth-child(2) {
  animation-delay: 0.12s;
}

.grid .card:nth-child(3),
.faq-list .faq-item:nth-child(3) {
  animation-delay: 0.19s;
}

.grid .card:nth-child(4),
.faq-list .faq-item:nth-child(4) {
  animation-delay: 0.26s;
}

.grid .card:nth-child(5) {
  animation-delay: 0.33s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: row;
    gap: 0.9rem;
    border-radius: 0 0 14px 14px;
    padding: 0.7rem 4vw;
  }

  .hero {
    padding: 7.5rem 6vw 4rem;
  }

  .footer {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 1.08rem;
    letter-spacing: 0.05em;
    color: var(--ink) !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0.75rem 4vw;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(140deg, rgba(252, 248, 243, 0.97), rgba(244, 236, 226, 0.95));
    border-bottom: 1px solid rgba(157, 125, 67, 0.18);
    box-shadow: 0 11px 24px rgba(43, 38, 34, 0.095);
    backdrop-filter: blur(10px);
  }

  .nav-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.8rem;
  }

  .nav-actions.is-open {
    display: flex;
  }

  .nav-actions a {
    font-size: 1rem;
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid rgba(43, 38, 34, 0.08);
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.4;
  }

  .nav-actions a:last-child {
    border-bottom: none;
  }

  .nav-actions a::after {
    display: none;
  }

  .nav-actions .cta {
    width: 100%;
    order: 3;
    margin-top: 0.8rem;
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c9a86a, #b8924f);
    color: #fffaf2;
    box-shadow: 0 8px 18px rgba(201, 168, 106, 0.3);
    border: none;
    border-radius: 999px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-card {
    padding: 2rem;
  }

  .hero-image img {
    min-height: 260px;
  }

  .card-media img {
    height: 160px;
  }

  .card-media-focus-4 img {
    height: 260px !important;
    object-fit: cover !important;
    object-position: center 5% !important;
  }

  .approach-visual img {
    height: 220px;
  }

  .approach-video video {
    height: 560px;
    object-position: center 70%;
  }

  .video-audio-toggle {
    right: 1rem;
    bottom: 1rem;
  }

  .contact-photo img {
    height: 180px;
  }

  .accent {
    margin: 0 2vw;
  }

  .section-cta {
    padding: 1.4rem;
  }

  .hero-card-copy {
    font-size: 1.05rem;
  }

  .section-cta-actions .cta,
  .contact-cta-card .cta,
  .hero-actions .cta {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.9rem;
  }

  .whatsapp-label {
    display: none;
  }

  .whatsapp-icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sobre-visual img {
    height: 300px;
  }

  .sobre-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}
