@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --background: hsl(40 33% 98%);
  --foreground: hsl(158 25% 18%);

  --card: hsl(0 0% 100%);
  --card-foreground: hsl(158 25% 18%);

  --primary: hsl(158 32% 32%);
  --primary-hover: hsl(158 32% 28%);
  --primary-foreground: hsl(40 33% 98%);
  --primary-soft: hsl(158 28% 92%);

  --secondary: hsl(40 30% 95%);
  --muted: hsl(40 25% 94%);
  --muted-foreground: hsl(158 10% 45%);

  --accent: hsl(158 28% 88%);
  --warm: hsl(35 40% 94%);

  --border: hsl(40 20% 88%);
  --input: hsl(40 20% 90%);
  --ring: hsl(158 32% 32%);

  --radius: 0.75rem;

  --shadow-soft: 0 4px 24px -8px hsl(158 32% 32% / 0.08);
  --shadow-card: 0 2px 12px -4px hsl(158 25% 18% / 0.06);
  --gradient-warm: linear-gradient(180deg, hsl(35 45% 94%), hsl(40 33% 98%));

  --container: 1400px;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale));
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.container {
  width: min(100% - 4rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.skip-link:focus {
  transform: translateY(0);
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: hsl(40 33% 98% / 0.85);
  border-bottom: 1px solid hsl(40 20% 88% / 0.6);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: auto;
  padding-block: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.brand-mark .icon {
  width: 1.55rem;
  height: 1.55rem;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted-foreground);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand small b {
  color: var(--primary);
  font-weight: 700;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  text-decoration: none;
  color: hsl(158 25% 18% / 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn,
.submit-btn {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.font-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
}

.font-controls button {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 600;
}

.font-controls button:hover {
  color: var(--primary);
}

.theme-toggle,
.mobile-menu-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  display: none;
}

.mobile-menu-btn {
  display: none;
}

/* HERO */

.hero-strip {
  background: var(--gradient-warm);
  border-bottom: 1px solid hsl(40 20% 88% / 0.6);
}

.hero-strip-inner {
  padding-block: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--foreground);
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 28rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.65;
}

.trust-row {
  max-width: 34rem;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-row span {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--foreground);
  font-size: 0.75rem;
  line-height: 1.25;
}

.trust-row .icon {
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.hero-image {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */

.section {
  padding: 1rem 0;
  scroll-margin-top: 6rem;
}

.section-tight {
  padding-top: 1rem;
}

.panel {
  background: var(--card);
  border: 1px solid hsl(40 20% 88% / 0.6);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.content-panel {
  padding: 2.5rem;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.panel-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.panel-title p {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.title-badge {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

/* ABOUT */

.about-section {
  padding-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
}

.about-image {
  min-height: 26rem;
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--warm);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.about-content {
  max-width: 36rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-content h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--foreground);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

.about-content p + p {
  margin-top: 1rem;
}

.about-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-info span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.about-btn {
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .about-image,
  .about-image img {
    min-height: 20rem;
  }
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-form,
.info-panel {
  padding: 2.25rem;
}

.contact-form {
  display: grid;
  /*gap: 1rem;*/
}

.field {
  display: grid;
  gap: 0.375rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 400;
}

.field span {
  color: var(--muted-foreground);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid hsl(40 20% 88% / 0.7);
  border-radius: 0.5rem;
  background: hsl(40 30% 95% / 0.5);
  color: var(--foreground);
  padding: 0.75rem 0.875rem;
  outline: none;
  transition: 0.2s ease;
}

.field textarea {
  min-height: 7rem;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(158 32% 32% / 0.16);
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.field-error {
  min-height: 1rem;
  color: hsl(0 70% 50%);
  font-size: 0.75rem;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.checkbox-field input {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  padding: 0;
}

.submit-btn {
  width: 100%;
  min-height: 3rem;
  border-radius: 0.5rem;
}

.form-feedback,
.form-note {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.5;
}

.form-feedback.is-error {
  color: hsl(0 70% 50%);
  font-weight: 600;
}

.form-feedback.is-success {
  color: var(--primary);
  font-weight: 600;
}

.info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-list {
  display: grid;
  gap: 1.25rem;
  /*flex: 1;*/
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.info-row > .icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.625rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.info-row strong {
  display: block;
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.info-row a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.security-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsl(40 30% 95% / 0.6);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.security-note .icon {
  color: var(--primary);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  min-height: 15rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid hsl(40 20% 88% / 0.7);
  border-radius: 0.75rem;
  background: var(--card);
  transition: 0.2s ease;
}

.service-card:hover {
  border-color: hsl(158 32% 32% / 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-card > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.875rem;
  border: 1px solid hsl(158 32% 32% / 0.3);
  border-radius: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-card a:hover {
  background: var(--primary-soft);
}

/* STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid article {
  text-align: center;
}

.steps-grid span {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  box-shadow: var(--shadow-soft);
}

.steps-grid h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  text-decoration-color: hsl(158 32% 32% / 0.3);
  text-underline-offset: 0.25rem;
}

.steps-grid p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.faq-item {
  border: 1px solid hsl(40 20% 88% / 0.7);
  border-radius: 0.75rem;
  background: hsl(40 30% 95% / 0.3);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
}

.faq-question span {
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* CTA */

.cta-section {
  padding: 1rem 0 0;
}

.cta-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: hsl(40 30% 95% / 0.65);
}

.cta-icon {
  color: var(--primary);
}

.cta-icon .icon {
  width: 3.5rem;
  height: 3.5rem;
}

.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--foreground);
  font-size: 1.875rem;
  font-weight: 500;
}

.cta-box p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* FOOTER */

.footer {
  margin-top: 2rem;
  padding: 2rem 0 1rem;
  background: hsl(40 30% 95% / 0.6);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.6fr;
  gap: 3rem;
}

.footer nav,
.footer-grid > div {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer strong {
  color: var(--foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a,
.footer button,
.footer p {
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  text-align: left;
}

.footer-brand strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--foreground);
  text-transform: none;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.footer-brand-column p {
  max-width: 15rem;
  margin: 0.75rem 0;
}

.footer-crp {
  color: var(--primary) !important;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.social-row a {
  width: 2.375rem;
  height: 2.375rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* MODAL / COOKIE */

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 3000;
  transform: translateX(-50%);
  width: min(92%, 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  color: var(--foreground);
}

.cookie-consent p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.cookie-consent button:not(.link-button) {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.125rem;
  font-weight: 600;
}

/* MODAL POLÍTICA DE PRIVACIDADE */

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, hsl(158 32% 32% / 0.18), transparent 34%),
    hsl(158 25% 10% / 0.58);
  backdrop-filter: blur(8px);
}

.privacy-modal.is-open {
  display: grid;
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal__content {
  position: relative;
  width: min(92vw, 720px);
  max-height: 86vh;
  overflow: auto;
  padding: 3rem;
  border: 1px solid hsl(40 20% 88% / 0.8);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, hsl(40 33% 98%), hsl(40 30% 96%));
  box-shadow:
    0 28px 80px hsl(158 25% 10% / 0.28),
    0 2px 12px hsl(158 25% 18% / 0.08);
}



.privacy-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid hsl(158 32% 32% / 0.18);
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.privacy-modal__close:hover {
  background: var(--primary-hover);
  transform: rotate(8deg) scale(1.04);
}

.privacy-modal h2 {
  max-width: 34rem;
  margin-bottom: 1.15rem;
  padding-right: 3.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--foreground);
}

.privacy-modal p {
  color: var(--muted-foreground);
  font-size: 0.98rem;
  line-height: 1.75;
}

.privacy-modal h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

.privacy-modal h3::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 0.35rem var(--primary-soft);
}

.privacy-modal__note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: var(--primary-soft);
  color: var(--primary) !important;
  font-size: 0.9rem !important;
  font-weight: 500;
}

body[data-theme="dark"] .privacy-modal__content {
  background:
    linear-gradient(180deg, var(--card), hsl(158 22% 16%));
  border-color: var(--border);
}

@media (max-width: 600px) {
  .privacy-modal {
    padding: 1rem;
  }

  .privacy-modal__content {
    padding: 2.25rem 1.5rem 1.5rem;
  }

  .privacy-modal__close {
    top: 1rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  .privacy-modal h2 {
    padding-right: 2.75rem;
    font-size: 2.35rem;
  }
}

body.modal-open {
  overflow: hidden;
}

/* FLOATING */

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 2500;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 0;
  box-shadow: var(--shadow-soft);
}

.whatsapp-float {
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.875rem;
  height: 3.875rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.whatsapp-float .icon {
  width: 2rem;
  height: 2rem;
}

.back-to-top {
  right: 1.75rem;
  bottom: 6rem;
  width: 2.625rem;
  height: 2.625rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .nav {
    gap: 1rem;
  }

  .font-controls {
    display: none;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    display: none;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
  }

  .nav.is-open {
    display: flex;
  }

  .mobile-menu-btn {
    display: grid;
    place-items: center;
  }

  .hero-strip-inner,
  .contact-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip-inner {
    padding-block: 3.5rem;
  }

  .hero-image {
    height: 16rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .brand strong {
    font-size: 1.15rem;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .header-actions .btn {
    padding-inline: 0.85rem;
  }

  .header-actions .btn span {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .contact-form,
  .info-panel,
  .content-panel {
    padding: 1.5rem;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================
   VLibras - Acessibilidade
   ========================= */

.vlibras-widget,
[vw] {
  z-index: 9999 !important;
}

[vw-access-button] {
  position: fixed !important;
  right: 1.25rem !important;
  bottom: 7rem !important;
  z-index: 9999 !important;

  transform: scale(0.9);
  transform-origin: bottom right;

  filter: drop-shadow(0 0.5rem 1.25rem hsl(158 25% 10% / 0.18));
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

[vw-access-button]:hover {
  transform: scale(0.96);
  filter: drop-shadow(0 0.7rem 1.5rem hsl(158 25% 10% / 0.22));
}

[vw-plugin-wrapper] {
  z-index: 10000 !important;
}

[vw-plugin-wrapper].active {
  z-index: 10000 !important;
}

.whatsapp-float {
  z-index: 2500;
}

.back-to-top {
  z-index: 2400;
}

@media (max-width: 600px) {
  [vw-access-button] {
    right: 0.9rem !important;
    bottom: 6.5rem !important;
    transform: scale(0.82);
  }

  [vw-access-button]:hover {
    transform: scale(0.88);
  }
}

@media (max-width: 900px) {
  .hero-strip-inner {
    display: flex;
    flex-direction: column;
  }

  /* imagem sobe */
  .hero-image {
    order: -1;
  }

  /* garante espaçamento correto */
  .hero-copy {
    margin-top: 1.5rem;
  }
}

/* =========================================================
   MODAL FOTO SOBRE A PSICÓLOGA
   ========================================================= */

.about-image-button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}

.about-image-button img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.about-image-button:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

.about-image-hint {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: hsl(40 33% 98% / 0.9);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.about-image-button:hover .about-image-hint {
  opacity: 1;
  transform: translateY(0);
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, hsl(158 32% 32% / 0.18), transparent 34%),
    hsl(158 25% 10% / 0.62);
  backdrop-filter: blur(8px);
}

.photo-modal.is-open {
  display: grid;
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal__content {
  position: relative;
  width: min(96vw, 980px);
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid hsl(40 20% 88% / 0.85);
  border-radius: 1.35rem;
  background: var(--card);
  box-shadow: var(--shadow-modal);
}

.photo-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.photo-modal__close:hover {
  background: var(--primary-hover);
  transform: rotate(8deg) scale(1.04);
}

.photo-modal__image {
  min-height: 34rem;
  background: var(--warm);
}

.photo-modal__image img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.photo-modal__info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-modal__info h2 {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--foreground);
}

.photo-modal__info p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

.photo-modal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.photo-modal__badges span {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .photo-modal {
    padding: 1rem;
  }

  .photo-modal__content {
    grid-template-columns: 1fr;
  }

  .photo-modal__image,
  .photo-modal__image img {
    min-height: 22rem;
  }

  .photo-modal__info {
    padding: 2rem 1.5rem;
  }

  .about-image-hint {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HERO CAROUSEL
   ========================= */

.hero-carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.5s ease;
}

.carousel-image.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.05);
}

/* Dots */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.hero-carousel:hover .carousel-dots,
.hero-carousel:focus-within .carousel-dots {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: hsl(40 33% 98% / 0.72);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dots .dot.active {
  width: 22px;
  background: var(--primary);
}

.carousel-dots .dot:hover,
.carousel-dots .dot:focus-visible {
  background: var(--primary);
  transform: scale(1.08);
}