/* ===================================================
   LUZATIVO THEME — Custom CSS
   Complementa o theme.json para estilos que o FSE
   nao consegue expressar nativamente
   =================================================== */

/* --- Topbar --- */
.luz-topbar {
  background: var(--wp--preset--color--roxo-profundo);
  padding: 6px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.luz-topbar__inner {
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.luz-topbar a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.luz-topbar a:hover {
  color: var(--wp--preset--color--dourado);
}

/* --- Header / Nav --- */
.luz-header {
  background: var(--wp--preset--color--branco);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}
.luz-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.luz-header__inner {
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin: 0 auto;
}

/* --- Custom Nav (mega-menu) --- */
.luz-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.luz-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--wp--preset--color--preto);
  font-family: var(--wp--preset--font-family--massima);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.luz-nav__link:hover {
  color: var(--wp--preset--color--roxo);
  background: var(--wp--preset--color--cinza-claro);
}
.luz-nav__arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
}
.luz-nav__item--has-children:hover .luz-nav__arrow {
  transform: rotate(180deg);
}
/* Ocultar itens do menu temporariamente — remover classe para reativar */
.luz-nav__item--hidden {
  display: none !important;
}

.luz-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--wp--preset--color--preto);
}

/* --- Dropdowns --- */
.luz-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp--preset--color--branco);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
}
.luz-nav__item--has-children {
  position: relative;
}
.luz-nav__item--has-children:hover > .luz-dropdown {
  opacity: 1;
  visibility: visible;
}
.luz-dropdown--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  min-width: 520px;
  padding: 1.25rem 1.5rem;
}
.luz-dropdown__col-title {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--cinza-medio);
  margin-bottom: 0.75rem;
}
.luz-dropdown__link {
  display: block;
  padding: 0.5rem 0.625rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--wp--preset--color--preto);
  font-family: var(--wp--preset--font-family--massima);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.luz-dropdown__link:hover {
  background: var(--wp--preset--color--cinza-claro);
  color: var(--wp--preset--color--roxo);
}
.luz-dropdown__desc {
  display: block;
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--wp--preset--color--cinza-medio);
  margin-top: 0.15rem;
}

/* --- Mobile nav --- */
@media (max-width: 768px) {
  .luz-topbar {
    display: none;
  }
  .luz-header__inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .luz-nav__toggle {
    display: block;
  }
  .luz-nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wp--preset--color--branco);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    z-index: 200;
    max-height: 80vh;
    overflow-y: auto;
  }
  .luz-nav__list.is-open {
    display: flex;
  }
  /* Separadores entre itens no mobile */
  .luz-nav__item {
    border-bottom: 1px solid var(--wp--preset--color--cinza-claro);
  }
  .luz-nav__item:last-child {
    border-bottom: none;
  }
  .luz-nav__link {
    padding: 0.875rem 0.5rem;
    font-size: 1rem;
    width: 100%;
  }
  .luz-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.75rem 0.75rem;
    margin-top: -0.5rem;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
  }
  .luz-dropdown--2col {
    grid-template-columns: 1fr;
    min-width: auto;
    padding: 0 0 0.75rem 0.75rem;
    gap: 0.75rem;
  }
  .luz-dropdown__col-title {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .luz-dropdown__link {
    padding: 0.625rem 0.5rem;
  }
  .luz-nav__item--has-children.is-open > .luz-dropdown {
    display: block;
  }
}

/* --- Kicker (overline) --- */
.luz-kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8860B;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.luz-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #B8860B;
  border-radius: 2px;
}
.luz-kicker--light {
  color: var(--wp--preset--color--dourado);
}
.luz-kicker--light::before {
  background: var(--wp--preset--color--dourado);
}

/* --- Buttons --- */
.luz-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--wp--preset--font-family--massima);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}
.luz-btn--primary {
  background: var(--wp--preset--color--roxo);
  color: #fff;
}
.luz-btn--primary:hover {
  background: var(--wp--preset--color--roxo-profundo);
  transform: translateY(-2px);
}
.luz-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.luz-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.luz-btn--sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}
.luz-btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* --- Divider tricolor (footer) --- */
.luz-divider-tricolor {
  border: none;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--wp--preset--color--roxo) 0%,
    var(--wp--preset--color--roxo) 33%,
    var(--wp--preset--color--dourado) 33%,
    var(--wp--preset--color--dourado) 66%,
    var(--wp--preset--color--verde) 66%,
    var(--wp--preset--color--verde) 100%
  );
  margin: 0;
}

/* --- Footer --- */
.luz-footer {
  background: var(--wp--preset--color--roxo-profundo);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.luz-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.luz-footer a:hover {
  color: #fff;
}
.luz-footer p {
  color: rgba(255, 255, 255, 0.55);
}
.luz-footer__col-title {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

/* Footer link lists */
.luz-footer__links,
.luz-footer .wp-block-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
}
.luz-footer__links li,
.luz-footer .wp-block-list li {
  margin-bottom: 0;
  list-style: none;
}
.luz-footer__links li::marker,
.luz-footer .wp-block-list li::marker {
  content: none;
}

/* Footer social icons */
.luz-footer .wp-block-social-links {
  margin-top: 1rem;
}
.luz-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.luz-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
}
.luz-footer__social a:hover {
  background: var(--wp--preset--color--dourado);
  color: var(--wp--preset--color--roxo-profundo);
}

/* Footer selo */
.luz-footer__selo {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer bottom bar */
.luz-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.luz-footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
}
.luz-footer__bottom a {
  color: rgba(255, 255, 255, 0.35);
}
.luz-footer__bottom a:hover {
  color: #fff;
}

/* Footer responsive */
@media (max-width: 768px) {
  .luz-footer__top {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .luz-footer__grid {
    flex-direction: column;
    gap: 0 !important;
  }
  .luz-footer__grid .wp-block-column {
    flex-basis: 100% !important;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .luz-footer__grid .wp-block-column:last-child {
    border-bottom: none;
  }
  /* Brand column */
  .luz-footer__brand {
    padding-bottom: 1.75rem !important;
  }
  /* Column titles bigger on mobile */
  .luz-footer__col-title {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
  }
  /* Links more spaced on mobile */
  .luz-footer__links li,
  .luz-footer .wp-block-list li {
    padding: 0.35rem 0;
  }
  /* Contact column spacing */
  .luz-footer__contact p {
    margin-bottom: 0.25rem;
  }
  /* Bottom bar */
  .luz-footer__bottom {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .luz-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* --- Animations (scroll reveal) --- */
.luz-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.luz-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .luz-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Utility: Surface muted --- */
.has-cinza-claro-background-color {
  background-color: var(--wp--preset--color--cinza-claro) !important;
}

/* --- Skip to content (accessibility) --- */
.luz-skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--wp--preset--color--roxo);
  color: var(--wp--preset--color--branco) !important;
  font-family: var(--wp--preset--font-family--massima);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  width: 1px;
  height: 1px;
}
.luz-skip-link:focus {
  position: fixed;
  top: 0;
  clip: auto;
  clip-path: none;
  overflow: visible;
  white-space: normal;
  width: auto;
  height: auto;
  outline: 2px solid var(--wp--preset--color--dourado);
  outline-offset: 2px;
}

/* --- Header logo --- */
.luz-header__logo .wp-block-site-logo img,
.luz-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* --- Footer logo (white on dark bg) --- */
.luz-footer__logo img {
  filter: brightness(0) invert(1);
  max-width: 140px;
  height: auto;
}

/* --- Page-specific templates --- */
.luz-page-servico {
  /* Servico pages have tighter content flow */
}
.luz-page-servico .wp-block-group.alignfull + .wp-block-group.alignfull {
  margin-top: 0;
}
.luz-page-case {
  /* Case study pages */
}
.luz-page-case .wp-block-image img {
  border-radius: 12px;
}

/* --- Footer contact column --- */
.luz-footer__contact-col a {
  display: block;
  margin-bottom: 0.25rem;
}

/* --- Scroll behavior --- */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ===================================================
   HOMEPAGE SECTIONS
   =================================================== */

/* --- Hero --- */
.luz-hero {
  background: linear-gradient(135deg, #2E1A47 0%, #1A0E2E 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.luz-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at 30% 50%, rgba(95, 36, 159, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.luz-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.luz-hero__kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--dourado);
  margin-bottom: 1.25rem;
}
.luz-hero__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.luz-hero__title em {
  font-style: italic;
  color: var(--wp--preset--color--dourado);
}
.luz-hero__subtitle {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}
.luz-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.luz-hero__badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.luz-hero__badge {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .luz-hero {
    padding: 4rem 1.25rem 3rem;
  }
  .luz-hero__badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* --- Marquee (logo scroll) --- */
.luz-marquee-section {
  background: var(--wp--preset--color--cinza-claro);
  padding: 1.5rem 2rem;
}
.luz-marquee-section__title {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--cinza-medio);
  text-align: center;
  margin: 0 0 0.5rem;
}
.luz-marquee {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.luz-marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: luz-marquee-scroll 25s linear infinite;
  width: max-content;
}
.luz-marquee__track img {
  height: 28px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.luz-marquee:hover .luz-marquee__track {
  animation-play-state: paused;
}
.luz-marquee__track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes luz-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section shared --- */
.luz-section {
  padding: 5rem 2rem;
}
.luz-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.luz-section--muted {
  background: var(--wp--preset--color--cinza-claro);
}
.luz-section--dark {
  background: linear-gradient(180deg, #2E1A47, #0D0D1A);
  color: #F3EDF9;
}
.luz-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.luz-section__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.15;
}
.luz-section--dark .luz-section__title {
  color: #fff;
}
.luz-section__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--wp--preset--color--cinza-medio);
  max-width: 600px;
  margin: 0 auto;
}
.luz-section--dark .luz-section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .luz-section {
    padding: 3rem 1.25rem;
  }
}

/* --- Cards grid --- */
.luz-cards-grid {
  display: grid;
  gap: 1.5rem;
}
.luz-cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.luz-cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.luz-cards-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .luz-cards-grid--3,
  .luz-cards-grid--4 {
    grid-template-columns: 1fr;
  }
  .luz-cards-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .luz-cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .luz-cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .luz-cards-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Card --- */
.luz-card {
  background: var(--wp--preset--color--branco);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.luz-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.luz-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wp--preset--color--cinza-claro);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--wp--preset--color--roxo);
}
.luz-card__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 0.5rem;
}
.luz-card__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--wp--preset--color--cinza-medio);
  margin: 0;
}

/* --- Ghost button --- */
.luz-btn--ghost {
  background: transparent;
  color: var(--wp--preset--color--roxo);
  padding: 0;
  font-size: 0.875rem;
}
.luz-btn--ghost:hover {
  color: var(--wp--preset--color--roxo-profundo);
  transform: none;
}

/* --- Stars (testimonials) --- */
.luz-stars {
  color: var(--wp--preset--color--verde);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* --- Steps (method) --- */
.luz-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.luz-step__number {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 3rem;
  font-weight: 800;
  color: var(--wp--preset--color--dourado);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.luz-step__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 0.5rem;
}
.luz-step__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--wp--preset--color--cinza-medio);
  margin: 0;
}
/* Steps em fundo escuro */
.luz-section--dark .luz-step__title,
.luz-sobre-section--dark .luz-step__title {
  color: #fff;
}
.luz-section--dark .luz-step__text,
.luz-sobre-section--dark .luz-step__text {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .luz-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .luz-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Quem somos (about grid) --- */
.luz-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.luz-about-grid__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--wp--preset--color--cinza-medio);
}
.luz-about-grid__visual {
  text-align: center;
}
.luz-about-grid__visual img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .luz-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .luz-about-grid__visual {
    order: -1;
  }
  .luz-about-grid__visual img {
    max-width: 100%;
  }
}

/* --- CTA Section --- */
.luz-cta-section {
  background: linear-gradient(135deg, #2E1A47 0%, #1A0E2E 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.luz-cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(95, 36, 159, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.luz-cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.luz-cta-section__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}
.luz-cta-section__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}
.luz-cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.luz-cta-section__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .luz-cta-section {
    padding: 3rem 1.25rem;
  }
}

/* --- Segment cards v3 (text-driven, professional) --- */
.luz-segment-card-v3 {
  display: block;
  text-align: left;
  padding: 1.75rem 1.5rem;
  background: var(--wp--preset--color--branco);
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.luz-segment-card-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--wp--preset--color--verde);
  opacity: 0;
  transition: opacity 0.25s;
}
.luz-segment-card-v3:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.luz-segment-card-v3:hover::before {
  opacity: 1;
}
.luz-segment-card-v3__name {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin-bottom: 0.4rem;
}
.luz-segment-card-v3__desc {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.8125rem;
  color: var(--wp--preset--color--cinza-medio);
  line-height: 1.5;
}
.luz-segment-card-v3__arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--wp--preset--font-family--massima);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo);
  transition: color 0.2s;
}
.luz-segment-card-v3:hover .luz-segment-card-v3__arrow {
  color: var(--wp--preset--color--verde);
}

/* --- Ecosystem partner card --- */
.luz-partner-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.luz-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.luz-partner-card img {
  height: 40px;
  margin: 0 auto 0.75rem;
  display: block;
}
.luz-partner-card__label {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: 0.8125rem;
  color: var(--wp--preset--color--cinza-medio);
  margin-top: 0.25rem;
}

/* --- Stagger animation for children --- */
.luz-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.luz-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.luz-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.luz-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.luz-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.luz-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.luz-stagger.is-visible > * {
  opacity: 0;
  transform: translateY(20px);
}
.luz-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero badge icon (verde) --- */
.luz-badge-icon {
  color: var(--wp--preset--color--verde);
}

/* --- Testimonial card --- */
.luz-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.luz-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.luz-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wp--preset--color--verde);
}
.luz-testimonial-card__name {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
}
.luz-testimonial-card__company {
  font-size: 0.8125rem;
  color: var(--wp--preset--color--cinza-medio);
}

/* --- Marquee: logos sem borda/fundo --- */
.luz-marquee-section {
  background: #F3EDF9;
}
.luz-marquee__track img {
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  mix-blend-mode: multiply;
}

/* --- Verde como cor de apoio global --- */
.luz-stars {
  color: var(--wp--preset--color--verde);
}
.luz-step__number {
  color: var(--wp--preset--color--verde) !important;
  opacity: 0.4 !important;
}
.luz-hero__badges .luz-badge-icon {
  color: var(--wp--preset--color--verde);
}
.luz-divider-tricolor {
  height: 4px;
}

/* ===================================================
   PAGE: SOBRE
   =================================================== */

/* Sobre Hero */
.luz-sobre-hero {
  background: linear-gradient(135deg, #2E1A47 0%, #1A0E2E 100%);
  padding: 8rem 2rem 5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.luz-sobre-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(95,36,159,.3) 0%, transparent 70%);
  pointer-events: none;
}
.luz-sobre-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}
.luz-sobre-hero__kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--dourado);
  margin-bottom: .75rem;
}
.luz-sobre-hero__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  color: #fff;
}
.luz-sobre-hero__title em {
  font-style: normal;
  color: var(--wp--preset--color--dourado);
}
.luz-sobre-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 540px;
}
.luz-sobre-hero__photo {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.luz-sobre-hero__photo img {
  width: 48%;
  max-width: 240px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.luz-sobre-hero__photo img:nth-child(2) {
  margin-top: 2rem;
}

/* Sobre Section base */
.luz-sobre-section {
  padding: 5rem 2rem;
}
.luz-sobre-section--muted {
  background: var(--wp--preset--color--cinza-claro);
}
.luz-sobre-section--dark {
  background: linear-gradient(180deg, #2E1A47 0%, #0D0D1A 100%);
  color: #F3EDF9;
}
.luz-sobre-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.luz-sobre-section__header {
  margin-bottom: 2.5rem;
}
.luz-sobre-section__header--center {
  text-align: center;
}
.luz-sobre-section__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: .5rem 0 0;
  line-height: 1.2;
}
.luz-sobre-section--dark .luz-sobre-section__title,
.luz-sobre-section--dark h2 {
  color: #fff;
}

/* Prose text */
.luz-prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--wp--preset--color--cinza-medio);
  max-width: 720px;
}
.luz-prose p {
  margin: 0 0 1.25rem;
}
.luz-prose p:last-child {
  margin-bottom: 0;
}
.luz-prose strong {
  color: var(--wp--preset--color--preto);
  font-weight: 600;
}
.luz-sobre-section--dark .luz-prose {
  color: rgba(255,255,255,.75);
}
.luz-sobre-section--dark .luz-prose strong {
  color: #fff;
}

/* Two-column */
.luz-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Highlight quote */
.luz-highlight {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo);
  border-left: 4px solid var(--wp--preset--color--verde);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}
.luz-sobre-section--dark .luz-highlight {
  color: var(--wp--preset--color--dourado);
  border-left-color: var(--wp--preset--color--verde);
}

/* Name breakdown */
.luz-name-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.luz-name-part {
  text-align: center;
}
.luz-name-part__word {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}
.luz-name-part__meaning {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
  display: block;
}
.luz-name-plus {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 2rem;
  font-weight: 300;
  color: var(--wp--preset--color--dourado);
}
.luz-name-divider {
  width: 80px;
  height: 3px;
  background: var(--wp--preset--color--verde);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Founder */
.luz-founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.luz-founder__photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.luz-founder__name {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 .25rem;
}
.luz-founder__role {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--wp--preset--color--verde);
  margin: 0 0 1.5rem;
}

/* Video embed */
.luz-video-embed {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
}
.luz-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Stats */
.luz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.luz-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--wp--preset--color--branco);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
}
.luz-stat__number {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--wp--preset--color--roxo);
  display: block;
  line-height: 1;
}
.luz-stat__label {
  font-size: .875rem;
  color: var(--wp--preset--color--cinza-medio);
  margin-top: .5rem;
  display: block;
}

/* Partners row */
.luz-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.luz-partners img {
  height: 28px;
  opacity: .7;
  transition: opacity .2s;
  mix-blend-mode: multiply;
}
.luz-partners img:hover {
  opacity: 1;
}

/* Sobre CTA */
.luz-sobre-cta {
  background: linear-gradient(135deg, #5F249F 0%, #2E1A47 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}
.luz-sobre-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.luz-sobre-cta__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: .75rem 0 1rem;
  line-height: 1.2;
}
.luz-sobre-cta__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}
.luz-sobre-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sobre responsive */
@media (max-width: 768px) {
  .luz-sobre-hero { padding: 5rem 1.25rem 3rem; }
  .luz-sobre-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .luz-sobre-hero__subtitle { margin: 0 auto; }
  .luz-sobre-hero__photo { margin-top: 2rem; }
  .luz-sobre-section { padding: 3rem 1.25rem; }
  .luz-2col { grid-template-columns: 1fr; gap: 2rem; }
  .luz-founder { grid-template-columns: 1fr; }
  .luz-founder__photo { max-width: 280px; margin: 0 auto; }
  .luz-stats { grid-template-columns: 1fr; gap: 1rem; }
  .luz-name-split {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .luz-name-plus {
    font-size: 1.5rem;
    margin: 0.25rem 0;
  }
  .luz-name-part__word {
    font-size: 2.5rem;
  }
  .luz-sobre-cta { padding: 3rem 1.25rem; }
}

/* --- Method cards (Sobre page, RD-style) --- */
.luz-method-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.luz-method-card {
  background: var(--wp--preset--color--branco);
  border: 1.5px solid rgba(86, 176, 147, 0.3);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.luz-method-card:hover {
  border-color: var(--wp--preset--color--verde);
  box-shadow: 0 8px 24px rgba(86, 176, 147, 0.1);
}
.luz-method-card__number {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 2rem;
  font-weight: 800;
  color: var(--wp--preset--color--verde);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}
.luz-method-card__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 0.5rem;
}
.luz-method-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--wp--preset--color--cinza-medio);
  margin: 0;
}
@media (max-width: 768px) {
  .luz-method-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .luz-method-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- CTA section: verde no botao outline --- */
.luz-cta-section .luz-btn--outline-white {
  border-color: var(--wp--preset--color--verde);
  color: var(--wp--preset--color--verde);
}
.luz-cta-section .luz-btn--outline-white:hover {
  background: rgba(86, 176, 147, 0.15);
}

/* ===================================================
   PAGE: CONTATO
   =================================================== */

/* Contato Hero */
.luz-contato-hero {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo-profundo) 0%, #1A0E2E 100%);
  padding: 8rem 2rem 4.5rem;
  color: #FFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.luz-contato-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(95,36,159,.25) 0%, transparent 70%);
  pointer-events: none;
}
.luz-contato-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.luz-contato-hero__kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--dourado);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.luz-contato-hero__kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--wp--preset--color--dourado);
}
.luz-contato-hero__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: #FFF;
}
.luz-contato-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
}

/* Contato Cards de direcionamento */
.luz-contato-cards {
  padding: 5rem 2rem;
  background: #F3EDF9;
}
.luz-contato-cards__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.luz-contato-card {
  background: #FFF;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid #E8E0F0;
  transition: transform .2s, box-shadow .2s;
}
.luz-contato-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.luz-contato-card--destaque {
  border: 2px solid var(--wp--preset--color--roxo);
  background: linear-gradient(180deg, #FFF 0%, #F9F5FF 100%);
  position: relative;
}
.luz-contato-card--destaque::before {
  content: 'Recomendado';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp--preset--color--roxo);
  color: #FFF;
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.luz-contato-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.luz-contato-card__icon--roxo {
  background: var(--wp--preset--color--roxo);
  color: #FFF;
}
.luz-contato-card__icon--verde {
  background: var(--wp--preset--color--verde);
  color: #FFF;
}
.luz-contato-card__icon--cinza {
  background: #E8E0F0;
  color: var(--wp--preset--color--roxo-profundo);
}
.luz-contato-card__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 .75rem;
  line-height: 1.3;
}
.luz-contato-card__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}
.luz-contato-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  transition: background .2s, transform .1s;
  text-align: center;
}
.luz-contato-card__btn--primary {
  background: var(--wp--preset--color--dourado);
  color: var(--wp--preset--color--roxo-profundo);
}
.luz-contato-card__btn--primary:hover {
  background: #D9A02E;
  transform: translateY(-1px);
}
.luz-contato-card__btn--secondary {
  background: transparent;
  color: var(--wp--preset--color--roxo);
  border: 1.5px solid var(--wp--preset--color--roxo);
}
.luz-contato-card__btn--secondary:hover {
  background: var(--wp--preset--color--roxo);
  color: #FFF;
}

/* Contato Dados institucionais */
.luz-contato-dados {
  padding: 5rem 2rem;
  background: #FFF;
}
.luz-contato-dados__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.luz-contato-dados__header {
  margin-bottom: 2rem;
  text-align: center;
}
.luz-contato-dados__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: .5rem 0 0;
}
.luz-contato-dados__note {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--wp--preset--color--verde);
  font-weight: 600;
  margin: 0 auto 2rem;
  padding: .5rem 1rem;
  background: rgba(86,176,147,.08);
  border-radius: 8px;
}
.luz-contato-dados__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.luz-contato-dados__item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-align: left;
}
.luz-contato-dados__label {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #999;
}
.luz-contato-dados__value {
  font-size: .9375rem;
  line-height: 1.65;
  color: #1A1A2E;
}
.luz-contato-dados__value a {
  color: var(--wp--preset--color--roxo);
  text-decoration: none;
}
.luz-contato-dados__value a:hover {
  text-decoration: underline;
}
.luz-contato-dados__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.luz-contato-dados__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F3EDF9;
  color: var(--wp--preset--color--roxo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.luz-contato-dados__social a:hover {
  background: var(--wp--preset--color--roxo);
  color: #FFF;
}

/* Contato CTA reforço */
.luz-contato-cta {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo) 0%, var(--wp--preset--color--roxo-profundo) 100%);
  padding: 4.5rem 2rem;
  text-align: center;
  color: #FFF;
}
.luz-contato-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.luz-contato-cta__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.25;
  color: #FFF;
}
.luz-contato-cta__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}

/* Contato Responsive */
@media (max-width: 768px) {
  .luz-contato-hero { padding: 5rem 1.25rem 3rem; }
  .luz-contato-cards { padding: 3rem 1.25rem; }
  .luz-contato-cards__inner {
    grid-template-columns: 1fr;
  }
  .luz-contato-dados { padding: 3rem 1.25rem; }
  .luz-contato-dados__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .luz-contato-cta { padding: 3rem 1.25rem; }
}

/* ===================================================
   PAGES: SOLUÇÕES (shared luz-srv-*)
   =================================================== */

/* Soluções Hero */
.luz-srv-hero {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo-profundo) 0%, #1A0E2E 100%);
  padding: 8rem 2rem 5rem;
  color: #FFF;
  position: relative;
  overflow: hidden;
}
.luz-srv-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(95,36,159,.25) 0%, transparent 70%);
  pointer-events: none;
}
.luz-srv-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.luz-srv-hero__kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--dourado);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.luz-srv-hero__kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--wp--preset--color--dourado);
}
.luz-srv-hero__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: #FFF;
}
.luz-srv-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.luz-srv-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Soluções Section base */
.luz-srv-section {
  padding: 5rem 2rem;
}
.luz-srv-section--muted {
  background: #F3EDF9;
}
.luz-srv-section--dark {
  background: linear-gradient(180deg, #2E1A47 0%, #1A0E2E 100%);
  color: #F3EDF9;
}
.luz-srv-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
.luz-srv-section__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: .5rem 0 1.5rem;
  line-height: 1.2;
}
.luz-srv-section--dark .luz-srv-section__title {
  color: #FFF;
}

/* Soluções Prose */
.luz-srv-prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
}
.luz-srv-prose p { margin: 0 0 1.25rem; }
.luz-srv-prose p:last-child { margin-bottom: 0; }
.luz-srv-prose strong {
  color: #1A1A2E;
  font-weight: 600;
}
.luz-srv-section--dark .luz-srv-prose {
  color: rgba(255,255,255,.75);
}
.luz-srv-section--dark .luz-srv-prose strong {
  color: #FFF;
}

/* Soluções Cards grid */
.luz-srv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.luz-srv-card {
  background: #FFF;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #E8E0F0;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.luz-srv-card__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 .75rem;
}
.luz-srv-card__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Soluções Benefits list */
.luz-srv-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.luz-srv-benefits li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  padding-left: 1.75rem;
  position: relative;
}
.luz-srv-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp--preset--color--dourado);
}
.luz-srv-benefits li strong {
  color: #1A1A2E;
  font-weight: 600;
}

/* Soluções Persona list */
.luz-srv-persona {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.luz-srv-persona li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  padding: 1.25rem 1.5rem;
  background: #FFF;
  border-radius: 12px;
  border-left: 4px solid var(--wp--preset--color--roxo);
}

/* Soluções Testimonial */
.luz-srv-testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.luz-srv-testimonial__quote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1.25rem;
}
.luz-srv-testimonial__quote::before { content: '\201C'; }
.luz-srv-testimonial__quote::after { content: '\201D'; }
.luz-srv-testimonial__author {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .875rem;
  font-weight: 600;
  color: var(--wp--preset--color--roxo-profundo);
}

/* Soluções CTA final */
.luz-srv-cta {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo) 0%, var(--wp--preset--color--roxo-profundo) 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: #FFF;
}
.luz-srv-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.luz-srv-cta__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #FFF;
}
.luz-srv-cta__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}
.luz-srv-cta__note {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
  margin-bottom: 2rem;
}
.luz-srv-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Soluções Responsive */
@media (max-width: 768px) {
  .luz-srv-hero { padding: 5rem 1.25rem 3rem; }
  .luz-srv-hero__actions { flex-direction: column; align-items: center; }
  .luz-srv-section { padding: 3rem 1.25rem; }
  .luz-srv-cards { grid-template-columns: 1fr; }
  .luz-srv-cta { padding: 3rem 1.25rem; }
  .luz-srv-cta__actions { flex-direction: column; align-items: center; }
}

/* ===================================================
   PAGE: POLÍTICA DE PRIVACIDADE / PÁGINAS DE CONTEÚDO
   =================================================== */

/* Page header (legal/institutional) */
.luz-page-header {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo-profundo) 0%, var(--wp--preset--color--roxo) 100%);
  padding: 7rem 2rem 3.5rem;
  text-align: center;
  color: #FFF;
}
.luz-page-header__kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--dourado);
  margin-bottom: .75rem;
}
.luz-page-header__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #FFF;
}
.luz-page-header__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Updated badge */
.luz-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  color: rgba(255,255,255,.85);
  margin-top: 1.25rem;
}

/* Content area */
.luz-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.luz-content h2 {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 3rem 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--wp--preset--color--dourado);
}
.luz-content h3 {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo);
  margin: 2rem 0 .75rem;
}
.luz-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 1rem;
}
.luz-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.luz-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}
.luz-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wp--preset--color--roxo-claro);
}
.luz-content strong {
  color: #1A1A2E;
  font-weight: 600;
}
.luz-content a {
  color: var(--wp--preset--color--roxo);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.luz-content a:hover {
  color: var(--wp--preset--color--roxo-claro);
}
.luz-content hr {
  border: none;
  border-top: 1px solid #E8E0F0;
  margin: 2.5rem 0;
}

/* Info box */
.luz-info-box {
  background: #F3EDF9;
  border-left: 4px solid var(--wp--preset--color--roxo);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.luz-info-box p {
  margin: .25rem 0;
}

/* Subsection */
.luz-subsection {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 1.25rem 0;
}
.luz-subsection h4 {
  font-family: var(--wp--preset--font-family--massima);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 .5rem;
}
.luz-subsection p {
  font-size: .9375rem;
  margin: 0 0 .5rem;
}
.luz-subsection p:last-child {
  margin-bottom: 0;
}

/* Table of contents */
.luz-toc {
  background: #F3EDF9;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.luz-toc__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: 0 0 1rem;
}
.luz-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.luz-toc li {
  counter-increment: toc;
  margin-bottom: .5rem;
  break-inside: avoid;
}
.luz-toc li::before {
  content: counter(toc, decimal-leading-zero) ". ";
  font-family: var(--wp--preset--font-family--massima);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-claro);
  font-size: .875rem;
}
.luz-toc a {
  font-size: .9375rem;
  color: #555;
  text-decoration: none;
}
.luz-toc a:hover {
  color: var(--wp--preset--color--roxo);
  text-decoration: underline;
}

/* Back to top */
.luz-back-top {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--wp--preset--color--roxo);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2rem;
}
.luz-back-top:hover {
  color: var(--wp--preset--color--roxo-claro);
}

/* Responsive */
@media (max-width: 640px) {
  .luz-toc ol { columns: 1; }
  .luz-content { padding: 2.5rem 1.25rem 3rem; }
  .luz-page-header { padding: 5rem 1.25rem 2.5rem; }
}

/* === PAGES: CASES (shared luz-case-*) === */

/* Hero */
.luz-case-hero {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo-profundo) 0%, #1A0E2E 100%);
  padding: 8rem 2rem 5rem;
  color: #FFF;
  position: relative;
  overflow: hidden;
}
.luz-case-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(95,36,159,.25) 0%, transparent 70%);
  pointer-events: none;
}
.luz-case-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.luz-case-hero__kicker {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--dourado);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.luz-case-hero__kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--wp--preset--color--dourado);
}
.luz-case-hero__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.5rem;
  color: #FFF;
}
.luz-case-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 720px;
  margin-bottom: 2rem;
}
.luz-case-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.luz-case-hero__tag {
  padding: .4rem .85rem;
  border-radius: 6px;
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .75rem;
  font-weight: 500;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
}
.luz-case-hero__segment {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  color: var(--wp--preset--color--verde);
  font-weight: 500;
}

/* Section base */
.luz-case-section {
  padding: 5rem 2rem;
}
.luz-case-section--muted {
  background: #F3EDF9;
}
.luz-case-section--dark {
  background: linear-gradient(180deg, #2E1A47 0%, #1A0E2E 100%);
  color: #F3EDF9;
}
.luz-case-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
.luz-case-section__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
  margin: .5rem 0 1.5rem;
  line-height: 1.2;
}
.luz-case-section--dark .luz-case-section__title {
  color: #FFF;
}

/* Prose */
.luz-case-prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
}
.luz-case-prose p { margin: 0 0 1.25rem; }
.luz-case-prose p:last-child { margin-bottom: 0; }
.luz-case-prose strong {
  color: #1A1A2E;
  font-weight: 600;
}
.luz-case-section--dark .luz-case-prose {
  color: rgba(255,255,255,.72);
}
.luz-case-section--dark .luz-case-prose strong {
  color: #FFF;
}

/* Challenge list */
.luz-case-challenges {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
  counter-reset: challenge;
}
.luz-case-challenges li {
  counter-increment: challenge;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  padding: 1.25rem 1.5rem;
  background: #FFF;
  border-radius: 12px;
  border-left: 4px solid var(--wp--preset--color--dourado);
}
.luz-case-challenges li::before {
  content: counter(challenge);
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--wp--preset--color--dourado);
  opacity: .5;
  flex-shrink: 0;
  min-width: 1.5rem;
}

/* Phase blocks */
.luz-case-phase {
  margin-bottom: 3rem;
}
.luz-case-phase:last-child { margin-bottom: 0; }
.luz-case-phase__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.luz-case-phase__number {
  font-family: var(--wp--preset--font-family--massima);
  font-size: .75rem;
  font-weight: 700;
  color: #FFF;
  background: var(--wp--preset--color--dourado);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.luz-case-phase__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--roxo-profundo);
}
.luz-case-phase__body {
  padding-left: 2.75rem;
}
.luz-case-phase__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin: 0 0 1rem;
}
.luz-case-phase__body p:last-child { margin-bottom: 0; }
.luz-case-phase__body ul {
  list-style: none;
  padding: 0;
  margin: .75rem 0;
  display: grid;
  gap: .6rem;
}
.luz-case-phase__body ul li {
  font-size: .9375rem;
  line-height: 1.65;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
}
.luz-case-phase__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wp--preset--color--dourado);
}
.luz-case-phase__note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(95,36,159,.04);
  border: 1px solid rgba(95,36,159,.12);
  border-radius: 10px;
  font-size: .875rem;
  line-height: 1.65;
  color: #555;
}
.luz-case-phase__note strong {
  color: var(--wp--preset--color--roxo);
  font-weight: 600;
}

/* Results list (dark bg) */
.luz-case-results {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}
.luz-case-results li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  padding-left: 1.75rem;
  position: relative;
}
.luz-case-results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp--preset--color--verde);
}
.luz-case-results li strong {
  color: #FFF;
  font-weight: 600;
}

/* Testimonial */
.luz-case-testimonial {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}
.luz-case-testimonial__quote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.75;
  color: #555;
  margin: 0 0 1.5rem;
  position: relative;
}
.luz-case-testimonial__quote::before {
  content: '\201C';
  font-family: var(--wp--preset--font-family--massima);
  font-size: 4rem;
  color: var(--wp--preset--color--dourado);
  opacity: .3;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
}
.luz-case-testimonial__author {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .875rem;
  font-weight: 600;
  color: var(--wp--preset--color--roxo-profundo);
}
.luz-case-testimonial__role {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  color: #999;
}

/* About client */
.luz-case-about__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.luz-case-about__links a {
  font-family: var(--wp--preset--font-family--compasso);
  font-size: .8125rem;
  color: var(--wp--preset--color--roxo);
  text-decoration: none;
  padding: .4rem .85rem;
  border-radius: 6px;
  background: rgba(95,36,159,.06);
  border: 1px solid rgba(95,36,159,.12);
  transition: all .2s;
}
.luz-case-about__links a:hover {
  background: var(--wp--preset--color--roxo);
  color: #FFF;
}

/* Photo gallery */
.luz-case-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.luz-case-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* CTA */
.luz-case-cta {
  background: linear-gradient(135deg, var(--wp--preset--color--roxo) 0%, var(--wp--preset--color--roxo-profundo) 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: #FFF;
}
.luz-case-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.luz-case-cta__title {
  font-family: var(--wp--preset--font-family--massima);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #FFF;
}
.luz-case-cta__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}
.luz-case-cta__note {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-bottom: 2rem;
}
.luz-case-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cases — Responsive */
@media (max-width: 768px) {
  .luz-case-gallery { grid-template-columns: 1fr; }
  .luz-case-phase__body { padding-left: 0; }
  .luz-case-cta__actions { flex-direction: column; align-items: center; }
}
