/* Obras Digitales — estilos compartidos (home, /terminos, /privacidad) */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

@keyframes odFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

body {
  margin: 0;
  background: #f8fafc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1e293b;
  line-height: 1.5;
}

a { color: #2f5fa8; text-decoration: none; }
a:hover { color: #1f4680; text-decoration: underline; }
::selection { background: #dbe7f6; }
img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header / Nav ---------- */

.od-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.od-header.is-scrolled {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.od-header__bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}

.od-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  flex: none;
}
.od-logo:hover {
  color: #fff;
  text-decoration: none;
}
.od-logo__icon {
  width: 104px;
  height: 104px;
  margin: -28px;
  flex: none;
  border-radius: 8px;
  transition: filter 0.25s ease;
}
.od-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.od-logo:hover .od-logo__icon {
  filter: drop-shadow(0 0 8px rgba(143, 179, 230, 0.9)) drop-shadow(0 0 16px rgba(47, 95, 168, 0.7));
}
.od-logo__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  width: fit-content;
}
.od-logo__tag { font-size: 11px; color: #cbd5e1; font-weight: 500; margin-top: 2px; }

.od-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.od-nav a { color: #cbd4e6; font-size: 14.5px; font-weight: 500; }
.od-nav a svg { display: none; }

/* Subrayado animado de izquierda a derecha para el título del logo y enlaces del navbar */
.od-logo__name,
.od-nav a {
  position: relative;
  text-decoration: none;
}
.od-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.od-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.od-logo__name::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.od-logo:hover .od-logo__name::after,
.od-nav a:hover::after {
  transform: scaleX(1);
}

.od-header__actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { text-decoration: none; }
.btn--light { background: #fff; color: #16213a; }
.btn--light:hover {
  background: #eef1f6;
  color: #16213a;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45)) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.25));
}
.btn--primary { background: #2563eb; color: #fff; }
.btn--primary:hover {
  background: #1d4ed8;
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.45)) drop-shadow(0 2px 8px rgba(37, 99, 235, 0.25));
}
.btn--gradient {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.btn--gradient:hover {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.6));
}
.btn--outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15)) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.08));
}
.btn--lg { padding: 14px 26px; border-radius: 8px; font-size: 15.5px; font-weight: 700; }

.od-nav-toggle {
  display: none;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100002;
}
.od-nav-toggle__icon,
.od-nav-toggle__icon::before,
.od-nav-toggle__icon::after {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.od-nav-toggle__icon { position: relative; }
.od-nav-toggle__icon::before,
.od-nav-toggle__icon::after { content: ''; position: absolute; left: 0; }
.od-nav-toggle__icon::before { top: -6px; }
.od-nav-toggle__icon::after { top: 6px; }
.od-header.is-open .od-nav-toggle__icon { background: transparent; }
.od-header.is-open .od-nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
.od-header.is-open .od-nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */

.od-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px 60px;
}
.od-hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background: #16213a;
}
.od-hero__bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroKenBurns 18s infinite linear;
}
.od-hero__bg-img:nth-child(1) { animation-delay: 0s; }
.od-hero__bg-img:nth-child(2) { animation-delay: 6s; }
.od-hero__bg-img:nth-child(3) { animation-delay: 12s; }

.od-hero__bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.od-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(16,24,39,0.7) 0%, rgba(16,24,39,0) 65%);
  z-index: 1;
  pointer-events: none;
}

@keyframes heroKenBurns {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1.02); }
  28% { opacity: 1; transform: scale(1.08); }
  33% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

.od-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px; width: 100%; margin: 0 auto; text-align: center;
}
@keyframes odBadgeGlow {
  0%, 100% {
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.1), 0 0 6px rgba(143, 179, 230, 0), inset 0 0 2px rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.15), 0 0 4px rgba(143, 179, 230, 0);
    border-color: rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.22), 0 0 11px rgba(143, 179, 230, 0.14), inset 0 0 3px rgba(255, 255, 255, 0.14);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.35), 0 0 6px rgba(143, 179, 230, 0.22);
    border-color: rgba(255, 255, 255, 0.28);
  }
}

.od-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd4e6;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: odBadgeGlow 4.2s ease-in-out infinite;
}
.od-hero__animated-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}
.od-hero__title-light {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
  color: #e2e8f4;
  margin-bottom: 8px;
}
.od-hero__title-bold {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.od-hero__words-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  box-sizing: content-box;
  height: 1.15em;
  text-align: left;
  padding: 0.8em 0.5em;
  margin: -0.8em -0.5em;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
}
.od-hero__word-ghost {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  font-weight: 700;
  padding-bottom: 0.15em;
}
@media (max-width: 800px) {
  .od-hero__title-bold { gap: 10px; }
}
.od-hero__word {
  position: absolute;
  left: 0.5em;
  font-weight: 700;
  color: #0ea5e9;
  text-shadow: 0 0 24px rgba(14, 165, 233, 0.4), 0 4px 12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(150%);
  padding-bottom: 0.15em;
}
.od-hero__word.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.0s ease, transform 1.0s cubic-bezier(0.4, 0.2, 0.32, 1.275);
}
.od-hero__word.is-hidden-up {
  opacity: 0;
  transform: translateY(-150%);
  transition: opacity 1.0s ease, transform 1.0s cubic-bezier(0.4, 0.2, 0.32, 1.275);
}
.od-hero__word.is-hidden-down {
  opacity: 0;
  transform: translateY(150%);
  transition: none;
}
.od-hero__lead {
  color: #cbd4e6;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 760px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}
.od-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.od-hero__stats {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.od-hero__stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b98b8;
  font-size: 13.5px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.85);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}
.od-hero__stats svg {
  flex: none;
}

/* ---------- Section headings ---------- */

.od-section { padding: 76px 24px; }
.od-section--alt { background: #f6f7f9; }
.od-section--white { background: #fff; }
.od-section--dark { background: #16213a; }
.od-eyebrow {
  color: #2f5fa8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.od-heading-block { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.od-heading-block h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; color: #16213a; }
.od-heading-block p { color: #5b667d; font-size: 16px; margin: 0; }

/* ---------- Producto / browser mockup ---------- */

@keyframes odTitleGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#producto .od-eyebrow,
#producto .od-heading-block p,
#caracteristicas .od-eyebrow,
#caracteristicas .od-heading-block p,
#faq .od-eyebrow,
#faq .od-heading-block p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}
#producto .od-heading-block h2,
#caracteristicas .od-heading-block h2,
#faq .od-heading-block h2 {
  background: linear-gradient(135deg, #16213a 0%, #244b87 35%, #1e355e 65%, #16213a 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: odTitleGradient 8s ease-in-out infinite;
}

.od-carousel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.od-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(15, 23, 42, 0.05);
}
.od-carousel__img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.od-carousel__img.is-active {
  opacity: 1;
}
.od-carousel__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.od-carousel__btn {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
  font-family: inherit;
}
.od-carousel__btn:hover {
  background: #f1f5f9;
}
.od-carousel__btn.is-active {
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.od-carousel__btn-content {
  position: relative;
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.od-carousel__btn.is-active .od-carousel__btn-content {
  opacity: 1;
}
.od-carousel__btn h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #0f172a;
}
.od-carousel__btn p {
  font-size: 13.5px;
  margin: 0;
  color: #475569;
  line-height: 1.4;
}
.od-carousel__progress {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent;
  z-index: 1;
}
.od-carousel__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #0ea5e9;
}

@media (max-width: 900px) {
  .od-carousel__nav { grid-template-columns: repeat(2, 1fr); }
  .od-carousel__viewport { max-height: 400px; }
}
@media (max-width: 600px) {
  .od-carousel__nav { grid-template-columns: 1fr; }
  .od-carousel__viewport { aspect-ratio: 4 / 3; }
}

/* ---------- Features grid ---------- */

.od-section--dark-blue { background: #0f172a; }
.od-bento-header {
  text-align: center;
  margin-bottom: 56px;
}
.od-bento-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
}
.od-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.od-bento-cell {
  padding: 48px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.od-bento-cell:nth-child(3n) { border-right: none; }
.od-bento-cell:nth-last-child(-n+3) { border-bottom: none; }
.od-bento-cell h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fafafa;
  margin: 0 0 12px;
}
.od-bento-cell p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
}
@media (max-width: 900px) {
  .od-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .od-bento-cell:nth-child(3n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .od-bento-cell:nth-child(2n) { border-right: none; }
  .od-bento-cell:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .od-bento-cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .od-bento-grid { grid-template-columns: 1fr; }
  .od-bento-cell:nth-child(2n) { border-right: none; }
  .od-bento-cell:nth-child(n) { border-right: none; }
  .od-bento-cell:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .od-bento-cell:last-child { border-bottom: none; }
}

/* ---------- Precios ---------- */

.od-section--velaris {
  position: relative;
  background: #020617;
  overflow: hidden;
}
.od-velaris-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.od-pricing-card {
  background: #16213a;
  border-radius: 18px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.od-pricing-card--gradient {
  background: linear-gradient(135deg, #020617 0%, #1e3a8a 50%, #0ea5e9 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.od-pricing-card--gradient::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.od-pricing-card .od-eyebrow { color: #8fb3e6; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 10px; }
.od-pricing-card h2 { color: #fff; font-size: 27px; font-weight: 800; margin: 0 0 14px; letter-spacing: -0.01em; }
.od-pricing-card p { color: #b7c1d9; font-size: 15px; line-height: 1.6; margin: 0; }
.od-pricing-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.od-pricing-list li { display: flex; gap: 10px; align-items: flex-start; color: #e3e8f2; font-size: 14.5px; }
.od-pricing-list li span { color: #6ee7a8; font-weight: 800; }
.od-pricing-note { text-align: center; color: #8a95ab; font-size: 13.5px; margin: 18px 0 0; }
.od-pricing-note a { font-weight: 600; }

/* ---------- FAQ ---------- */

.od-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.od-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: #16213a;
}
.od-faq-item summary::-webkit-details-marker { display: none; }
.od-faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: #2f5fa8;
  flex: none;
  line-height: 1;
}
.od-faq-item[open] summary::after { content: '−'; }
.od-faq-item__body { padding: 0 22px 20px; color: #5b667d; font-size: 14.5px; line-height: 1.6; }

/* ---------- Contacto ---------- */

.od-contact { max-width: 640px; margin: 0 auto; text-align: center; }
.od-contact h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.55);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.od-contact p {
  color: #b7c1d9;
  font-size: 16px;
  margin: 0 0 28px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.85);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

/* ---------- Footer ---------- */

.od-footer { background: #101827; padding: 48px 24px 28px; }
.od-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 32px;
}
.od-footer__brand { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.od-footer__desc { color: #8a95ab; font-size: 13.5px; line-height: 1.6; max-width: 320px; margin: 0; }
.od-footer__title { color: #cbd4e6; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.od-footer__links { display: flex; flex-direction: column; gap: 10px; }
.od-footer__links a, .od-footer__links button {
  color: #8a95ab; font-size: 13.5px; text-align: left; background: none; border: 0; padding: 0;
  font-family: inherit; cursor: pointer;
}
.od-footer__bottom {
  max-width: 1180px; margin: 0 auto; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.od-footer__bottom p { color: #5f6a80; font-size: 12.5px; margin: 0; }

/* ---------- Lightbox Modal ---------- */

.od-lightbox {
  position: fixed; inset: 0; background: rgba(16, 24, 39, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 100000;
  display: none; align-items: center; justify-content: center; padding: 24px; animation: odFadeIn 0.2s ease;
}
.od-lightbox.is-open { display: flex; }
.od-lightbox__content {
  max-width: 1460px; width: 96%; max-height: 95vh; display: flex; flex-direction: column;
  background: #16213a; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7); overflow: hidden; position: relative; z-index: 1;
}
.od-lightbox__head {
  padding: 16px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); display: flex;
  align-items: center; justify-content: space-between; flex: none; background: #1a2744;
}
.od-lightbox__title { color: #fff; font-size: 16px; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; }
.od-lightbox__close {
  background: rgba(255, 255, 255, 0.1); border: 0; width: 36px; height: 36px; border-radius: 8px;
  font-size: 18px; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex: none;
}
.od-lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }
.od-lightbox__body {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 24px;
  overflow: hidden; flex: 1; gap: 20px; position: relative; background: #0f172a;
}
.od-lightbox__img-container {
  flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; max-height: calc(95vh - 90px); overflow: auto; padding: 8px;
}
#lightbox-img {
  width: 100%; max-width: 100%; max-height: calc(95vh - 110px); object-fit: contain;
  border-radius: 8px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6); background: #fff; border: 1px solid rgba(255, 255, 255, 0.12);
  image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;
}
.od-lightbox__nav {
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.18); width: 44px; height: 44px;
  border-radius: 50%; color: #fff; font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex: none; transition: background 0.2s, transform 0.2s; line-height: 1;
}
.od-lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); transform: scale(1.08); }

/* ---------- Toast notification ---------- */

.od-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #16213a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}
.od-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.od-toast svg { flex: none; }
.od-toast__mobile { display: none; }

/* ---------- Páginas legales (/terminos, /privacidad) ---------- */

.od-legal { padding: 56px 24px 96px; background: #fff; }
.od-legal__inner { max-width: 760px; margin: 0 auto; }
.od-legal__inner > a.od-back { display: inline-block; margin-bottom: 24px; font-size: 14px; font-weight: 600; }
.od-legal__inner h1 { font-size: 28px; font-weight: 800; color: #16213a; margin: 0 0 6px; letter-spacing: -0.01em; }
.od-legal__updated { font-size: 12.5px; color: #8a95ab; margin: 0 0 32px; }
.od-legal__inner h2 { color: #16213a; font-size: 15px; font-weight: 700; margin: 26px 0 8px; }
.od-legal__inner p { font-size: 14px; color: #374156; line-height: 1.65; margin: 0 0 12px; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .od-features { grid-template-columns: repeat(2, 1fr); }
}

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

  .od-header.is-open {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(16, 24, 39, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: none;
    animation: odFadeIn 0.25s ease;
    overflow: hidden;
  }
  .od-header.is-open .od-header__bar {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 68px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
  }
  .od-header.is-open .od-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(14px, 2.5vh, 24px);
    padding: clamp(20px, 4vh, 48px) 24px clamp(28px, 5vh, 56px);
    overflow-y: auto;
    z-index: 10;
  }
  .od-header.is-open .od-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    width: 100%;
    max-width: 360px;
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f4;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: auto 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    animation: odMobileNavGlow 3.5s ease-in-out infinite;
    animation-delay: calc(var(--nav-i, 0) * 0.4s);
    flex: none;
  }
  .od-header.is-open .od-nav a:nth-child(1) { --nav-i: 0; }
  .od-header.is-open .od-nav a:nth-child(2) { --nav-i: 1; }
  .od-header.is-open .od-nav a:nth-child(3) { --nav-i: 2; }
  .od-header.is-open .od-nav a:nth-child(4) { --nav-i: 3; }
  .od-header.is-open .od-nav a:nth-child(5) { --nav-i: 4; }
  .od-header.is-open .od-nav a:hover {
    background: rgba(47, 95, 168, 0.18);
    color: #fff;
    border-color: rgba(143, 179, 230, 0.25);
  }
  .od-header.is-open .od-nav a::after { display: none; }
  .od-header.is-open .od-nav a svg {
    display: block;
    flex: none;
    width: 22px;
    height: 22px;
    opacity: 0.7;
  }

  @keyframes odMobileNavGlow {
    0%, 100% {
      box-shadow: 0 0 0 rgba(143, 179, 230, 0), 0 0 0 rgba(255, 255, 255, 0);
      border-color: rgba(255, 255, 255, 0.06);
    }
    50% {
      box-shadow: 0 0 10px rgba(143, 179, 230, 0.12), 0 0 4px rgba(255, 255, 255, 0.08);
      border-color: rgba(143, 179, 230, 0.18);
    }
  }

  .od-features { grid-template-columns: repeat(2, 1fr); }
  .od-shots { grid-template-columns: 1fr; }
  .od-pricing-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .od-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 60px; }
  .od-header__bar { height: 60px; }
  .od-hero {
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
    padding: 40px 18px;
  }
  .od-hero h1 { font-size: 30px; }
  .od-hero__lead { font-size: 16px; }
  .od-section { padding: 48px 18px; }
  .od-heading-block h2 { font-size: 26px; }
  .od-features { grid-template-columns: 1fr; }
  .od-contact h2 { font-size: 24px; }
  .od-pricing-card h2 { font-size: 22px; }
  .od-footer__bottom { flex-direction: column; }
  .od-legal { padding: 40px 16px 64px; }
  .od-legal__inner h1 { font-size: 23px; }
  .od-toast__desktop { display: none; }
  .od-toast__mobile { display: inline; }
}
