/* ═══════════════════════════════════════════════════════════════════════════
   Finanzas Empresariales — Estilos de casa premium
   Paleta: tinta de medianoche · oro antiguo · marfil · champagne
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink: #0c1524;
  --ink-mid: #152238;
  --ink-soft: #24344c;
  --gold: #c4a35a;
  --gold-light: #d4bc7d;
  --gold-dark: #9a7a38;
  --ivory: #f7f3eb;
  --paper: #efe8d9;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #1c1914;
  --muted: #5c564c;
  --line: rgba(12, 21, 36, 0.12);
  --line-gold: rgba(196, 163, 90, 0.45);
  --overlay: rgba(8, 14, 24, 0.62);
  --overlay-heavy: rgba(8, 14, 24, 0.82);
  --shadow: 0 18px 50px rgba(12, 21, 36, 0.12);
  --shadow-lg: 0 28px 70px rgba(12, 21, 36, 0.2);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 88px;
  --max: 1220px;
  --radius: 2px;
  --ease: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--ink);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

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

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

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.85;
}

.section-head {
  margin-bottom: 3.5rem;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0 1.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  min-height: 44px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 163, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(247, 243, 235, 0.55);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-whatsapp {
  background: #128c7e;
  color: var(--white);
  border-color: #128c7e;
}

.btn-whatsapp:hover {
  background: #075e54;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.7rem 1.2rem;
  font-size: 0.7rem;
}

.hero-actions .btn-outline {
  color: var(--ivory);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--ease), box-shadow var(--ease), height var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--ease);
  pointer-events: none;
}

.site-header.scrolled::before,
.legal-header .site-header::before,
body.legal-header .site-header::before {
  background: rgba(12, 21, 36, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 10px 32px rgba(8, 14, 24, 0.35);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  color: var(--ivory);
}

.brand-logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.18);
}

.logo-sello {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  filter: none;
}

.hero-brand-lockup {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 0 0 1.6rem;
  border-radius: 6px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  box-shadow: 0 22px 60px rgba(8, 14, 24, 0.45);
}

.exec-featured {
  max-width: 760px;
  margin: 0 auto 2.8rem;
}

.exec-featured img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}

.contact-exec-logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1.4rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
}

.footer-logo {
  width: min(100%, 280px);
  height: auto;
  display: block;
  margin: 0 0 1rem;
  border-radius: 4px;
  border: 1px solid rgba(196, 163, 90, 0.28);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 500;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-principal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-principal ul {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.nav-principal a {
  color: rgba(247, 243, 235, 0.88);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  position: relative;
}

.nav-principal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-principal a:hover,
.nav-principal a:focus {
  color: var(--gold-light);
}

.nav-principal a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(196, 163, 90, 0.45);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 3;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.82) 0%, rgba(8, 14, 24, 0.45) 55%, rgba(8, 14, 24, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 14, 24, 0.35) 0%, transparent 35%, rgba(8, 14, 24, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: calc(var(--header-h) + 3rem) 8vw 6rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--line-gold);
  padding: 0.4rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-slogan {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(247, 243, 235, 0.82);
  max-width: 560px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.hero-site-url {
  margin: 0 0 1.75rem;
}

.hero-site-url a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.hero-site-url a:hover {
  background: rgba(196, 163, 90, 0.22);
  color: var(--ivory);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-indicators {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-indicator.active {
  background: var(--gold);
  transform: scale(1.25);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 8vw;
  z-index: 3;
  color: var(--ivory);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── Reveal ── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── About ── */
.about-hero {
  background: var(--ink);
  color: var(--ivory);
  padding: 5.5rem 0 4.5rem;
}

.about-hero .section-title,
.about-hero h2 {
  color: var(--ivory);
}

.about-hero-lead {
  font-size: 1.18rem;
  max-width: 820px;
  color: rgba(247, 243, 235, 0.82);
  line-height: 1.85;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 4.5rem;
}

.about-visual {
  position: relative;
}

.about-visual-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.92);
  transition: transform 0.7s ease;
}

.about-visual:hover .about-visual-frame img {
  transform: scale(1.04);
}

.about-visual-frame {
  overflow: hidden;
  border: 1px solid var(--line-gold);
}

.about-visual-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(12, 21, 36, 0.88);
  color: var(--ivory);
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
}

.about-copy p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.about-copy h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  margin: 1.75rem 0 0.75rem;
  font-weight: 500;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

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

.about-fact {
  border-top: 1px solid var(--gold);
  padding-top: 1rem;
}

.about-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--ink);
  font-weight: 500;
}

.about-fact span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Split mission / vision ── */
.mv-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}

.mv-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mv-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.mv-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--ink);
  color: var(--ivory);
}

.mv-copy.light {
  background: var(--paper);
  color: var(--text);
}

.mv-copy.light h2,
.mv-copy.light .section-title {
  color: var(--ink);
}

.mv-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.mv-copy p {
  color: rgba(247, 243, 235, 0.82);
  font-size: 1.05rem;
  max-width: 520px;
}

.mv-copy.light p {
  color: var(--muted);
}

.mv-reverse .mv-visual {
  order: 2;
}

/* ── Timeline ── */
.history-section {
  background: var(--cream);
}

.timeline {
  position: relative;
  padding: 1rem 0 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-gold);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border: 2px solid var(--ivory);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0.35rem 0 0.7rem;
  font-weight: 500;
}

.timeline-content p {
  color: var(--muted);
}

.timeline-image {
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.timeline-image:hover img {
  transform: scale(1.08);
}

/* ── Values ── */
.values-section {
  background: var(--ink);
  color: var(--ivory);
}

.values-section .section-title,
.values-section h2 {
  color: var(--ivory);
}

.values-section .section-lead {
  color: rgba(247, 243, 235, 0.72);
}

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

.value-card {
  border: 1px solid rgba(196, 163, 90, 0.28);
  padding: 2rem 1.6rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
}

.value-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--ivory);
}

.value-card p {
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.95rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  overflow: hidden;
  height: 210px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 1.6rem 1.5rem 1.8rem;
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Process ── */
.process-section {
  background: var(--paper);
}

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

.process-step {
  padding: 1.8rem 1.3rem;
  background: var(--white);
  border-top: 2px solid var(--gold);
  transition: transform var(--ease);
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Stats ── */
.stats-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--ivory);
  padding: 6.5rem 0;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-heavy);
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 235, 0.78);
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 210px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  min-height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 210px;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 21, 36, 0.78));
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  opacity: 0;
  transition: opacity var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 24, 0.94);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  transition: background var(--ease);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--ink);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ── Team ── */
.team-section {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card--lead {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.team-card--lead .team-photo {
  height: 320px;
}

.team-card--lead .team-photo img {
  filter: none;
  object-position: center 12%;
}

.team-photo {
  overflow: hidden;
  height: 280px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.07);
  filter: grayscale(0);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 1.15rem 1.15rem 0.2rem;
  color: var(--ink);
  font-weight: 500;
}

.team-card > p {
  padding: 0 1.15rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-bio {
  padding: 0.7rem 1.15rem 1.4rem !important;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ── Testimonials ── */
.testimonials-section {
  background: var(--ink);
  color: var(--ivory);
}

.testimonials-section .section-title {
  color: var(--ivory);
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0.5rem 0 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  max-width: 860px;
  color: var(--ivory);
  margin-bottom: 1.6rem;
}

.testimonial-author {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.testimonial-role {
  color: rgba(247, 243, 235, 0.65);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
}

/* ── Sectors ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.sector-card {
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color var(--ease), transform var(--ease);
}

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

.sector-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sector-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ── FAQ ── */
.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.35rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-icon {
  color: var(--gold-dark);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 420px;
  padding-bottom: 1.3rem;
}

.faq-answer p {
  color: var(--muted);
}

/* ── CTA bands ── */
.cta-band {
  position: relative;
  padding: 5.5rem 0;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-heavy);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(247, 243, 235, 0.82);
}

.cta-band .hero-actions {
  justify-content: center;
}

.cta-band-ink {
  background: var(--ink);
  text-align: left;
}

.cta-band-ink::before {
  display: none;
}

.cta-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

/* ── Contact ── */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--ink);
  color: var(--ivory);
  padding: 2.4rem 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: var(--ivory);
}

.contact-row {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
}

.contact-row span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.contact-row a,
.contact-row p {
  color: var(--ivory);
}

.campaign-id {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.contact-form {
  background: var(--white);
  padding: 2.2rem;
  border: 1px solid var(--line);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--text);
  font-size: 1rem;
  transition: border-color var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1.2rem 0;
}

.form-check input {
  margin-top: 0.3rem;
  accent-color: var(--gold-dark);
}

.form-error {
  display: none;
  color: #8a2a2a;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: #e8f0e6;
  color: #1e4d32;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid #2d6a4f;
}

.form-success.visible {
  display: block;
}

.map-embed {
  margin-top: 3rem;
  min-height: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ── Footer ── */
.site-footer {
  background: #080e18;
  color: rgba(247, 243, 235, 0.78);
  padding: 4.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.footer-brand .brand-name {
  font-size: 1.45rem;
}

.footer-brand p {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  max-width: 280px;
}

.site-footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-campaign {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 1400;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ── Cookies ── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 4000;
  background: var(--ink);
  color: var(--ivory);
  padding: 1.4rem 1.6rem;
  display: none;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
  max-width: 720px;
  margin: 0 auto;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: rgba(247, 243, 235, 0.75);
  margin-bottom: 1rem;
}

.cookie-banner .btn-outline {
  color: var(--ivory);
  border-color: var(--gold);
}

.cookie-banner .btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 24, 0.72);
  z-index: 4100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-inner {
  background: var(--ivory);
  color: var(--text);
  max-width: 520px;
  width: 100%;
  padding: 2rem 1.7rem;
  border: 1px solid var(--gold);
}

.cookie-modal-inner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.cookie-opt {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cookie-opt small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── Legal pages ── */
.legal-page {
  padding: calc(var(--header-h) + 3.5rem) 0 5rem;
  background: var(--ivory);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.legal-updated {
  color: var(--gold-dark);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2.2rem 0 0.8rem;
  font-weight: 500;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 0.5rem;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
  padding-top: calc(var(--header-h) + 4rem);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--ivory);
}

/* ── Culture band ── */
.culture-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.culture-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.culture-visual {
  overflow: hidden;
}

.culture-visual:hover img {
  transform: scale(1.05);
}

.culture-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.culture-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-principal ul {
    gap: 0.7rem;
  }
  .services-grid,
  .values-grid,
  .team-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(200px, 0.9fr) 1.1fr;
    align-items: stretch;
  }
  .team-card--lead .team-photo {
    grid-row: 1 / span 4;
    height: 100%;
    min-height: 280px;
  }
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-principal {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 24, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-principal.open {
    transform: none;
  }

  .nav-principal ul {
    flex-direction: column;
    text-align: center;
    gap: 1.1rem;
  }

  .nav-principal a {
    font-size: 0.95rem;
  }

  .about-grid,
  .mv-block,
  .contact-grid,
  .culture-grid,
  .cta-split,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .mv-reverse .mv-visual {
    order: 0;
  }

  .mv-visual {
    background-attachment: scroll;
    min-height: 320px;
  }

  .mv-copy {
    padding: 3rem 1.6rem;
  }

  .timeline::before,
  .timeline-dot {
    left: 12px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    order: 0;
  }

  .timeline-content,
  .timeline-image {
    padding-left: 2rem;
  }

  .hero-indicators {
    right: auto;
    left: 8vw;
    top: auto;
    bottom: 5.5rem;
    flex-direction: row;
    transform: none;
  }

  .stats-section,
  .section--parallax,
  .cta-band {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .services-grid,
  .values-grid,
  .team-grid,
  .sectors-grid,
  .process-grid,
  .stats-grid,
  .about-facts,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-card--lead {
    display: block;
    grid-column: auto;
  }

  .hero-brand-lockup {
    width: 100%;
  }

  .brand-logo-img {
    width: 52px;
    height: 52px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    min-height: 220px;
  }

  .hero-content {
    padding: calc(var(--header-h) + 2rem) 1.4rem 5.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-form,
  .contact-card {
    padding: 1.4rem;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .brand-sub {
    display: none;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 1.2rem;
    transform: none;
  }

  .lightbox-prev {
    left: 1.2rem;
  }

  .lightbox-next {
    right: 1.2rem;
  }

  .pillars-grid,
  .gsc-steps,
  .gads-layout {
    grid-template-columns: 1fr;
  }

  .policy-strip {
    text-align: left;
    font-size: 0.78rem;
    padding: 0.75rem 1rem 0.75rem;
  }

  .hero-headline {
    font-size: 2.15rem;
  }

  .hero-site-url a {
    font-size: 0.72rem;
    word-break: break-all;
  }

  .nav-principal a {
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .cookie-banner {
    bottom: 5.2rem;
  }

  .about-visual-frame img {
    height: 280px;
  }

  .logo-sello {
    width: 160px;
  }
}

/* ── Intro, transparencia Ads y Search Console ── */
.policy-strip {
  background: #0a1018;
  color: rgba(247, 243, 235, 0.88);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 0.85rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line-gold);
}

.policy-strip strong {
  color: var(--gold-light);
  font-weight: 600;
}

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

.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem 1.8rem;
  transition: transform var(--ease), border-color var(--ease);
}

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

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.pillar-card p,
.pillar-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.pillar-card ul {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0.7rem 0 1.1rem;
}

.pillar-card li {
  margin-bottom: 0.35rem;
}

.gsc-box,
.gads-section {
  background: var(--paper);
}

.gsc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gsc-step {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.3rem;
}

.gsc-step span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gsc-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.gsc-step p,
.gsc-step li {
  color: var(--muted);
  font-size: 0.9rem;
}

.gsc-step ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.gads-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.4rem;
  align-items: start;
}

.gads-preview-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}

.gads-mock {
  background: #fff;
  padding: 1.2rem 1.35rem;
  border: 1px solid #dadce0;
  box-shadow: var(--shadow);
}

.gads-mock-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #202124;
  border: 1px solid #dadce0;
  padding: 0.1rem 0.35rem;
  margin-bottom: 0.45rem;
}

.gads-mock-url,
.gads-mock-url a {
  font-size: 0.8rem;
  color: #006621;
  margin-bottom: 0.3rem;
}

.gads-mock-title {
  font-size: 1.2rem;
  color: #1a0dab;
  margin-bottom: 0.4rem;
}

.gads-mock-desc {
  font-size: 0.88rem;
  color: #4d5156;
}

.gads-preview-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.85rem;
}

.gads-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gads-block-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.gads-block-title small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.gads-headlines-grid,
.gads-keywords-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gads-headline-chip,
.gads-keyword-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
}

.gads-chip-num,
.gads-kw-num {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
}

.gads-chip-count {
  color: var(--muted);
  font-size: 0.68rem;
}

.gads-desc-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  margin-bottom: 0.55rem;
}

.gads-desc-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.gads-checklist {
  list-style: none;
}

.gads-checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.gads-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

@media (max-width: 960px) {
  .pillars-grid,
  .gsc-steps,
  .gads-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-slide img,
  .reveal,
  .reveal-left,
  .reveal-right {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
