/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'DM Sans SemiBold';
  src: url('../assets/fonts/DMSans_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Text Italic';
  src: url('../assets/fonts/DMSerifText-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('../assets/fonts/TTNormsProRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --color-burgundy:    #470018;
  --color-green:       #012D1F;
  --color-mauve:       #AD747E;
  --color-cream:       #EDE8E4;
  --color-cream-dark:  #E0D9D3;
  --color-cream-muted: rgba(237, 232, 228, 0.75);
  --color-white:       #ffffff;

  /* Semantic */
  --color-bg:     var(--color-cream);
  --color-text:   var(--color-green);
  --color-cta:    var(--color-burgundy);

  /* Typography */
  --font-heading: 'DM Sans SemiBold', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:   'DM Serif Text Italic', Georgia, serif;
  --font-body:    'TT Norms Pro', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.75rem,  1.4vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 1.7vw, 1rem);
  --text-base: clamp(1rem,     2vw,   1.125rem);
  --text-lg:   clamp(1.125rem, 2.2vw, 1.3125rem);
  --text-xl:   clamp(1.3125rem, 2.6vw, 1.5rem);
  --text-2xl:  clamp(1.5rem,   3vw,   2rem);
  --text-3xl:  clamp(2rem,     4vw,   2.75rem);
  --text-4xl:  clamp(2.5rem,   5.5vw, 3.75rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
  --header-h:      72px;
  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     20px;
  --radius-pill:   999px;

  /* Transitions */
  --t-fast: 180ms ease;
  --t-std:  350ms ease;
  --t-slow: 600ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(1, 45, 31, 0.10);
  --shadow-md: 0 4px 20px rgba(1, 45, 31, 0.12);
  --shadow-lg: 0 10px 40px rgba(1, 45, 31, 0.16);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.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;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-mauve);
  margin-bottom: var(--space-xs);
}

.section-intro {
  font-size: var(--text-lg);
  max-width: 52ch;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
  opacity: 0.80;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-mauve);
  color: var(--color-white);
  border-color: var(--color-mauve);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #9a6169;
  border-color: #9a6169;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173, 116, 126, 0.40);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-cream);
  border-color: rgba(237, 232, 228, 0.50);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--color-cream);
  background-color: rgba(237, 232, 228, 0.10);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}
.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  background-color: var(--color-green);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.9rem 2.25rem;
  font-size: var(--text-base);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-dark);
  transition: box-shadow var(--t-std);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-green);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#nav-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 80vw);
  flex-direction: column;
  gap: var(--space-md);
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg) var(--space-lg);
  background-color: var(--color-cream);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 99;
  transform: translateX(100%);
  transition: transform var(--t-std);
}

#nav-menu.is-open {
  display: flex;
  transform: translateX(0);
}

#nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

#nav-menu ul a {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-green);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
  display: block;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

#nav-menu ul a:hover,
#nav-menu ul a.is-active {
  color: var(--color-burgundy);
  padding-left: 0.5rem;
}

.nav__cta {
  margin-top: var(--space-md);
  align-self: flex-start;
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1, 45, 31, 0.40);
  z-index: 98;
}

.nav__overlay.is-visible {
  display: block;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  #nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    position: static;
    width: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }

  #nav-menu ul {
    flex-direction: row;
    gap: 0.25rem;
  }

  #nav-menu ul a {
    font-size: var(--text-sm);
    padding: 0.35rem 0.75rem;
    border-bottom: none;
    border-radius: var(--radius-pill);
  }

  #nav-menu ul a:hover,
  #nav-menu ul a.is-active {
    padding-left: 0.75rem;
    background-color: var(--color-cream-dark);
  }

  .nav__cta {
    margin-top: 0;
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background-color: var(--color-burgundy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--space-2xl);
}

.hero__estampa-corner {
  position: absolute;
  bottom: -8%;
  right: -4%;
  width: clamp(220px, 38vw, 520px);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero__text {
  max-width: 60ch;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-mauve);
  margin-bottom: var(--space-sm);
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  line-height: 1.15;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

#hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-mauve);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-cream-muted);
  max-width: 48ch;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__visual {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__logomark {
  width: clamp(160px, 24vw, 320px);
  opacity: 0.12;
}

@media (min-width: 1024px) {
  .hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }

  .hero__visual {
    display: flex;
  }

  .hero__logomark {
    opacity: 0.15;
  }
}

/* ============================================================
   SOBRE
   ============================================================ */
#sobre {
  position: relative;
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.sobre__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sobre__photo-col {
  position: relative;
  align-self: stretch;
  flex-shrink: 0;
  width: 100%;
}

.sobre__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.sobre__estampa-bg {
  position: absolute;
  top: -12%;
  left: -10%;
  width: 70%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.sobre__photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--color-cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.sobre__photo-placeholder img {
  width: 60%;
  opacity: 0.15;
}

.sobre__photo-placeholder .sobre__real-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.sobre__text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-green);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.sobre__crm {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-mauve);
  margin-bottom: var(--space-md);
}

.sobre__text > p {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.sobre__credentials {
  border-left: 3px solid var(--color-mauve);
  padding-left: var(--space-md);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.sobre__credentials li {
  font-size: var(--text-sm);
  color: var(--color-green);
  opacity: 0.85;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
}

.sobre__credentials li:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .sobre__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
  }

  .sobre__photo-col {
    width: 340px;
  }

  .sobre__photo-wrap {
    max-width: 100%;
    margin-inline: 0;
  }

  .sobre__text {
    flex: 1;
  }
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
#especialidades {
  position: relative;
  padding-block: var(--space-2xl);
  background-color: var(--color-burgundy);
  overflow: hidden;
}

#especialidades::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/estampas/estampa-grid-mauve.png');
  background-repeat: repeat;
  background-size: 180px;
  opacity: 0.05;
  pointer-events: none;
}

#especialidades .section-eyebrow {
  position: relative;
  z-index: 1;
}

#especialidades h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

#especialidades .section-intro {
  color: var(--color-cream-muted);
  position: relative;
  z-index: 1;
}

.especialidades__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.especialidade-card {
  background: rgba(237, 232, 228, 0.06);
  border: 1px solid rgba(173, 116, 126, 0.22);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--t-fast), transform var(--t-fast),
              background-color var(--t-fast);
}

.especialidade-card:hover {
  border-color: var(--color-mauve);
  background: rgba(173, 116, 126, 0.10);
  transform: translateY(-5px);
}

.especialidade-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(173, 116, 126, 0.20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-mauve);
}

.especialidade-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-cream);
  margin-bottom: 0.4rem;
}

.especialidade-card p {
  font-size: var(--text-sm);
  color: var(--color-cream-muted);
  line-height: 1.6;
}

/* ============================================================
   REGIÃO DE ATENDIMENTO
   ============================================================ */
#regiao {
  position: relative;
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.regiao__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-start;
}

#regiao h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-green);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

#regiao p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 60ch;
}

#regiao p strong {
  color: var(--color-burgundy);
  font-family: var(--font-heading);
}

.regiao__visual {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
}

.regiao__visual.is-visible {
  opacity: 1;
}

.regiao__icon {
  width: clamp(160px, 20vw, 280px);
  opacity: 0.09;
}

@media (min-width: 900px) {
  .regiao__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #regiao .regiao__text {
    flex: 1;
    max-width: 56ch;
  }

  .regiao__visual {
    display: flex;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  position: relative;
  padding-block: var(--space-2xl);
  background-color: var(--color-cream-dark);
  overflow: hidden;
}

.faq__corner-estampa {
  position: absolute;
  top: -6%;
  right: -4%;
  width: clamp(180px, 28vw, 360px);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

#faq h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-green);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.faq__list {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(1, 45, 31, 0.12);
}

.faq__item {
  border-bottom: 1px solid rgba(1, 45, 31, 0.12);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--color-green);
  gap: var(--space-sm);
  transition: color var(--t-fast);
}

.faq__question:hover {
  color: var(--color-burgundy);
}

.faq__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background-color: var(--color-cream);
  transition: background-color var(--t-fast), transform var(--t-std);
}

.faq__chevron svg {
  width: 14px;
  height: 14px;
  color: var(--color-green);
  transition: color var(--t-fast);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  background-color: var(--color-burgundy);
}

.faq__question[aria-expanded="true"] .faq__chevron svg {
  color: var(--color-cream);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}

.faq__answer[hidden] {
  display: block;
  max-height: 0;
}

.faq__answer p {
  padding: 0 0 var(--space-md);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-green);
  opacity: 0.82;
  max-width: 68ch;
}

/* ============================================================
   FOOTER / CONTATO
   ============================================================ */
#contato {
  background-color: var(--color-burgundy);
  padding-top: var(--space-2xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(237, 232, 228, 0.12);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__brand img {
  width: 88px;
  height: auto;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-mauve);
  max-width: 20ch;
  line-height: 1.5;
}

.footer__section-title {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-mauve);
  margin-bottom: var(--space-sm);
}

.footer__info address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer__info address p,
.footer__contact p {
  font-size: var(--text-sm);
  color: var(--color-cream);
  opacity: 0.75;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-cream);
  opacity: 0.75;
  transition: opacity var(--t-fast), color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__link:hover {
  opacity: 1;
  color: var(--color-mauve);
}

.footer__link--wa {
  color: #4ade80;
  opacity: 0.90;
}

.footer__link--wa:hover {
  color: #86efac;
  opacity: 1;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav ul a {
  font-size: var(--text-sm);
  color: var(--color-cream);
  opacity: 0.70;
  transition: opacity var(--t-fast), color var(--t-fast);
  padding: 0.15rem 0;
}

.footer__nav ul a:hover {
  opacity: 1;
  color: var(--color-mauve);
}

.footer__legal {
  padding-block: var(--space-md);
  text-align: center;
}

.footer__legal p {
  font-size: var(--text-xs);
  color: var(--color-cream);
  opacity: 0.45;
  line-height: 1.6;
}

.footer__legal p + p {
  margin-top: 0.3rem;
}

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

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background-color: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.40);
  transition: transform var(--t-fast), box-shadow var(--t-fast), width var(--t-std),
              padding var(--t-std);
  overflow: hidden;
  text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-float__label {
  display: none;
}

@media (min-width: 1024px) {
  .whatsapp-float {
    width: auto;
    height: 48px;
    padding: 0 1.25rem;
    gap: 0.5rem;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float__label {
    display: inline;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
  }
}

/* ============================================================
   FOCUS VISIBLE (accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-mauve);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .whatsapp-float,
  #site-header,
  .hero__estampa-corner,
  .sobre__estampa-bg,
  .faq__corner-estampa {
    display: none !important;
  }
}
