/* ===== VARIÁVEIS ===== */
:root {
  --bg: #14171c;
  --bg-soft: #1a1f26;
  --surface: #1f242c;
  --surface-2: #262d37;
  --border: #2b323d;
  --border-soft: rgba(255, 255, 255, 0.06);

  --gold: #d9b36c;
  --gold-bright: #e6c487;
  --accent: #d9b36c;
  --accent-dark: #b08945;
  --accent-light: rgba(217, 179, 108, 0.12);

  --heading: #f0f2f6;
  --text: #d7dbe2;
  --text-light: #98a1ad;

  --primary: #1e242c;
  --primary-dark: #0e1115;
  --primary-light: #2a313c;

  --white: #ffffff;
  --danger: #e08a8a;
  --danger-bg: #2a1515;
  --success: #6fd39a;
  --success-bg: #12231a;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --font: "Poppins", sans-serif;
  --transition: 0.3s ease;
  --container: 1180px;

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(217, 179, 108, 0.04), transparent 60%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font);
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

::selection {
  background: var(--gold);
  color: #14171c;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #12151a;
}

::-webkit-scrollbar-thumb {
  background: #333b47;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== UTILITÁRIOS ===== */
.section {
  padding: 90px 0;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section--dark {
  background: #101318;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: var(--accent-light);
  border: 1px solid rgba(217, 179, 108, 0.16);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section--dark .section-tag {
  background: rgba(217, 179, 108, 0.12);
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section--dark .section-title {
  color: var(--white);
}

.section-sub {
  color: var(--text-light);
  font-size: 1.02rem;
}

.section--dark .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #f5cb67 0%, #dfae4a 50%, #c9902e 100%);
  color: #14171c;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffdb80 0%, #eec066 50%, #daa63f 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #f5cb67 0%, #dfae4a 50%, #c9902e 100%);
  color: #14171c;
}

.btn-gold {
  background: linear-gradient(135deg, #f5cb67 0%, #dfae4a 50%, #c9902e 100%);
  color: #14171c;
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-white {
  background: var(--surface-2);
  color: var(--heading);
}

.btn-white:hover {
  background: #2e3642;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.02rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
background: linear-gradient(180deg, rgba(165, 18, 18, 0.60) 0%, rgba(92, 8, 8, 0.60) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25), 0 0 24px rgba(217, 179, 108, 0.20);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow:
    0 6px 30px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(255, 255, 255, 0.35),
    0 0 26px rgba(217, 179, 108, 0.30);
  border-bottom-color: var(--gold-bright);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--heading);
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #333d4b, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.brand__name {
  line-height: 1.15;
}

.brand__tag {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--heading);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 170px 0 120px;
  background:
    radial-gradient(900px 500px at 85% -15%, rgba(217, 179, 108, 0.1), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(94, 127, 168, 0.09), transparent 60%),
    linear-gradient(165deg, #0d1014 0%, #171c23 55%, #212830 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 179, 108, 0.14), transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero h1 .highlight {
  color: var(--gold-bright);
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__value {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.stat__label {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__card-title i {
  color: var(--gold);
}

.hero__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.hero__item:hover {
  background: rgba(217, 179, 108, 0.16);
  border-color: rgba(217, 179, 108, 0.3);
  transform: translateY(-3px);
}

.hero__item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero__badge {
  position: absolute;
  right: -16px;
  top: -18px;
  background: var(--gold);
  color: #14171c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

/* ===== MARQUES / CLIENTES ===== */
.clients {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.clients__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 22px;
}

.clients__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.clients__row span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
  opacity: 0.6;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.clients__row span:hover {
  opacity: 1;
  color: var(--gold);
}

/* ===== SOBRE (HOME) ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media-img {
  border-radius: 20px;
  min-height: 340px;
  background: linear-gradient(135deg, #262d37, #333d4b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.about__media-img i {
  font-size: 7rem;
  opacity: 0.65;
}

.about__card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about__card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about__card strong {
  display: block;
  color: var(--heading);
  font-size: 1.05rem;
}

.about__card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about__text h2,
.feature h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.about__text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}

.about__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.about__points i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== PASSOS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 179, 108, 0.4);
}

.step__num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(217, 179, 108, 0.22);
  margin-bottom: 14px;
}

.step h3 {
  color: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== SERVIÇOS (HOME) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: linear-gradient(160deg, #20262f, #171b22 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 22px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 179, 108, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(217, 179, 108, 0.25);
  border-color: rgba(217, 179, 108, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 179, 108, 0.22), rgba(230, 196, 135, 0.08));
  border: 1px solid rgba(217, 179, 108, 0.35);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #14171c;
  transform: rotate(-6deg) scale(1.06);
}

.service-card h3 {
  color: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--text-light);
  margin-bottom: 14px;
  flex: 1;
}

.service-card .link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.service-card .link i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.service-card .link:hover {
  color: var(--gold-bright);
}

.service-card .link:hover i {
  transform: translateX(4px);
}

/* ===== DIFERENCIAIS ===== */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
  border-color: rgba(217, 179, 108, 0.25);
}

.diff-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(217, 179, 108, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}

.section--dark .diff-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.section--dark .diff-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== PORTFÓLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  background: linear-gradient(135deg, #2a313c, #39424f);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item i {
  font-size: 3.4rem;
  opacity: 0.4;
  transition: var(--transition);
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 12, 0.95));
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item__info h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-item__info span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.portfolio-item:hover {
  border-color: rgba(217, 179, 108, 0.4);
  transform: translateY(-4px);
}

.portfolio-item:hover::after {
  opacity: 1;
}

.portfolio-item:hover .portfolio-item__info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-item:hover i {
  transform: scale(1.1);
}

/* ===== CTA ===== */
.cta {
  background:
    radial-gradient(700px 300px at 85% 50%, rgba(217, 179, 108, 0.08), transparent 60%),
    linear-gradient(120deg, #0e1115, #1f2630);
  color: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d1014;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
}

.footer__brand .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.92rem;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: #14171c;
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.94rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer__contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom .bottom-ship {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, #2b6dbb, #1d4f92 60%, #17407a);
  border: 1px solid #3d86d6;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.25), inset 0 -3px 6px rgba(0, 0, 0, 0.35);
  color: #eaf2ff;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.footer__bottom .bottom-ship i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #7cb2f2, #3a78cf 65%, #2a5fae);
  border: 1px solid #9cc2f2;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 3px 10px rgba(29, 79, 146, 0.6), inset 0 2px 3px rgba(255, 255, 255, 0.5), inset 0 -2px 4px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

.footer__bottom a {
  color: var(--gold);
}

/* ===== PAGE HERO (internas) ===== */
.page-hero {
  padding: 160px 0 70px;
  background:
    radial-gradient(700px 350px at 90% 0%, rgba(217, 179, 108, 0.1), transparent 60%),
    linear-gradient(150deg, #0d1014, #1f2630);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.75);
}

.crumbs a:hover {
  color: var(--gold-bright);
}

.crumbs .sep {
  opacity: 0.5;
}

/* ===== PÁGINA SERVIÇOS ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
}

.service-full:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(217, 179, 108, 0.35);
}

.service-full__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(217, 179, 108, 0.22), rgba(217, 179, 108, 0.06));
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-full h2 {
  color: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-full p {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 18px;
}

.service-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-full__tags span {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ===== PÁGINA SOBRE ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.mvv-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #b08945, var(--gold));
  color: #14171c;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.mvv-card h3 {
  color: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.mvv-card p {
  color: var(--text-light);
  font-size: 0.94rem;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story__media {
  border-radius: 20px;
  min-height: 380px;
  background: linear-gradient(135deg, #262d37, #333d4b);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-lg);
}

.story__media i {
  font-size: 6.5rem;
  opacity: 0.6;
}

.story__text h2 {
  color: var(--heading);
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  margin-bottom: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.value-card i {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.value-card h3 {
  color: var(--heading);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ===== PÁGINA CONTATO ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(217, 179, 108, 0.35);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-card h3 {
  color: var(--heading);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card--whatsapp .contact-card__icon {
  background: var(--success-bg);
  color: var(--success);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--heading);
}

.form-group label span {
  color: var(--danger);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  background: #14181d;
  transition: var(--transition);
  width: 100%;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: #171c22;
  box-shadow: 0 0 0 3px rgba(217, 179, 108, 0.18);
}

.form-group input:-webkit-autofill,
.form-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #14181d inset;
  -webkit-text-fill-color: var(--text);
  transition: background-color 9999s ease-in-out 0s;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(111, 211, 154, 0.35);
}

.form-status.error {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(224, 138, 138, 0.35);
}

/* ===== MAPA ===== */
.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 30%, #2a313c, #14181d);
  color: rgba(240, 242, 246, 0.85);
}

.map-box i {
  font-size: 4rem;
  margin-bottom: 14px;
  opacity: 0.7;
}

.map-box .map-text {
  text-align: center;
  padding: 30px;
}

/* ===== FLOAT WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1db659;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #25d366;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* ===== REVEAL ANIMAÇÃO ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--gold);
  color: #14171c;
  transform: translateY(-3px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero__visual {
    max-width: 520px;
  }

  .services-grid,
  .portfolio-grid,
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .about__grid,
  .story__grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 10px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin: 16px 0 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero {
    padding: 140px 0 90px;
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .services-grid,
  .portfolio-grid,
  .services-list,
  .mvv-grid {
    grid-template-columns: 1fr;
  }

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

  .about__card {
    position: static;
    margin-top: 18px;
  }

  .section {
    padding: 66px 0;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .differentials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta__box {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions .btn {
    width: 100%;
  }

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

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

/* ===== PÁGINAS INDIVIDUAIS DE SERVIÇO ===== */
.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.sdetail {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;
}

.serv-prose h2 {
  color: var(--heading);
  font-size: 1.5rem;
  margin: 30px 0 12px;
}

.serv-prose h2:first-child {
  margin-top: 0;
}

.serv-prose h2 .num {
  color: var(--gold);
  margin-right: 8px;
  font-weight: 800;
}

.serv-prose p {
  color: var(--text-light);
  margin-bottom: 14px;
}

.serv-prose .lead {
  color: var(--text);
  font-size: 1.05rem;
}

.serv-prose .highlight {
  color: var(--gold-bright);
  font-weight: 600;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 10px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.check-list li:hover {
  border-color: rgba(217, 179, 108, 0.35);
}

.check-list i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.serv-tip {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  background: var(--accent-light);
  border: 1px solid rgba(217, 179, 108, 0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.serv-tip i {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.serv-tip p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  color: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card h3 i {
  color: var(--gold);
}

.sidebar-contact li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.sidebar-contact i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.sidebar-contact a:hover {
  color: var(--gold);
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 10px;
}

.sidebar-services {
  list-style: none;
}

.sidebar-services li + li {
  border-top: 1px solid var(--border-soft);
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 4px;
  font-size: 0.92rem;
  color: var(--text-light);
  transition: var(--transition);
}

.sidebar-services a i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

.sidebar-services a:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}

.sidebar-services a.active {
  color: var(--gold);
  font-weight: 600;
}

/* ===== OUTROS SERVIÇOS (mini) ===== */
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: var(--transition);
}

.mini-card:hover {
  border-color: rgba(217, 179, 108, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mini-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mini-card__body {
  display: flex;
  flex-direction: column;
}

.mini-card__body strong {
  color: var(--heading);
  font-size: 0.97rem;
}

.mini-card__body small {
  color: var(--text-light);
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .sdetail {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .check-list {
    grid-template-columns: 1fr;
  }

  .other-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SHOWCASE DE MODELOS ===== */
.serv-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.showcase-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(217, 179, 108, 0.25);
  border-radius: 18px;
  padding: 1.1rem;
  text-align: center;
  transition: var(--transition);
}

.showcase-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.showcase-card figcaption {
  padding: 0.95rem 0.4rem 0.3rem;
}

.showcase-card strong {
  display: block;
  color: var(--heading);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.showcase-card span {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .serv-showcase {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUTOS PERSONALIZADOS ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-card {
  background: linear-gradient(160deg, #20262f, #171b22 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f472b6, #f9a8d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.prod-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(244, 114, 182, 0.25);
  border-color: rgba(244, 114, 182, 0.45);
}

.prod-card:hover::before {
  transform: scaleX(1);
}

.prod-card:hover::after {
  opacity: 1;
}

.prod-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.22), rgba(244, 114, 182, 0.06));
  border: 1px solid rgba(244, 114, 182, 0.4);
  color: #f9a8d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.prod-card:hover .prod-card__icon {
  background: linear-gradient(135deg, #f472b6, #f9a8d4);
  color: #14171c;
  transform: rotate(-6deg) scale(1.06);
}

.prod-card h3 {
  color: var(--heading);
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.prod-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.prod-card .link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f9a8d4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.prod-card .link i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.prod-card .link:hover {
  color: #fbcfe8;
}

.prod-card .link:hover i {
  transform: translateX(4px);
}

/* ===== GALERIA DO PRODUTO ===== */
.prod-gallery {
  margin-bottom: 20px;
}

.prod-gallery__main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
}

.prod-gallery__main img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prod-gallery__main:hover img {
  transform: scale(1.04);
}

.prod-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 12, 16, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s ease;
  z-index: 2;
}

.prod-gallery__nav:hover {
  background: rgba(244, 114, 182, 0.85);
}

.prod-gallery__nav--prev {
  left: 10px;
}

.prod-gallery__nav--next {
  right: 10px;
}

.prod-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}

.prod-gallery__thumb {
  width: 56px;
  height: 46px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.prod-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-gallery__thumb:hover {
  transform: translateY(-2px);
}

.prod-gallery__thumb.is-active {
  border-color: #f472b6;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(6, 8, 11, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox__caption {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.lightbox__nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 16px;
}

body.lightbox--open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LINHAS DE DIVIS�O AZUL ===== */
.divider-line {
  height: 4px;
  width: 100%;
  border: none;
  margin: 0;
  background: linear-gradient(90deg, transparent 0%, #3b82f6 20%, #60a5fa 50%, #3b82f6 80%, transparent 100%);
  opacity: 0.9;
}

/* ===== COR DA LINHA DIVIS�RIA POR P�GINA ===== */
.divider-line {
  background: linear-gradient(90deg, transparent 0%, #3b82f6 25%, #3b82f6 75%, transparent 100%);
}

.pg-index .divider-line        { background: linear-gradient(90deg, transparent 0%, #f59e0b 25%, #f59e0b 75%, transparent 100%); }
.pg-servicos .divider-line     { background: linear-gradient(90deg, transparent 0%, #a855f7 25%, #a855f7 75%, transparent 100%); }
.pg-sobre .divider-line        { background: linear-gradient(90deg, transparent 0%, #d946ef 25%, #d946ef 75%, transparent 100%); }
.pg-contato .divider-line      { background: linear-gradient(90deg, transparent 0%, #84cc16 25%, #84cc16 75%, transparent 100%); }
.pg-cred .divider-line         { background: linear-gradient(90deg, transparent 0%, #3b82f6 25%, #3b82f6 75%, transparent 100%); }
.pg-crachas .divider-line      { background: linear-gradient(90deg, transparent 0%, #10b981 25%, #10b981 75%, transparent 100%); }
.pg-apostilas .divider-line    { background: linear-gradient(90deg, transparent 0%, #14b8a6 25%, #14b8a6 75%, transparent 100%); }
.pg-encadernacao .divider-line { background: linear-gradient(90deg, transparent 0%, #ec4899 25%, #ec4899 75%, transparent 100%); }
.pg-sites .divider-line        { background: linear-gradient(90deg, transparent 0%, #06b6d4 25%, #06b6d4 75%, transparent 100%); }
.pg-sistemas .divider-line     { background: linear-gradient(90deg, transparent 0%, #6366f1 25%, #6366f1 75%, transparent 100%); }
.pg-artes .divider-line        { background: linear-gradient(90deg, transparent 0%, #f97316 25%, #f97316 75%, transparent 100%); }
.pg-logomarcas .divider-line   { background: linear-gradient(90deg, transparent 0%, #f43f5e 25%, #f43f5e 75%, transparent 100%); }
.pg-cartazes .divider-line     { background: linear-gradient(90deg, transparent 0%, #8b5cf6 25%, #8b5cf6 75%, transparent 100%); }
.pg-personalizados .divider-line { background: linear-gradient(90deg, transparent 0%, #f472b6 25%, #f472b6 75%, transparent 100%); }
.pg-temas .divider-line        { background: linear-gradient(90deg, transparent 0%, #22c55e 25%, #22c55e 75%, transparent 100%); }

/* ===== LAYOUT COM SIDEBAR (p�ginas principais) ===== */
.sdetail > .page-main {
  min-width: 0;
}

@media (max-width: 992px) {
  .sdetail > .page-main {
    min-width: auto;
  }
}

/* ===== REFINAMENTO RESPONSIVO ===== */
body {
  overflow-x: hidden;
}

/* Menu hambúrguer em telas abaixo de 1100px (o botão WhatsApp é longo) */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
    margin-left: 14px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    padding: 10px 26px 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin: 16px 0 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Telas pequenas e celulares grandes */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.93rem;
  }

  .btn-lg {
    padding: 14px 26px;
    font-size: 0.98rem;
  }

  .hero {
    padding: 128px 0 76px;
  }

  .hero__stats {
    gap: 18px;
    margin-top: 34px;
  }

  .stat__value {
    font-size: 1.4rem;
  }

  .hero__card {
    padding: 20px;
  }

  .hero__badge {
    right: 8px;
  }

  .page-hero {
    padding: 138px 0 54px;
  }

  .crumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    right: 16px;
    bottom: 18px;
  }

  .back-top {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 84px;
  }

  .sidebar-card {
    padding: 20px 18px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .map-box {
    min-height: 260px;
  }
}

/* Celulares muito estreitos */
@media (max-width: 400px) {
  .navbar .container {
    height: 66px;
  }

  .nav-links {
    top: 66px;
    max-height: calc(100vh - 66px);
  }

  .brand {
    font-size: 1.06rem;
  }

  .brand__logo {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .brand__tag {
    font-size: 0.56rem;
    letter-spacing: 1.2px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.1rem);
  }

  .hero__text {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(1.35rem, 6.5vw, 1.7rem);
  }

  .section-sub {
    font-size: 0.92rem;
  }

  .cta__box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta__box .btn {
    width: 100%;
    justify-content: center;
  }

  .service-card,
  .service-full {
    padding: 26px 18px;
  }

  .sidebar-services a {
    font-size: 0.88rem;
  }

  .map-box {
    min-height: 200px;
  }

  .form-row {
    gap: 12px;
  }
}

/* ============================================================
   CARDS DE APOSTILA (download via PIX)
   ============================================================ */
.apostilas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pdf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, var(--surface, #1f242c), var(--surface-2, #262d37));
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 12px;
  padding: 12px 13px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
}

.pdf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pdf-card:hover {
  transform: translateY(-3px);
  border-color: #60a5fa;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.35),
    0 0 22px rgba(59, 130, 246, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.45);
}

.pdf-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.pdf-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 5px 14px rgba(185, 28, 28, 0.35);
}

.pdf-card__capa {
  display: block;
  width: auto;
  height: 176px;
  margin: 2px auto 0;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.pdf-card__body {
  flex: 1;
  min-width: 0;
}

.pdf-card__body strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.25;
  color: var(--heading, #f0f2f6);
  font-weight: 600;
}

.pdf-card__body small {
  display: block;
  margin-top: 2px;
  color: var(--text-light, #98a1ad);
  font-size: 0.72rem;
}

.pdf-card__price {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--accent-light, rgba(217, 179, 108, 0.12));
  color: var(--gold-bright, #e6c487);
  font-weight: 700;
  font-size: 0.82rem;
}

.pdf-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.pdf-card__btn {
  flex: 1;
  border: none;
  background: linear-gradient(135deg, var(--gold, #d9b36c), var(--gold-bright, #e6c487));
  color: #1a1407;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-align: center;
}

.pdf-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 179, 108, 0.35);
  filter: brightness(1.05);
}

.pdf-card__btn--previa {
  flex: 0 0 auto;
  background: transparent;
  color: var(--text-light, #98a1ad);
  border: 1px solid var(--border, #2b323d);
  box-shadow: none;
}

.pdf-card__btn--previa:hover {
  background: var(--accent-light, rgba(217, 179, 108, 0.12));
  color: var(--gold-bright, #e6c487);
  border-color: var(--gold, #d9b36c);
  box-shadow: none;
  transform: none;
  filter: none;
}

/* ============================================================
   MODAL DE PRÉVIA DE PDF
   ============================================================ */
.previa-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.previa-modal.open {
  visibility: visible;
  opacity: 1;
}

.previa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(3px);
}

.previa-modal__box {
  position: relative;
  width: min(860px, 100%);
  max-height: 90vh;
  background: var(--surface, #1f242c);
  border: 1px solid var(--border, #2b323d);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg, 0 24px 60px rgba(0, 0, 0, 0.6));
  transform: translateY(10px) scale(0.97);
  transition: transform 0.25s ease;
}

.previa-modal.open .previa-modal__box {
  transform: translateY(0) scale(1);
}

.previa-modal__barra {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--surface-2, #262d37), var(--primary-dark, #0e1115));
  border-bottom: 1px solid var(--border, #2b323d);
  color: var(--heading, #f0f2f6);
}

.previa-modal__titulo {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.previa-modal__nota {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--accent-light, rgba(217, 179, 108, 0.15));
  color: var(--gold-bright, #e6c487);
  border: 1px solid rgba(217, 179, 108, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.previa-modal__close {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: var(--text-light, #98a1ad);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.previa-modal__close:hover {
  color: var(--danger, #e08a8a);
  transform: rotate(90deg);
}

.previa-modal__corpo {
  flex: 1;
  min-height: 0;
  background: var(--primary-dark, #0e1115);
}

.previa-modal__frame {
  width: 100%;
  height: 60vh;
  border: none;
  display: block;
  background: #fff;
}

.previa-modal__rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--border, #2b323d);
  font-size: 0.85rem;
  color: var(--text-light, #98a1ad);
}

.previa-modal__rodape .pdf-card__btn {
  font-size: 0.85rem;
  flex: 0 0 auto;
  padding: 10px 18px;
}

body.previa-modal--aberto {
  overflow: hidden;
}

@media (max-width: 640px) {
  .previa-modal__frame {
    height: 52vh;
  }
  .previa-modal__nota {
    display: none;
  }
}

/* ============================================================
   MODAL DE PAGAMENTO PIX
   ============================================================ */
.pix-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pix-modal.open {
  visibility: visible;
  opacity: 1;
}

.pix-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.pix-modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  max-height: 92vh;
  overflow-y: auto;
}

.pix-modal.open .pix-modal__box {
  transform: translateY(0);
}

.pix-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
}

.pix-modal__close:hover {
  color: #111827;
}

.pix-modal__titulo {
  font-size: 1.15rem;
  color: #111827;
  margin: 0 0 4px;
}

.pix-modal__valor {
  color: #6b7280;
  margin: 0 0 16px;
}

.pix-qr {
  display: inline-block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}

.pix-qr__box {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.8rem;
}

.pix-qr__box img,
.pix-qr__box canvas {
  display: block;
}

.pix-copiar {
  width: 100%;
  border: 1px dashed var(--primary, #22c55e);
  background: #f0fdf4;
  color: var(--primary, #16a34a);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pix-copiar:hover {
  background: #dcfce7;
}

.pix-copia-ok {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #16a34a;
  font-weight: 600;
}

.pix-instrucoes {
  text-align: left;
  margin: 16px 0;
  padding-left: 20px;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.7;
}

.pix-confirmar {
  width: 100%;
}

.pix-ok {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 8px;
}

.pix-ok i {
  font-size: inherit;
}

.pix-passo[data-passo="pronto"] h4 {
  margin: 0 0 4px;
  color: #111827;
}

.pix-nota {
  color: #6b7280;
  font-size: 0.88rem;
  margin: 0 0 18px;
}

.pix-baixar {
  width: 100%;
}

.pix-coding-box {
  margin: 4px 0 14px;
  padding: 16px;
  border: 1.5px dashed #d9b36c;
  border-radius: 12px;
  background: #fbf7ec;
}

.pix-coding-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a6d2f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pix-coding {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: #7a5a1e;
}

.pix-enviar-whats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.pix-enviar-whats:hover {
  filter: brightness(1.05);
  color: #fff;
}

.pix-enviar-whats i {
  font-size: 1.15rem;
}

.pix-aguardando {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
}

.pix-aguardando i {
  animation: pix-pulso 1.2s ease-in-out infinite;
  color: #d9b36c;
}

@keyframes pix-pulso {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.9); }
}

body.pix-modal--aberto {
  overflow: hidden;
}

/* ============================================================
   PAINEL ADMIN NO RODAPÉ (página de contato)
   ============================================================ */
.footer__admin {
  margin: 34px auto 0;
  max-width: 820px;
  border-top: 1px solid var(--border, #2b323d);
  padding-top: 22px;
  text-align: center;
}

.footer__admin-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  color: var(--gold-bright, #e6c487);
  font: inherit;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer__admin-toggle:hover {
  color: var(--gold, #d9b36c);
}

.footer__admin-body {
  margin-top: 18px;
  padding: 20px 22px;
  background: var(--surface, #1f242c);
  border: 1px solid var(--border, #2b323d);
  border-radius: var(--radius, 14px);
  box-shadow: var(--shadow, 0 12px 32px rgba(0, 0, 0, 0.45));
  text-align: left;
  color: var(--text, #d7dbe2);
}

.topo-admin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.topo-admin strong {
  display: block;
  color: var(--heading, #f0f2f6);
  font-size: 1.05rem;
}

.topo-admin span {
  color: var(--text-light, #98a1ad);
  font-size: 0.78rem;
}

.topo-admin .sair {
  background: transparent;
  border: 1px solid var(--border, #2b323d);
  color: var(--text-light, #98a1ad);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
}

.topo-admin .sair:hover {
  border-color: var(--gold, #d9b36c);
  color: var(--gold-bright, #e6c487);
}

.footer__admin-body .admin-titulo {
  font-weight: 700;
  color: var(--heading, #f0f2f6);
  font-size: 1rem;
  margin: 0 0 12px;
}

.footer__admin-body input[type="password"] {
  width: 100%;
  background: var(--bg, #14171c);
  border: 1px solid var(--border, #2b323d);
  color: var(--heading, #f0f2f6);
  font: inherit;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer__admin-body .btn-entrar {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--gold, #d9b36c), var(--gold-bright, #e6c487));
  color: #1a1407;
  font: inherit;
  font-weight: 700;
  padding: 12px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.95rem;
}

.footer__admin-body .btn-entrar:hover {
  filter: brightness(1.05);
}

.footer__admin-body .erro {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--danger, #e08a8a);
  font-size: 0.85rem;
}

.admin-compras-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.admin-compras-head strong {
  color: var(--heading, #f0f2f6);
}

.admin-compras-head label {
  font-size: 0.8rem;
  color: var(--text-light, #98a1ad);
}

.admin-compras-head select {
  background: var(--bg, #14171c);
  color: var(--heading, #f0f2f6);
  border: 1px solid var(--border, #2b323d);
  border-radius: 8px;
  padding: 6px 10px;
  font: inherit;
  font-size: 0.8rem;
  margin-left: 4px;
}

.admin-tabela-wrap {
  overflow-x: auto;
}

.admin-tabela {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.admin-tabela th,
.admin-tabela td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border, #2b323d);
}

.admin-tabela th {
  color: var(--text-light, #98a1ad);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-tabela .status {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.admin-tabela .status.aguardando {
  background: var(--accent-light, rgba(217, 179, 108, 0.14));
  color: var(--gold-bright, #e6c487);
}

.admin-tabela .status.liberado {
  background: rgba(111, 211, 154, 0.14);
  color: #6fd39a;
}

.admin-tabela .btn-desbloquear {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.78rem;
}

.admin-tabela .btn-desbloquear:hover {
  filter: brightness(1.1);
}

.admin-tabela .btn-desbloquear:disabled {
  opacity: 0.5;
  cursor: default;
}

.admin-tabela .vazio {
  color: var(--text-light, #98a1ad);
  text-align: center;
  padding: 24px 0;
}

.footer__admin-body .oculto {
  display: none;
}
