/* SushiMaki — layout tokens */
:root {
  --bg-deep: #0a0b0f;
  --bg-elevated: #12141c;
  --bg-card: #181b26;
  --surface-glass: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --text-muted: #9aa3b5;
  --accent: #e63946;
  --accent-soft: rgba(230, 57, 70, 0.15);
  --gold: #d4af37;
  --gold-dim: rgba(212, 175, 55, 0.35);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(230, 57, 70, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 50% at 90% 20%, rgba(212, 175, 55, 0.06), transparent 45%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold);
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 11, 15, 0.78);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header[data-scrolled="true"] {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  color: var(--text);
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #9d0208);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}

.logo__accent {
  color: var(--accent);
}

.logo--footer .logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-glass);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav__list a:hover {
  color: var(--text);
}

.nav__cta {
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 2rem;
    background: rgba(10, 11, 15, 0.96);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), visibility 0.35s;
  }

  .nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav__list a {
    font-size: 1.25rem;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #c1121f);
  color: #fff;
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.35);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' fill-opacity='0.04'%3E%3Cpath d='M0 40h80M40 0v80' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(120deg, #fff 0%, var(--gold) 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 36ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border-subtle);
}

.hero__stats dt {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero__stats dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}

@media (max-width: 520px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.hero__visual {
  position: relative;
  justify-self: end;
}

@media (max-width: 960px) {
  .hero__visual {
    justify-self: stretch;
    max-width: 480px;
    margin-inline: auto;
  }
}

.hero__plate {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.hero__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 15, 0.85));
  pointer-events: none;
}

.hero__plate img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__caption-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.hero__caption-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(8deg);
}

.hero__badge small {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section--tight {
  padding-top: 0;
}

.section--dark {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
  text-align: left;
}

.section__head--split .section__subtitle {
  margin-top: 0.5rem;
}

@media (max-width: 720px) {
  .section__head--split {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .section__head--split .btn {
    width: 100%;
  }
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: var(--text-muted);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .cards--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.3s,
    box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card__media {
  overflow: hidden;
}

.card__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.card__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card__price {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card__price strong {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Banner rotativo (destaques) */
.rotating-banner {
  position: relative;
  outline: none;
}

.rotating-banner:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.rotating-banner__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.rotating-banner__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .rotating-banner__track {
    transition: none;
  }
}

.rotating-banner__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.rotating-banner__figure {
  position: relative;
  margin: 0;
}

.rotating-banner__img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  min-height: 180px;
  background: var(--bg-card);
}

@media (max-width: 720px) {
  .rotating-banner__img {
    aspect-ratio: 4 / 3;
  }
}

.rotating-banner__figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: linear-gradient(180deg, transparent, rgba(10, 11, 15, 0.2) 20%, rgba(10, 11, 15, 0.92));
}

.rotating-banner__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.rotating-banner__slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.rotating-banner__meta {
  font-size: 0.95rem;
  color: rgba(244, 245, 247, 0.88);
  max-width: 40ch;
}

.rotating-banner__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: rgba(10, 11, 15, 0.65);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.rotating-banner__arrow:hover {
  background: rgba(230, 57, 70, 0.35);
  border-color: rgba(230, 57, 70, 0.5);
  color: #fff;
}

.rotating-banner__arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.rotating-banner__arrow--prev {
  left: clamp(0.5rem, 2vw, 1rem);
}

.rotating-banner__arrow--next {
  right: clamp(0.5rem, 2vw, 1rem);
}

@media (max-width: 480px) {
  .rotating-banner__arrow {
    width: 40px;
    height: 40px;
  }

  .rotating-banner__arrow--prev {
    left: 0.35rem;
  }

  .rotating-banner__arrow--next {
    right: 0.35rem;
  }
}

.rotating-banner--single .rotating-banner__arrow,
.rotating-banner--single .rotating-banner__dots {
  display: none;
}

.rotating-banner__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.rotating-banner__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.rotating-banner__dot:hover {
  border-color: var(--gold-dim);
  background: rgba(212, 175, 55, 0.25);
}

.rotating-banner__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.rotating-banner__dot[aria-current="true"] {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

/* Menu grid */
.menu-grid {
  display: grid;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-item {
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: var(--bg-deep);
  display: grid;
  gap: 0.35rem;
  transition: background 0.25s;
}

.menu-item:hover {
  background: #0e1018;
}

.menu-item__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-item__tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: #ff8a93;
}

.menu-item__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.menu-item__price {
  margin: 0.35rem 0 0;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

/* Steps */
.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}

@media (max-width: 800px) {
  .steps__list {
    grid-template-columns: 1fr;
  }
}

.steps__item {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.steps__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.steps__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.steps__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.section--cta {
  padding-block: 0 4rem;
}

.cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, #141824 0%, #1a1020 50%, #120c14 100%);
}

.cta__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12), transparent 35%);
}

.cta__inner {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.cta__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta__text {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: #060709;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__address {
    font-style: normal;
  }
}

.footer__tagline {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  max-width: 28ch;
}

@media (max-width: 720px) {
  .footer__tagline {
    margin-inline: auto;
  }
}

.footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer__address a {
  text-decoration: none;
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  max-width: 42ch;
  text-align: right;
}

@media (max-width: 720px) {
  .footer__legal {
    text-align: center;
    max-width: none;
  }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Página de contato */
.page-contact {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(4rem, 8vw, 5rem);
}

.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.65rem;
  opacity: 0.45;
  pointer-events: none;
}

.breadcrumb__list a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb__list a:hover {
  color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-intro__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-intro__lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.contact-intro__channels-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.contact-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.contact-card__text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card__link {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--accent);
}

.contact-card__link:hover {
  color: var(--gold);
}

.contact-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}

.contact-form-section__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.25rem;
}

@media (max-width: 640px) {
  .contact-form__fields {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--half {
  grid-column: span 1;
}

.field:not(.field--half):not(.field--checkbox) {
  grid-column: 1 / -1;
}

.field--checkbox {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.field--checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.field--checkbox label {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  cursor: pointer;
}

.field__label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field__req {
  color: var(--accent);
}

.field__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.field__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field__input::placeholder {
  color: rgba(154, 163, 181, 0.65);
}

.field__input:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.field__input:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.field__textarea {
  min-height: 8rem;
  resize: vertical;
}

.field__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa3b5' d='M1 1.5 6 6.5 11 1.5' stroke='%239aa3b5' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.form-status {
  margin: 1rem 0 0;
  min-height: 1.5em;
  font-size: 0.9rem;
  color: var(--gold);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.footer__muted {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer__cta-wrap {
  margin: 0;
}

.footer__cta-wrap .btn {
  text-decoration: none;
}
