:root {
  --wine-950: #4a101b;
  --wine-900: #681827;
  --wine-800: #832634;
  --wine-700: #9c3445;
  --rose-600: #b5505f;
  --rose-300: #e4aeb6;
  --rose-200: #f0cdd2;
  --cream-50: #fffdfa;
  --cream-100: #faf6f2;
  --sand-200: #f0e4e2;
  --sand-300: #e7d5d1;
  --ink: #3d1620;
  --muted: #755e63;
  --white: #fff;
  --green: #168c45;
  --shadow-sm: 0 10px 30px rgba(74, 16, 27, 0.08);
  --shadow-lg: 0 24px 70px rgba(74, 16, 27, 0.16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --section-space: clamp(64px, 8vw, 104px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--rose-300);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--wine-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.section {
  padding-block: var(--section-space);
}

.section--cream {
  background: var(--cream-100);
}

.section--sand {
  background: var(--sand-200);
}

.section--wine {
  color: var(--white);
  background: var(--wine-800);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section--wine .eyebrow {
  color: var(--rose-200);
}

.display-title,
.section-title,
.card-title,
.article-title,
.article-content h2,
.article-content h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.16;
}

.display-title {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
}

.section-title {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.05rem);
}

.section-title em,
.display-title em,
.article-title em {
  color: var(--rose-600);
  font-weight: 400;
}

.section--wine .section-title em,
.section--wine .display-title em {
  color: var(--rose-200);
}

.section-lead {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section--wine .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-row > .button--whatsapp,
.button-row > .button--instagram {
  width: min(100%, 292px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button--primary {
  color: var(--white);
  background: var(--rose-600);
}

.button--primary:hover {
  background: var(--wine-700);
}

.button--whatsapp {
  color: var(--white);
  background: var(--green);
}

.button--whatsapp:hover {
  background: #0f7739;
}

.button--instagram {
  color: var(--white);
  background: linear-gradient(135deg, #833ab4, #c13584, #e1306c);
}

.button--instagram:hover {
  background: linear-gradient(135deg, #6a2d9a, #a02a6e, #c0265a);
}

.button--outline {
  color: var(--wine-800);
  border-color: var(--wine-800);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--wine-800);
}

.button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.03);
}

.button--light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Navegação */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: 70px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(104, 24, 39, 0.96);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.33rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--rose-200);
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav .nav-contact {
  padding: 8px 16px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 8px 20px rgba(14, 105, 50, 0.24);
  border-radius: 999px;
}

.desktop-nav .nav-contact:hover,
.desktop-nav .nav-contact:focus-visible {
  color: var(--white);
  background: #0f7739;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  width: 26px;
}

.mobile-nav {
  display: none;
}

/* Home */
.home-hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding-top: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--wine-900);
}

.home-hero__media,
.home-hero__media picture,
.home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media img {
  object-fit: cover;
  object-position: 76% center;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(74, 16, 27, 0.92) 0%, rgba(74, 16, 27, 0.7) 42%, rgba(74, 16, 27, 0.08) 78%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-block: 80px;
}

.home-hero .eyebrow {
  padding-left: 12px;
  color: var(--rose-200);
  border-left: 2px solid var(--rose-200);
}

.home-hero__lead {
  max-width: 570px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin: 34px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--rose-200);
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.indication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.indication-card {
  min-height: 230px;
  padding: 28px 24px;
  border-top: 3px solid var(--rose-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.indication-illustration {
  width: 132px;
  height: 112px;
  margin: -10px 0 16px;
  object-fit: contain;
  object-position: left center;
}

.indication-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 12px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--wine-800);
  box-shadow: var(--shadow-sm);
}

.about-badge small {
  display: block;
  color: var(--rose-200);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.34rem;
}

.about-copy p {
  color: var(--muted);
}

.mode-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mode-card {
  padding: clamp(30px, 5vw, 48px);
  background: var(--sand-200);
}

.mode-card--dark {
  color: var(--white);
  background: var(--wine-800);
}

.mode-card h3,
.service-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.2;
}

.mode-card p {
  color: var(--muted);
}

.mode-card--dark p,
.mode-card--dark li {
  color: rgba(255, 255, 255, 0.8);
}

.check-list,
.article-content ul {
  padding: 0;
  list-style: none;
}

.check-list li,
.article-content li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.check-list li::before,
.article-content li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-600);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.step-card__number {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  color: var(--rose-200);
  background: none;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.72;
}

.step-card h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 30px 26px;
  color: var(--white);
  background: var(--wine-800);
}

.service-card:nth-child(2) {
  background: var(--wine-700);
}

.service-card:nth-child(3) {
  color: var(--ink);
  background: var(--sand-200);
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card:nth-child(3) p {
  color: var(--muted);
}

.service-meta {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card:nth-child(3) .service-meta {
  border-color: var(--sand-300);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 32px 28px;
  border: 0;
  background: var(--cream-100);
  box-shadow: none;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 22px;
  color: var(--rose-200);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-notice {
  display: inline-block;
  margin: 0;
  padding: 10px 14px;
  color: var(--muted);
  background: var(--sand-200);
  border-left: 3px solid var(--rose-600);
  font-size: 0.78rem;
}

.testimonial-stars {
  margin-bottom: 14px;
  color: var(--rose-600);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
}

.testimonial p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
}

.testimonial-action {
  margin-top: 28px;
  text-align: center;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--rose-600);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--sand-300);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-question span {
  flex: 0 0 auto;
  color: var(--rose-600);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-band {
  text-align: center;
}

.contact-band .section-title,
.contact-band .section-lead {
  margin-inline: auto;
}

.contact-band .button-row {
  margin-top: 28px;
  justify-content: center;
}

.home-hero .button-row .button,
.contact-band .button-row .button {
  width: min(100%, 292px);
}

.contact-band__instagram {
  max-width: 690px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.contact-band__instagram strong {
  color: rgba(255, 255, 255, 0.86);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-item {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--sand-300);
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--wine-800);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.map-frame {
  min-height: 440px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 424px;
  border: 0;
}

/* Página Quem é */
.profile-hero {
  padding: 140px 0 76px;
  color: var(--white);
  background: var(--wine-800);
}

.profile-hero__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.profile-hero__photo {
  position: relative;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.profile-hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.profile-hero__copy .eyebrow {
  color: var(--rose-200);
}

.profile-hero__copy .display-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.profile-hero__copy p {
  color: rgba(255, 255, 255, 0.82);
}

.profile-hero__note {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--rose-200);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 78px);
  align-items: start;
}

.prose p {
  color: var(--muted);
}

.training-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.training-card,
.audience-card {
  padding: 20px;
  border: 1px solid var(--sand-300);
  background: var(--white);
  font-weight: 700;
}

.audience-card {
  position: relative;
  padding-left: 46px;
}

.audience-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 8px;
  height: 8px;
  background: var(--rose-600);
  border-radius: 50%;
}

/* Artigos */
.listing-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: var(--sand-200);
}

.listing-hero .display-title,
.listing-hero .section-lead {
  margin-inline: auto;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.article-card__tag {
  margin-bottom: 10px;
  color: var(--rose-600);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.24;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-card__meta {
  margin-top: auto;
  padding-top: 20px;
  color: var(--wine-800);
  font-size: 0.72rem;
  font-weight: 700;
}

.article-hero {
  padding: 136px 0 64px;
  color: var(--white);
  background: var(--wine-800);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.article-hero__inner {
  max-width: 900px;
}

.article-title {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.article-intro {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--rose-200);
  font-size: 0.76rem;
  font-weight: 700;
}

.article-cover {
  width: min(100% - 40px, 1040px);
  margin: -30px auto 52px;
  box-shadow: var(--shadow-lg);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding-bottom: var(--section-space);
  color: #4e3840;
  font-size: 1.03rem;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content h2 {
  margin: 54px 0 18px;
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.article-content h3 {
  margin: 32px 0 14px;
  color: var(--ink);
  font-size: 1.3rem;
}

.article-content ul {
  margin: 0 0 24px;
}

.article-quote {
  margin: 34px 0;
  padding: 24px 26px;
  color: var(--wine-800);
  border-left: 4px solid var(--rose-600);
  background: var(--sand-200);
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.55;
}

.article-image {
  margin: 38px 0;
}

.article-image img {
  width: 100%;
  border-radius: 2px;
}

.article-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 36px;
}

.topic-card {
  padding: 20px;
  border-top: 3px solid var(--rose-600);
  background: var(--cream-100);
}

.topic-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wine-800);
}

.author-box {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  margin-top: 50px;
  padding: 26px;
  align-items: center;
  background: var(--cream-100);
  border: 1px solid var(--sand-300);
}

.author-box img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
}

.author-box h2 {
  margin: 0 0 5px;
  font-size: 1.55rem;
}

.author-box p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-cta {
  margin-top: 34px;
  padding: clamp(26px, 5vw, 40px);
  color: var(--white);
  background: var(--wine-800);
}

.article-cta h2 {
  margin: 0 0 12px;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.related {
  padding-block: 70px;
  background: var(--sand-200);
}

.related .article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Rodapé e atalhos */
.site-footer {
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--wine-950);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.floating-actions {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-action {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-action svg {
  width: 24px;
  height: 24px;
}

.floating-action--wa {
  background: #168c45;
}

.floating-action--ig {
  background: linear-gradient(145deg, #833ab4, #c13584, #e1306c);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
  background: var(--sand-200);
}

.not-found__box {
  max-width: 620px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    color: var(--white);
    background: var(--wine-900);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .indication-grid,
  .article-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-grid,
  .location-grid,
  .profile-hero__grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 700px;
  }

  .location-grid {
    gap: 34px;
  }

  .profile-hero__photo {
    width: min(100%, 560px);
  }

  .article-grid {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .container,
  .article-content,
  .article-cover {
    width: min(100% - 32px, var(--container));
  }

  .home-hero {
    min-height: 820px;
  }

  .home-hero__media img {
    object-position: center top;
  }

  .home-hero__media::after {
    background: linear-gradient(180deg, rgba(74, 16, 27, 0.35) 0%, rgba(74, 16, 27, 0.9) 54%, rgba(74, 16, 27, 0.98) 100%);
  }

  .home-hero__content {
    align-self: flex-end;
    padding: 280px 0 56px;
  }

  .display-title {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stat {
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: center;
    gap: 12px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .indication-grid,
  .mode-grid,
  .service-grid,
  .testimonial-grid,
  .steps-grid,
  .article-grid,
  .related .article-grid,
  .training-grid,
  .audience-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .indication-card {
    min-height: 0;
  }

  .about-photo img {
    border-width: 8px;
  }

  .about-badge {
    right: 10px;
    bottom: -24px;
  }

  .profile-hero {
    padding-top: 112px;
  }

  .article-hero {
    padding-top: 112px;
  }

  .article-title {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
  }

  .article-content {
    font-size: 0.98rem;
  }

  .article-content h2 {
    margin-top: 44px;
  }

  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-box img {
    margin-inline: auto;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
