/* ============================================
   Direitos Trabalhistas - André Lima Advogados
   Design melhorado, acessível e responsivo
   ============================================ */

:root {
  --color-bg-dark: #0a0a0b;
  --color-bg-card: #141416;
  --color-bg-light: #f8f6f2;
  --color-text: #f0ede8;
  --color-text-dark: #1a1a1a;
  --color-accent: #c9a227;
  --color-accent-hover: #e0b82e;
  --color-accent-glow: rgba(201, 162, 39, 0.35);
  --color-whatsapp: #25d366;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-heading: "Libre Baskerville", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Reset margens da página (remove margem branca topo e laterais) */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Acessibilidade: tamanho base */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

html.a11y-font-up {
  font-size: 112.5%;
}
html.a11y-font-up-more {
  font-size: 125%;
}
html.a11y-font-down {
  font-size: 87.5%;
}
html.a11y-contrast {
  --color-bg-dark: #000;
  --color-text: #fff;
  --color-accent: #ffd700;
}
html.a11y-links-underline a:not(.cta) {
  text-decoration: underline;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--transition);
}
.skip-link:focus {
  top: var(--space-sm);
  outline: 2px solid var(--color-text-dark);
  outline-offset: 2px;
}

/* Barra de acessibilidade */
.a11y-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}
.a11y-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background var(--transition);
}
.a11y-toggle:hover {
  background: #1d4ed8;
}
.a11y-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.a11y-toolbar {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4px;
  padding: var(--space-sm);
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.a11y-toolbar[hidden] {
  display: none !important;
}
.a11y-toolbar button {
  padding: var(--space-xs) var(--space-sm);
  border: 0;
  border-radius: var(--radius);
  background: var(--color-bg-card);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition);
}
.a11y-toolbar button:hover {
  background: #2a2a2a;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: var(--space-md) var(--space-lg);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
}
.logo img {
  height: 72px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo img {
    height: 88px;
    max-width: 260px;
  }
}
.social-header {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}
.social-link {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  transition: opacity var(--transition), background var(--transition);
}
.social-link.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
}
.social-svg {
  width: 22px;
  height: 22px;
  display: block;
}
.social-link:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Imagem com significado: documento/contrato e direitos trabalhistas */
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-video.is-loaded {
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin: 0 0 var(--space-md);
  animation: fadeInDown 0.6s ease both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0 0 var(--space-lg);
  animation: fadeInUp 0.6s 0.2s ease both;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--color-accent-glow);
}
.cta:focus-visible {
  outline: 2px solid var(--color-text-dark);
  outline-offset: 3px;
}
.cta-hero {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px var(--color-accent-glow);
  animation: fadeInUp 0.6s 0.3s ease both;
}
.cta-icon {
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.hero-urgency {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: var(--space-md) 0 0;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.hero-scroll {
  display: inline-block;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  animation: fadeInUp 0.6s 0.5s ease both;
}
.hero-scroll:hover {
  color: var(--color-accent);
  transform: translateY(2px);
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0.25rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E")
    center/contain no-repeat;
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats (prova social) */
.section-stats {
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(
    180deg,
    var(--color-bg-dark) 0%,
    var(--color-bg-card) 100%
  );
  border-bottom: 1px solid var(--color-border);
}
.container-stats {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stat {
  padding: var(--space-md);
}
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .container-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* VSL: Assista ao vídeo */
.section-vsl {
  background: var(--color-bg-dark);
  color: var(--color-text);
}
.section-vsl .container {
  text-align: center;
}
.vsl-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.vsl-title {
  margin-bottom: var(--space-sm) !important;
}
.vsl-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.5;
}
/* Player: container com altura fixa (16/9); poster e vídeo sobrepostos no mesmo lugar */
.vsl-player {
  position: relative;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: #000;
}
.vsl-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-card);
  cursor: pointer;
  outline: none;
  z-index: 1;
}
.vsl-poster[hidden] {
  display: none;
}
.vsl-poster:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent);
}
.vsl-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vsl-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), background var(--transition);
}
.vsl-play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--color-bg-dark);
}
.vsl-poster:hover .vsl-play-btn {
  transform: scale(1.08);
  background: #fff;
}
.vsl-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
}
.vsl-video-wrap[hidden] {
  display: none !important;
}
.vsl-video-wrap video,
.vsl-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vsl-iframe {
  object-fit: contain;
}
.vsl-cta-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-bottom: var(--space-md);
}
.vsl-cta-text + .cta {
  display: inline-flex;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: var(--space-2xl) var(--space-lg);
}
.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text);
}
.section-dark .container {
  text-align: center;
}
.section-dark .section-intro {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.section-dark .card {
  text-align: left;
}
.section-light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}
.section-contact {
  background: var(--color-bg-card);
  color: var(--color-text);
}
.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  box-sizing: border-box;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 var(--space-xl);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title-sm {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 var(--space-lg);
  line-height: 1.3;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  text-align: center;
  margin: -var(--space-md) 0 var(--space-xl);
  opacity: 0.9;
}
.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}
.section-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 640px;
  margin: -var(--space-md) auto var(--space-xl);
  line-height: 1.6;
}
.section-cta-urgency {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.urgency-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-md);
}
.trust-line {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: -var(--space-sm) 0 var(--space-md);
}

/* Cards de consequências */
.cards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}
.card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(201, 162, 39, 0.1);
  transform: translateY(-2px);
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--color-text);
}

/* Vídeo de conteúdo */
.section-video {
  background: var(--color-bg-dark);
  color: var(--color-text);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
}
.content-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* O escritório - split */
.container-split {
  max-width: 900px;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .container-split {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.split-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.split-content .section-title {
  text-align: left;
}
.prose {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 var(--space-lg);
}
.prose p {
  margin: 0 0 var(--space-md);
}
.prose p:last-child {
  margin-bottom: 0;
}

/* Depoimentos – vídeo */
.depoimentos-video {
  position: relative;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: #000;
}
.depoimentos-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Depoimentos */
.testimonials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.testimonial {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.testimonial-rating {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-right: 0.25rem;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 var(--space-md);
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  font-style: normal;
}

/* Contato */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
}
.contact-list a {
  color: var(--color-accent);
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.contact-map {
  position: relative;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: var(--color-bg-dark);
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-link {
  margin: var(--space-sm) 0 0;
  font-size: 0.9rem;
}
.contact-map-link a {
  color: var(--color-accent);
  text-decoration: none;
}
.contact-map-link a:hover {
  text-decoration: underline;
}
.section-contact .container {
  text-align: center;
}
.section-contact .cta {
  margin: var(--space-xl) auto 0;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}
.footer-social-link:hover {
  color: var(--color-accent-hover);
  background: rgba(201, 162, 39, 0.15);
  transform: translateY(-2px);
}
.footer-social-svg {
  width: 24px;
  height: 24px;
  display: block;
}
.footer-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  margin: 0 0 var(--space-md);
  opacity: 0.9;
}
.footer-legal,
.footer-disclaimer,
.footer-credit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin: 0 0 var(--space-xs);
  opacity: 0.8;
}
.footer-credit a {
  color: var(--color-accent);
  text-decoration: none;
}
.footer-credit a:hover {
  text-decoration: underline;
}

/* WhatsApp flutuante */
.fab-whatsapp {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-whatsapp);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.fab-whatsapp:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.fab-icon {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
@media (max-width: 480px) {
  .fab-label {
    display: none;
  }
  .fab-whatsapp {
    padding: 1rem;
  }
}

/* Scroll reveal (animação ao entrar na tela) */
.section-reveal .section-title,
.section-reveal .section-intro,
.section-reveal .section-subtitle {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-reveal.is-visible .section-title,
.section-reveal.is-visible .section-intro,
.section-reveal.is-visible .section-subtitle {
  opacity: 1;
  transform: translateY(0);
}
.card-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.card-reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.card-reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.card-reveal:nth-child(3) {
  transition-delay: 0.15s;
}
.card-reveal:nth-child(4) {
  transition-delay: 0.2s;
}
.card-reveal:nth-child(5) {
  transition-delay: 0.25s;
}
.card-reveal:nth-child(6) {
  transition-delay: 0.3s;
}
.section-reveal.is-visible .card-reveal {
  opacity: 1;
  transform: translateY(0);
}
.testimonial {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-reveal.is-visible .testimonial:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}
.section-reveal.is-visible .testimonial:nth-child(2) {
  transition-delay: 0.08s;
  opacity: 1;
  transform: translateY(0);
}
.section-reveal.is-visible .testimonial:nth-child(3) {
  transition-delay: 0.16s;
  opacity: 1;
  transform: translateY(0);
}
.section-reveal.is-visible .testimonial:nth-child(4) {
  transition-delay: 0.24s;
  opacity: 1;
  transform: translateY(0);
}
