﻿:root {
  --cream: #edebdf;
  --warm-cream: #f6f4ea;
  --soft-sand: #d8cfb6;
  --deep-blue: #0d1a33;
  --accent-blue: #1f3f73;
  --accent-gold: #b7a87a;
  --accent-light: #fbfaf5;
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 18px 40px rgba(13, 26, 51, 0.15);
  --text-dark: #2b2f3a;
  --text-muted: #6e7280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--accent-light) 100%
  );
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(237, 235, 223, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

header.scrolled {
  background: rgba(237, 235, 223, 0.92);
  box-shadow: 0 12px 32px rgba(13, 26, 51, 0.12);
  padding: 0.7rem 0;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-dark);
  position: relative;
}

nav .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav .brand img {
  width: 110px;
  height: auto;
  transition: transform 0.3s ease;
}

header.scrolled nav .brand img {
  transform: scale(0.9);
}

nav .brand span {
  font-family: "Lora", serif;
  font-size: 1.28rem;
  letter-spacing: 0.05em;
  color: var(--deep-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
  color: var(--accent-blue);
}

nav a.active {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(31, 63, 115, 0.08);
  border: 1px solid rgba(31, 63, 115, 0.18);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(31, 63, 115, 0.14);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

header.nav-open .nav-toggle span {
  opacity: 0;
}

header.nav-open .nav-toggle::before {
  transform: rotate(45deg);
}

header.nav-open .nav-toggle::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 9.5rem) 0;
  background: linear-gradient(
      120deg,
      rgba(237, 235, 223, 0.94),
      rgba(216, 207, 182, 0.82)
    ),
    url("../hero-justice.jpg") center/cover;
  color: var(--deep-blue);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(31, 63, 115, 0.18),
    transparent 60%
  );
}

.hero > .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: grid;
  gap: 2rem;
}

.hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  margin: 0;
  line-height: 1.15;
}

.hero p {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  color: rgba(13, 26, 51, 0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(31, 63, 115, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(31, 63, 115, 0.32);
}

main section {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
}

main section:nth-of-type(even) {
  background: var(--warm-cream);
}

h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 2.5rem;
  color: var(--deep-blue);
}

.about-content,
.services-grid,
.differentials-grid,
.partners-wrapper,
.contact-grid {
  display: grid;
  gap: 1.6rem 2.5rem;
}

.about-content {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-card,
.service-card,
.differential-card {
  background: #ffffff;
  padding: 2.1rem 1.9rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 26, 51, 0.08);
  box-shadow: 0 24px 38px rgba(13, 26, 51, 0.08);
  display: grid;
  gap: 1rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(31, 63, 115, 0.12);
  color: var(--accent-blue);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.about-card h3,
.service-card h3,
.differential-card h3 {
  font-family: "Lora", serif;
  margin: 0;
  color: var(--deep-blue);
}

.about-card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--text-muted);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card span,
.differential-card span {
  font-size: 2rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
}

.card-link::after {
  content: "\203A";
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent-gold);
}

.card-link:hover {
  color: var(--deep-blue);
}

.partners-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.partner-card {
  background: #ffffff;
  border: 1px solid rgba(31, 63, 115, 0.1);
  border-radius: 18px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 18px 32px rgba(13, 26, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 26, 51, 0.12);
}

.partner-card img {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-card.placeholder {
  background: var(--accent-light);
  border-style: dashed;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-card.placeholder span {
  font-size: 0.82rem;
}

.partner-card.placeholder:hover {
  transform: none;
  box-shadow: 0 18px 32px rgba(13, 26, 51, 0.08);
}

.contact-section {
  background: linear-gradient(
    135deg,
    rgba(249, 247, 239, 0.96),
    rgba(233, 228, 210, 0.92)
  );
  color: var(--deep-blue);
  border-radius: 28px;
  padding: clamp(3.2rem, 6vw, 4.2rem);
  box-shadow: 0 30px 60px rgba(13, 26, 51, 0.18);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-info strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Lora", serif;
  font-size: 1.05rem;
  color: var(--accent-blue);
}

.contact-info p {
  margin: 0;
  color: rgba(13, 26, 51, 0.75);
}

footer {
  padding: 2.4rem 0;
  text-align: center;
  background: var(--deep-blue);
  color: rgba(237, 235, 223, 0.82);
  font-size: 0.95rem;
}

footer a {
  color: rgba(237, 235, 223, 0.9);
  text-decoration: none;
}

/* Inner pages */

.page-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 7.2rem) 0;
  background: linear-gradient(
    125deg,
    rgba(237, 235, 223, 0.95),
    rgba(216, 207, 182, 0.82)
  );
  color: var(--deep-blue);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(31, 63, 115, 0.18),
    transparent 60%
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin: 0 0 1rem;
}

.page-hero p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(13, 26, 51, 0.75);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.content-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.highlight-card,
.service-detail,
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.4rem;
  border: 1px solid rgba(13, 26, 51, 0.08);
  box-shadow: 0 26px 44px rgba(13, 26, 51, 0.08);
  display: grid;
  gap: 1rem;
}

.highlight-card h3,
.service-detail h3,
.contact-card h3 {
  margin: 0;
  font-family: "Lora", serif;
  color: var(--deep-blue);
}

.timeline {
  border-left: 3px solid rgba(31, 63, 115, 0.35);
  padding-left: 1.5rem;
  display: grid;
  gap: 1.75rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 6px rgba(31, 63, 115, 0.18);
}

.timeline-item h3 {
  margin: 0 0 0.4rem;
  font-family: "Lora", serif;
  color: var(--deep-blue);
}

.values-list {
  display: grid;
  gap: 1rem;
  padding: 0;
}

.values-list li {
  list-style: none;
  padding: 1rem 1.2rem;
  background: var(--accent-light);
  border-radius: 16px;
  border: 1px solid rgba(13, 26, 51, 0.08);
}

.service-detail strong {
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-detail ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  list-style: disc;
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
}

.contact-wrapper {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card .info-block {
  display: grid;
  gap: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--deep-blue);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 63, 115, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background: var(--accent-light);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(31, 63, 115, 0.18);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form small {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.form-message {
  min-height: 1.4rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.form-message.error {
  color: #b03a2e;
}

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(13, 26, 51, 0.12);
  border: 1px solid rgba(31, 63, 115, 0.12);
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(31, 63, 115, 0.12);
  color: var(--deep-blue);
  font-weight: 600;
  text-decoration: none;
}

.quick-links a:hover {
  background: rgba(31, 63, 115, 0.18);
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-animate-delay="100"] {
  transition-delay: 0.1s;
}

[data-animate][data-animate-delay="200"] {
  transition-delay: 0.2s;
}

[data-animate][data-animate-delay="300"] {
  transition-delay: 0.3s;
}

@media (max-width: 920px) {
  nav .brand span {
    font-size: 1.1rem;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.5rem;
    left: 1.5rem;
    background: rgba(237, 235, 223, 0.97);
    border-radius: 18px;
    box-shadow: var(--glass-shadow);
    padding: 1.6rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  header.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  header {
    padding: 0.8rem 0;
  }

  .hero > .container {
    place-items: center;
    text-align: center;
  }

  .page-hero {
    text-align: center;
  }

  .page-hero .container {
    max-width: min(92%, 600px);
  }

  .contact-section {
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  header {
    position: sticky;
  }

  nav .brand img {
    width: 92px;
  }

  .about-card,
  .service-card,
  .differential-card,
  .contact-card {
    padding: 1.9rem 1.6rem;
  }

  .nav-links {
    left: 1rem;
    right: 1rem;
  }
}

body.nav-open {
  overflow: hidden;
}

/* Premium layout enhancements */
.section-soft {
  position: relative;
  padding: clamp(4.5rem, 8vw, 6.2rem) 0;
}

.section-soft.sunset {
  position: relative;
}

.section-soft::before,
.section-soft::after {
  content: none;
}

.section-soft > .container,
.section-soft > .container > * {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(31, 63, 115, 0.1);
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto 2.6rem;
}

.about-lead {
  display: grid;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.2rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 160px;
}

.about-stat strong {
  font-family: "Lora", serif;
  font-size: 2rem;
  color: var(--accent-blue);
}

.about-content {
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 2.6rem;
}

.about-card {
  padding: 2.4rem 2rem;
  border-radius: 24px;
  box-shadow: 0 24px 44px rgba(13, 26, 51, 0.1);
  border: 1px solid rgba(13, 26, 51, 0.06);
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  background: rgba(31, 63, 115, 0.08);
  top: -70px;
  right: -40px;
}

.about-card:nth-child(2)::before {
  background: rgba(183, 168, 122, 0.16);
  top: auto;
  bottom: -80px;
  left: -50px;
}

.service-card {
  border-radius: 26px;
  padding: 2.6rem 2.3rem;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(31, 63, 115, 0.1);
  border-radius: 55% 45% 60% 40% / 40% 58% 42% 60%;
  top: -90px;
  right: -70px;
  transition: transform 0.4s ease;
}

.service-card:nth-child(even)::before {
  background: rgba(183, 168, 122, 0.16);
  left: -80px;
  right: auto;
  top: auto;
  bottom: -70px;
}

.service-card:hover::before {
  transform: scale(1.08) translate(10px, -6px);
}

.differentials-grid {
  gap: 2.2rem;
  position: relative;
}

@media (min-width: 900px) {
  .differentials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .differentials-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(31, 63, 115, 0),
      rgba(31, 63, 115, 0.22),
      rgba(31, 63, 115, 0)
    );
  }
}

.differential-card {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .differential-card::before {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 0 8px rgba(31, 63, 115, 0.15);
  }
}

.partner-card {
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 22px 44px rgba(13, 26, 51, 0.15);
}

.contact-section {
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(13, 26, 51, 0.12);
}

.contact-wrapper {
  gap: 2.6rem;
}

.contact-card {
  border-radius: 24px;
  box-shadow: 0 24px 44px rgba(13, 26, 51, 0.1);
}

.about-stats,
.contact-grid,
.contact-wrapper {
  position: relative;
  z-index: 2;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-animate-delay="80"] {
  transition-delay: 0.08s;
}
[data-animate][data-animate-delay="120"] {
  transition-delay: 0.12s;
}
[data-animate][data-animate-delay="160"] {
  transition-delay: 0.16s;
}
[data-animate][data-animate-delay="200"] {
  transition-delay: 0.2s;
}
[data-animate][data-animate-delay="220"] {
  transition-delay: 0.22s;
}

@media (max-width: 900px) {
  .section-subtitle {
    margin: 0 0 2.2rem;
    text-align: left;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.5rem;
    left: 1.5rem;
    background: rgba(237, 235, 223, 0.97);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(13, 26, 51, 0.15);
    padding: 1.6rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  header.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  header {
    padding: 0.8rem 0;
  }

  .hero > .container {
    place-items: center;
    text-align: center;
  }

  .page-hero {
    text-align: center;
  }

  .page-hero .container {
    max-width: min(92%, 600px);
  }
}

@media (max-width: 560px) {
  header {
    position: sticky;
  }

  nav .brand img {
    width: 92px;
  }

  .about-card,
  .service-card,
  .differential-card,
  .contact-card {
    padding: 1.9rem 1.6rem;
  }

  .nav-links {
    left: 1rem;
    right: 1rem;
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.about-card::before,
.about-card:nth-child(2)::before,
.service-card::before,
.service-card:nth-child(2n)::before,
.differential-card::before {
  content: none !important;
  background: none !important;
}
body.no-copy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
/* ===============================
   Feedback visual do formulário
   =============================== */

.form-message {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 1.6rem;
}

/* Sucesso */
.form-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.4);
  box-shadow: 0 3px 8px rgba(46, 125, 50, 0.12);
}

/* Erro */
.form-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.4);
  box-shadow: 0 3px 8px rgba(198, 40, 40, 0.12);
}

/* Estado neutro (aguardando resposta) */
.contact-form .form-message:not(.success):not(.error) {
  color: var(--accent-blue);
  background: rgba(31, 63, 115, 0.06);
  border: 1px solid rgba(31, 63, 115, 0.15);
}
.form-message {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-message.success,
.form-message.error {
  opacity: 1;
  transform: translateY(0);
}
/* Mensagens do formulário (FormSubmit) */
.form-message {
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  display: none;
}
.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #81c784;
}
.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Honeypot anti-spam (FormSubmit) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
