/* =====================================================
   DOGMA CONSULTING — Design System
   Estratégia que transforma. Resultados que ficam.
   ===================================================== */

:root {
  --navy: #12182b;
  --navy-soft: #1b2338;
  --gold-dark: #b18629;
  --gold: #c9a84c;
  --gold-light: #bfa640;
  --white: #ffffff;
  --off-white: #f6f4ef;
  --text-muted: #c7cbd6;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius: 4px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

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

.section { padding: 90px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--soft { background: var(--off-white); }

.section-intro { max-width: 680px; margin-bottom: 56px; }
.section-intro p { color: #55596b; font-size: 1.05rem; }
.section--navy .section-intro p { color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: var(--navy); }
.btn--gold:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn--outline { border-color: var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy); }
.btn--outline-light { border-color: var(--white); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 24, 43, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark-img { width: 34px; height: 34px; display: block; flex-shrink: 0; }
.logo-wordmark-img { height: 26px; width: auto; display: block; }
.logo-wordmark-img--footer { height: 32px; }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
}
.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 14px 30px !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px; right: 0;
    background: var(--navy);
    flex-direction: column;
    width: 240px;
    padding: 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(201,168,76,0.2);
    height: calc(100vh - 68px);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 70px;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 35%, rgba(18,24,43,0.55) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-content h1 { color: var(--white); }
.hero-content p.lead { font-size: 1.15rem; color: var(--text-muted); margin: 22px 0 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero { position: relative; padding: 160px 0 70px; background: var(--navy); color: var(--white); overflow: hidden; }
.page-hero .hero-bg { opacity: 0.22; }
.page-hero .hero-overlay { background: linear-gradient(180deg, rgba(18,24,43,0.4), var(--navy) 90%); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-content h1 { color: var(--white); }
.page-hero-content .eyebrow, .hero-content .eyebrow { color: var(--gold); }
.page-hero-content p { color: var(--text-muted); font-size: 1.05rem; margin-top: 16px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid rgba(18,24,43,0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(18,24,43,0.08); }
.card-icon { width: 46px; height: 46px; margin-bottom: 18px; }

.tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card .tag-slot {
  display: flex;
  align-items: flex-start;
  min-height: 52px;
  margin-bottom: 2px;
}
.card .tag-slot .tag { margin-bottom: 0; }
.card h3 { margin-bottom: 0; }
.card p { margin-top: 10px; color: #555; }

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.service-row:last-child { border-bottom: none; }
.service-row h3 { color: var(--white); margin-bottom: 10px; }
.service-row p { color: var(--text-muted); }
@media (max-width: 700px) { .service-row { grid-template-columns: 1fr; } }

.sector-card { background: var(--navy-soft); border-left: 3px solid var(--gold); padding: 30px 28px; border-radius: var(--radius); }
.sector-card h3 { color: var(--white); margin-bottom: 6px; }
.sector-card .sector-tags { color: var(--gold); font-style: italic; font-size: 0.92rem; margin-bottom: 14px; }
.sector-card p { color: var(--text-muted); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 34px; }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.step h3 { font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; border: 1px solid rgba(18,24,43,0.08); position: relative; }
.plan-card.featured { border: 2px solid var(--gold); box-shadow: 0 20px 50px rgba(193,160,64,0.18); }
.plan-card .badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: 0.05em;
}
.plan-card .price { font-family: var(--font-heading); font-size: 2.1rem; color: var(--navy); margin: 14px 0 6px; }
.plan-card .price span { font-size: 0.95rem; font-family: var(--font-body); color: #777; }
.plan-card ul { margin-top: 18px; }
.plan-card ul li { padding: 8px 0; font-size: 0.92rem; color: #444; border-bottom: 1px dashed rgba(18,24,43,0.1); }
.plan-card .btn { width: 100%; justify-content: center; margin-top: 22px; }

.result-card { background: var(--navy-soft); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,168,76,0.15); }
.result-card .result-img { height: 420px; overflow: hidden; background: #0c1120; display:flex; align-items:center; justify-content:center; }
.result-card .result-img img { width: 100%; height: 100%; object-fit: contain; }
.result-card .result-body { padding: 24px; }
.result-card h3 { color: var(--white); }
.result-stats { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.result-stats span { background: rgba(201,168,76,0.12); color: var(--gold); font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; }

.quote-block { border-left: 3px solid var(--gold); padding-left: 24px; font-style: italic; font-size: 1.15rem; color: var(--navy); max-width: 680px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 30px; }
.contact-info-item .icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-info-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); }

.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); color: var(--navy); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid #ddd; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }

.cta-band { background: linear-gradient(120deg, var(--gold-dark), var(--gold-light)); text-align: center; padding: 70px 0; }
.cta-band h2 { color: var(--navy); }
.cta-band p { color: var(--navy); opacity: 0.85; margin: 14px 0 30px; }

.site-footer { background: var(--navy); color: var(--text-muted); padding: 60px 0 30px; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.82rem; color: #7c8196; }

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.center-col { max-width: 720px; margin: 0 auto; text-align: center; }

/* ===== Clean hero variants (no photo, gradient + subtle pattern) ===== */
.hero--clean, .page-hero--clean {
  background:
    radial-gradient(circle at 85% 15%, rgba(201,168,76,0.16) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,168,76,0.10) 0%, transparent 40%),
    var(--navy);
}
.hero--clean::after, .page-hero--clean::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.35) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.05;
  pointer-events: none;
}

/* ===== Antes/Depois (Resultados) ===== */
.case-block {
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(18,24,43,0.08);
}
.case-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.before-after-frame {
  background: linear-gradient(180deg, rgba(18,24,43,0.03), rgba(18,24,43,0.06));
  border: 1px solid rgba(18,24,43,0.08);
  border-radius: calc(var(--radius) + 10px);
  padding: 28px 24px 24px;
  margin: 18px 0 22px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 280px));
  gap: 20px;
  margin: 0;
  justify-content: center;
}
.before-after--single { grid-template-columns: minmax(190px, 280px); justify-content: center; }

.ba-col { position: relative; }
.ba-col img {
  width: 100%;
  aspect-ratio: 4 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(18,24,43,0.12);
  box-shadow: 0 10px 24px rgba(18,24,43,0.14);
  background: #0c1120;
}
.ba-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(18,24,43,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ba-label--after {
  color: var(--navy);
  background: rgba(201,168,76,0.28);
  border-color: rgba(201,168,76,0.4);
}

@media (max-width: 700px) {
  .before-after-frame { padding: 20px 14px 16px; }
  .before-after { grid-template-columns: repeat(2, minmax(130px, 200px)); gap: 12px; }
  .before-after--single { grid-template-columns: minmax(160px, 220px); }
}

/* ===== Feedbacks (vídeos de testemunho) ===== */
.testimonial-grid {
  max-width: 680px;
  margin: 0 auto;
  gap: 28px;
}
.testimonial-card {
  background: var(--navy-soft);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}
.testimonial-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.testimonial-media video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.testimonial-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,24,43,0.05) 60%, rgba(18,24,43,0.55) 100%);
  pointer-events: none;
  transition: opacity var(--transition);
}
.testimonial-media.is-playing::after { opacity: 0; }
.testimonial-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(201,168,76,0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.testimonial-play svg { margin-left: 3px; }
.testimonial-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); }
.testimonial-media.is-playing .testimonial-play { opacity: 0; pointer-events: none; }
.testimonial-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; }
@media (max-width: 700px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18,24,43,0.28);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(18,24,43,0.32);
}
@media (max-width: 600px) {
  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* ===== Mini sector cards (homepage teaser) ===== */
.sector-mini-h {
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .sector-mini-h { font-size: 0.92rem; }
}

/* ===== Social icons (footer + nav) ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.nav-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.nav-social:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ===== Portefólio (Trabalhos) ===== */
.work-section-title { margin-bottom: 28px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(18,24,43,0.08);
  background: #000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(18,24,43,0.16); }
.work-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.work-card .testimonial-media { border-radius: 0; }
.work-card .testimonial-media video { aspect-ratio: 3 / 4; }
.work-site-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(18,24,43,0.08);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-site-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(18,24,43,0.12); }
.work-site-card .site-shot-wrap {
  height: 320px;
  overflow: hidden;
  background: #f2f0ea;
}
.work-site-card .site-shot-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.work-site-card .site-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-site-card .site-info h4 { font-size: 1.05rem; }
.work-site-card .site-info a { font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ===== Tabs (Resultados / Portefólio) ===== */
.tab-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 32px;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid rgba(18,24,43,0.2);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.tab-btn:hover { border-color: var(--gold-dark); }
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* extra breathing room when a CTA button follows a heading with no paragraph in between */
.cta-band h2 + .btn { margin-top: 26px; }

/* ===== Páginas Legais (Privacidade / Aviso Legal) ===== */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--navy); }
.legal-content p { color: #55596b; margin-bottom: 14px; line-height: 1.7; }
.legal-content ul { margin: 0 0 14px 20px; color: #55596b; line-height: 1.7; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--navy); }
.legal-content .updated { font-size: 0.85rem; color: #8a8d9c; margin-bottom: 34px; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); margin-top: 14px; line-height: 1.7; }

/* ===== Carrossel (posts multi-slide) ===== */
.carousel-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(18,24,43,0.08);
  background: #000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.carousel-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(18,24,43,0.16); }
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: block;
}
.carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(18,24,43,0.55);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
  letter-spacing: 0.02em;
}
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background var(--transition), transform var(--transition);
}
.carousel-dots span.active { background: #fff; transform: scale(1.3); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(18,24,43,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background var(--transition), opacity var(--transition);
  opacity: 0;
}
.carousel-card:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: rgba(18,24,43,0.85); }
.carousel-arrow--prev { left: 10px; }
.carousel-arrow--next { right: 10px; }
.carousel-arrow[disabled] { opacity: 0 !important; pointer-events: none; }
@media (max-width: 900px) {
  .carousel-arrow { opacity: 1; }
}

/* ===== Linha de serviços por caso (Resultados) ===== */
.case-services {
  font-size: 0.85rem;
  color: #6b6f80;
  margin: -8px 0 14px;
}
