/* ============================================================
   LCSJ Elétrica — sections.css
   Estilos específicos de cada seção da landing page
   ============================================================ */

/* ================================================================
   HEADER
   ================================================================ */
.lcsj-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  background: transparent;
  padding-block: 10px;
  transition: background var(--transition), box-shadow var(--transition);
}

.lcsj-header.is-sticky {
  background: var(--lcsj-black);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* Admin bar do WordPress (usuário logado) empurra html 32px/46px.
   O header fixo precisa acompanhar para não sobrepor a barra. */
.admin-bar .lcsj-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .lcsj-header {
    top: 46px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lcsj-white);
  letter-spacing: 0.02em;
}

.logo-text strong { color: var(--lcsj-yellow); }
.logo-text--light { color: var(--lcsj-text-light); }

.header-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.header-nav a:hover { color: var(--lcsj-yellow); }

.header-cta { margin-left: 1rem; }

.header-whatsapp-mobile { display: none; }

/* ================================================================
   HERO
   ================================================================ */
.section-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--lcsj-black);
  padding-top: 88px;
}

/* ---- Hero slideshow ---- */
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, var(--overlay-opacity, 0.75));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem 4rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lcsj-text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid var(--lcsj-border-dark);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}

.badge-dot { color: var(--lcsj-yellow); font-size: 0.5rem; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--lcsj-white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--lcsj-text-light);
  max-width: 60ch;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--lcsj-text-light);
}

.trust-dot { color: var(--lcsj-yellow); font-weight: 700; }

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--lcsj-border-dark);
}

/* ================================================================
   NÚMEROS
   ================================================================ */
.section-numbers {
  background: var(--lcsj-black-mid);
  padding-block: 4rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.number-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 0.5px solid var(--lcsj-border-dark);
}

.number-item:last-child { border-right: none; }

.number-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--lcsj-yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.number-label {
  display: block;
  font-size: 0.9375rem;
  color: var(--lcsj-text-light);
  font-weight: 400;
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.section-services {
  background: var(--lcsj-surface);
  padding-block: 5rem;
}

.section-services .section-title { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- Card com carrossel ---- */
.service-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

/* ---- Carrossel ---- */
.card-carousel {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.38s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.carousel-placeholder {
  display: block;
  width: 100%;
  height: 300px;
  background: #cccccc;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
}

/* ---- Overlay título + descrição ---- */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 1.375rem 1.25rem;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.80) 100%
  );
  pointer-events: none;
}

.card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lcsj-white);
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.card-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* ---- Setas de navegação ---- */
.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
}

.card-carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(0, 0, 0, 0.85); }
.carousel-btn[disabled] { opacity: 0.25 !important; cursor: default; pointer-events: none; }
.carousel-btn.is-hidden { display: none; }

.carousel-prev { left: 0.625rem; }
.carousel-next { right: 0.625rem; }

/* ---- Dots ---- */
.carousel-dots {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.375rem;
  z-index: 10;
}

.carousel-dots.is-hidden { display: none; }

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.is-active {
  background: var(--lcsj-yellow);
  transform: scale(1.35);
}

/* ================================================================
   EMPREITADA ELÉTRICA
   ================================================================ */
.section-empreitada {
  position: relative;
  background-color: #111111;
  padding-block: 7rem;
  overflow: hidden;
}

/* Camada 0 — foto de fundo */
.empreitada-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

/* Camada 1 — overlay preto 75% */
.empreitada-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Camada 2 — linha diagonal de canto a canto */
.empreitada-deco-line {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 0.5px),
    rgba(245, 184, 0, 0.30) calc(50% - 0.5px),
    rgba(245, 184, 0, 0.30) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
}

/* Camada 2 — retângulos vazados nos cantos */
.empreitada-deco-rect {
  position: absolute;
  z-index: 2;
  width: 140px;
  height: 108px;
  border: 1.5px solid #F5B800;
  opacity: 0.15;
  pointer-events: none;
}

.empreitada-deco-rect--tl {
  top: 2.25rem;
  left: 2.25rem;
}

.empreitada-deco-rect--br {
  bottom: 2.25rem;
  right: 2.25rem;
}

/* Camada 2 — linhas paralelas verticais no canto direito */
.empreitada-deco-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(245, 184, 0, 0.08) 18px,
    rgba(245, 184, 0, 0.08) 19px
  );
}

/* Camada 3 — conteúdo (acima de todos os decorativos) */
.empreitada-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
  text-align: center;
}

.empreitada-label {
  display: inline-block;
  background: var(--lcsj-yellow);
  color: var(--lcsj-black);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.empreitada-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--lcsj-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.empreitada-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 2.25rem;
  margin-inline: auto;
}

/* ================================================================
   SERVIÇOS REALIZADOS (portfolio)
   ================================================================ */
.section-portfolio {
  background: #111111;
  padding-block: 5rem;
}

.section-portfolio .section-label { text-align: center; }
.section-portfolio .section-title { color: var(--lcsj-white); margin-bottom: 2.5rem; }

.portfolio-carousel {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 3.5rem;
}

.portfolio-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.portfolio-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.portfolio-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}

.portfolio-slide img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  cursor: pointer;
}


.portfolio-btn {
  position: absolute;
  top: 160px;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: var(--lcsj-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2;
}

.portfolio-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.55);
}

.portfolio-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.portfolio-prev { left: 0; }
.portfolio-next { right: 0; }

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.portfolio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.portfolio-dot.is-active {
  background: var(--lcsj-yellow);
  transform: scale(1.35);
}

/* ================================================================
   DIFERENCIAIS
   ================================================================ */
.section-differentials {
  background: var(--lcsj-white);
  padding-block: 5rem;
}

.section-differentials .section-title {
  margin-bottom: 3rem;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.differential-item { text-align: center; }

.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--lcsj-surface);
  border-radius: 50%;
  color: var(--lcsj-yellow);
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.differential-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.differential-item p {
  font-size: 0.9375rem;
  color: var(--lcsj-text-muted);
  line-height: 1.6;
}

/* ================================================================
   CLIENTES
   ================================================================ */
.section-clients {
  background: #111111;
  padding-top: 8rem;
  padding-bottom: 5.5rem;
  clip-path: polygon(0 5rem, 100% 0, 100% 100%, 0 100%);
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.section-clients .section-label {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-clients .section-title {
  color: var(--lcsj-white);
  margin-bottom: 0;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
}

.clients-title-bar {
  width: 3rem;
  height: 3px;
  background: var(--lcsj-yellow);
  margin: 0.875rem auto 2.75rem;
  border-radius: 2px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.client-card {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(245, 184, 0, 0.30);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow: hidden;
  /* estado inicial — oculto para animação JS */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color var(--transition),
    box-shadow var(--transition);
}

.client-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.client-card.is-visible:hover {
  border-color: var(--lcsj-yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(245, 184, 0, 0.12);
}

.client-order {
  position: absolute;
  top: -0.25rem;
  right: 0.875rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.client-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lcsj-white);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.clients-note {
  text-align: center;
  color: var(--lcsj-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.section-cta-banner {
  background: var(--lcsj-yellow);
  padding-block: 4rem;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  color: var(--lcsj-black);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.cta-banner-text p {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.7);
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ================================================================
   FORMULÁRIO
   ================================================================ */
.section-contact {
  background: var(--lcsj-surface);
  padding-block: 5rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading .section-title { margin-bottom: 0.75rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lcsj-text);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--lcsj-border);
  border-radius: var(--radius-btn);
  background: var(--lcsj-white);
  color: var(--lcsj-text);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BBBBBB;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lcsj-yellow);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-privacy {
  font-size: 0.8125rem;
  color: var(--lcsj-text-muted);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
}

.form-feedback.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}

.form-feedback.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.btn-submit { min-width: 280px; justify-content: center; }
.btn-submit[disabled] { opacity: 0.65; cursor: not-allowed; }

/* ================================================================
   FOOTER
   ================================================================ */
.lcsj-footer {
  background: var(--lcsj-black-deep);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--lcsj-border-dark);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--lcsj-text-muted);
  margin-top: 0.75rem;
  max-width: 36ch;
  line-height: 1.5;
}

.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--lcsj-text-light);
  margin-bottom: 0.625rem;
}

.footer-contacts a {
  color: var(--lcsj-text-light);
  transition: color var(--transition);
}

.footer-contacts a:hover { color: var(--lcsj-yellow); }

.footer-contacts svg { flex-shrink: 0; color: var(--lcsj-yellow); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--lcsj-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--lcsj-white); }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link svg { flex-shrink: 0; color: var(--lcsj-yellow); }

.footer-copy {
  padding-block: 1.25rem;
}

.footer-copy p {
  font-size: 0.8125rem;
  color: var(--lcsj-text-muted);
  text-align: center;
}

/* ================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ================================================================ */
.wa-float-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.875rem 1.375rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.wa-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.wa-float-btn svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .wa-float-btn { bottom: 1.25rem; right: 1.25rem; padding: 0.875rem; }
  .wa-float-label { display: none; }
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lcsj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lcsj-lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img-wrap img {
  display: block;
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.55);
  color: var(--lcsj-white);
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}

.lightbox-close:hover { background: rgba(0, 0, 0, 0.85); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: var(--lcsj-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 1;
}

.lightbox-nav:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.80);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-nav:disabled { opacity: 0.2; cursor: default; }

.lightbox-lft { left: 1rem; }
.lightbox-rgt { right: 1rem; }

/* ================================================================
   POLÍTICA DE PRIVACIDADE
   ================================================================ */
.pp-page {
  background: #111111;
  min-height: 100vh;
  padding-top: 88px; /* compensa header fixo */
}

.pp-inner {
  max-width: 860px;
  margin-inline: auto;
  padding: 4rem 1.5rem 5rem;
}

.pp-header {
  margin-bottom: 3rem;
}

.pp-header .section-label {
  margin-bottom: 0.5rem;
}

.pp-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--lcsj-white);
  line-height: 1.15;
  margin-bottom: 0;
}

.pp-title-bar {
  width: 3rem;
  height: 3px;
  background: var(--lcsj-yellow);
  margin-top: 1rem;
  border-radius: 2px;
}

.pp-content p {
  color: #aaaaaa;
  font-size: 0.9875rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pp-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lcsj-yellow);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245, 184, 0, 0.20);
}

.pp-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.pp-content ul li {
  color: #aaaaaa;
  font-size: 0.9875rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.pp-content ul li strong {
  color: var(--lcsj-white);
}

.pp-effective {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

.pp-effective strong {
  color: rgba(255, 255, 255, 0.65);
}

.pp-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================================================
   MODAL WHATSAPP
   ================================================================ */
.wa-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wa-modal-backdrop.is-open {
  display: flex;
  animation: backdropIn 0.2s ease;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wa-modal {
  background: var(--lcsj-white);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  color: var(--lcsj-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.wa-modal-close:hover {
  color: var(--lcsj-text);
  background: var(--lcsj-surface);
}

.wa-modal-icon {
  color: #25D366;
  margin-bottom: 1rem;
}

.wa-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--lcsj-text);
}

.wa-modal-sub {
  font-size: 0.9rem;
  color: var(--lcsj-text-muted);
  margin-bottom: 1.5rem;
}

.wa-modal .form-group { margin-bottom: 1rem; }

.wa-modal-error {
  font-size: 0.875rem;
  color: #991B1B;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-btn);
  padding: 0.625rem 0.875rem;
  margin-bottom: 1rem;
}

.wa-modal-submit {
  width: 100%;
  justify-content: center;
  background: #25D366;
  border-color: #25D366;
  color: var(--lcsj-white);
}

.wa-modal-submit:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
}

body.modal-open { overflow: hidden; }
