:root {
  /* Paleta alinhada a lucianatradutora.com.br */
  --navy: #814256;
  --navy-deep: #5c2d3d;
  --navy-soft: #9a5a6e;
  --gold: #db9a8f;
  --gold-soft: #e8b8af;
  --white: #ffffff;
  --off-white: #f2e9e1;
  --cream: #f2e9e1;
  --muted: #6a5360;
  --text: #2a1c22;
  --line: rgba(129, 66, 86, 0.16);
  --shadow: 0 14px 40px rgba(129, 66, 86, 0.12);
  --shadow-hover: 0 20px 48px rgba(129, 66, 86, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1120px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 233, 225, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
  color: var(--navy);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-soft);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}


.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--navy-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-width: 40px;
  min-height: 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--navy);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(219, 154, 143, 0.65);
  outline-offset: 1px;
}

.lang-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid rgba(219, 154, 143, 0.55);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(129, 66, 86, 0.32);
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(129, 66, 86, 0.28);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(129, 66, 86, 0.04);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  padding: 48px 24px 56px;
  background:
    radial-gradient(ellipse at top right, rgba(219, 154, 143, 0.22), transparent 42%),
    linear-gradient(180deg, #faf6f2 0%, var(--cream) 55%, #efe4db 100%);
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 16ch;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.trust-strip li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-soft);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero-frame {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  aspect-ratio: 4 / 5;
}

.hero-frame img,
.hero-frame picture {
  width: 100%;
  height: 100%;
}

.hero-frame picture {
  display: block;
}

.hero-frame img {
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(129, 66, 86, 0.88);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}

.hero-badge span {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 72px 24px;
  background: var(--cream);
}

.section-muted {
  background: #ebe0d6;
}

.section-navy {
  background:
    radial-gradient(circle at top right, rgba(219, 154, 143, 0.2), transparent 40%),
    linear-gradient(160deg, #814256 0%, #5c2d3d 100%);
  color: var(--cream);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 820px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-heading p {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto;
}

.section-heading.light h2 {
  color: var(--cream);
}

.section-heading.light p {
  color: rgba(242, 233, 225, 0.82);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Steps */
.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(219, 154, 143, 0.14);
  color: var(--navy);
  margin-bottom: 14px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-number {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 8px;
}

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

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(219, 154, 143, 0.45);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 8px;
}

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

/* Credentials */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.credential-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.credential-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.credential-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(219, 154, 143, 0.16);
  color: var(--gold);
}

.credential-icon svg {
  width: 22px;
  height: 22px;
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.credential-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.about-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.2);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.testimonial-author {
  margin: 0;
  color: var(--navy);
}

.testimonial-city {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  padding: 56px 24px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 24px 28px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 28px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.site-footer h3 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.48);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(219, 154, 143, 0.7);
  outline-offset: 3px;
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.472-.148-.672.149-.198.297-.768.967-.942 1.165-.173.198-.347.223-.644.075-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.447-.52.149-.173.198-.297.298-.497.099-.198.05-.372-.025-.521-.075-.148-.672-1.612-.921-2.204-.242-.579-.487-.5-.672-.51l-.573-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.148.198 2.095 3.2 5.077 4.487.709.306 1.262.489 1.693.626.712.227 1.36.195 1.872.118.57-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12.004 2.003c-5.523 0-10 4.477-10 10 0 1.764.464 3.475 1.344 4.975l-1.395 5.085 5.218-1.369c1.459.798 3.122 1.216 4.833 1.216 5.523 0 10-4.477 10-10s-4.477-10-10-10zm5.005 14.05c-.134.373-.79.716-1.089.762-.297.049-.646.069-1.025.025-.384-.045-1.277-.467-2.056-.92-1.516-.757-2.497-1.818-2.884-2.064-.387-.248-.668-.372-.969.248-.297.619-1.144 2.064-1.399 2.487-.255.422-.51.474-1.01.149-.499-.325-2.113-.777-3.803-2.346-1.405-1.28-2.347-2.86-2.62-3.491-.273-.632-.03-.975.217-1.213.223-.223.497-.579.745-.868.248-.298.331-.497.497-.829.165-.331.083-.62-.041-.868-.124-.248-1.025-2.476-1.403-3.396-.37-.893-.748-.773-1.028-.787l-.875-.015c-.297 0-.78.111-1.19.524-.41.413-1.56 1.527-1.56 3.722s1.596 4.319 1.818 4.617c.223.298 3.145 4.805 7.615 6.741.49.21.872.335 1.169.429.492.16.94.137 1.294.083.396-.058 1.217-.498 1.388-.98.165-.483.165-.899.116-.98-.05-.083-.224-.132-.47-.232z'/%3E%3C/svg%3E") center / 20px no-repeat;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: fade-up 0.65s ease both;
  }

  .hero-visual {
    animation: fade-up 0.75s ease 0.1s both;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .about-band,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    display: grid;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--off-white);
  }

  .lang-switch {
    margin-top: 10px;
    align-self: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 28px 16px 40px;
  }

  .section {
    padding: 56px 16px;
  }

  .topbar {
    padding: 0 16px;
  }

  .trust-strip,
  .steps-grid,
  .services-grid,
  .credentials-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }

  .hero-frame {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Privacy page helpers */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-page h1 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.legal-page h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 28px 0 10px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 18px;
}
