/* ==========================================================================
   MAIN.CSS - ESTILOS VISUALES Y COMPONENTES
   Marketing Innova - Sitio institucional de marketing digital y agentes AI
   ========================================================================== */

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.025em; overflow-wrap: break-word; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Insignias y tags */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.badge-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--secondary);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-surface-elevated);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Tarjetas y Contenedores Glassmorphism */
.innova-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.innova-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.innova-card-body {
  padding: 1.75rem;
}

/* HEADER Y NAVEGACIÓN */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.site-logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a:hover,
.site-nav .current-menu-item a {
  color: var(--text-primary);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-normal);
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.03) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* CIFRAS DESTACADAS (STATS) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* BLOQUE DE CASOS (PUBLICIDAD) */
.case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card .case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.case-card .case-metric {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-card .metric-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #10b981; /* Verde éxito métrico */
}

/* BLOQUE DE SERVICIOS AI */
.ai-service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ai-service-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-benefits-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-benefits-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.service-benefits-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 800;
}

.service-target {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.service-pricing {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TESTIMONIOS Y CITAS */
.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

.testimonial-metric-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* TABLA/FICHA DE CASOS DE PROYECTO */
.project-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.project-table th,
.project-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.project-table th {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-table tr:hover td {
  background: var(--bg-surface);
}

/* PERFIL CEO Y EMPRESA */
.ceo-spotlight {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
  min-height: 460px;
  padding: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.ceo-quote-box {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--primary);
  background: rgba(99, 102, 241, 0.06);
  font-style: italic;
  color: var(--text-primary);
}

/* CTA BANNER GLOBAL */
.cta-banner {
  text-align: center;
  padding: 4.5rem 2rem;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-xl);
  margin-top: 4.5rem;
}

/* FOOTER */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.social-icons-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ceo-spotlight {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.innova-review-notice {
  padding: 1rem 1.5rem;
  background: #fff4ce;
  color: #332600;
  text-align: center;
  font-size: 0.95rem;
}
.header-custom-logo, .header-default-logo, .footer-custom-logo {
  width: 200px;
  height: 68px;
  object-fit: contain;
}
a[aria-disabled="true"] { opacity: .65; cursor: not-allowed; }
:focus-visible { outline: 3px solid #135bc4; outline-offset: 4px; }
@media (max-width: 600px) {
  .nav-actions .btn-whatsapp span { display: none; }
  .nav-actions .btn-whatsapp { padding: .7rem; }
  .header-container { gap: .5rem; }
  .site-logo { min-width: 0; }
  .site-logo img { max-width: 160px; object-fit: contain; }
  .nav-actions { gap: .5rem; flex-shrink: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   NUEVOS COMPONENTES — REDISEÑO SEPTIEMBRE 2026
   ========================================================================== */

/* BANDA DE CONFIANZA (Logos blancos sobre fondo negro) */
.trust-band {
  background: #0a0a0a;
  padding: 2.5rem 0;
}

.trust-band-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.trust-logo-item:hover {
  opacity: 1;
}

/* ESPECIALIDADES PILL GROUP (en el hero) */
.specialties-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.specialty-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
}

.specialty-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* BLOQUE DE SERVICIOS (Portada) */
.services-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.services-home-grid.has-single-card {
  max-width: 680px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.service-home-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.service-home-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-home-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.service-home-items li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.service-home-items li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 800;
  flex-shrink: 0;
}

/* TARJETAS DE RESULTADOS */
.result-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.result-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.result-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.result-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.result-metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.result-metric {
  display: flex;
  flex-direction: column;
}

.result-metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.result-metric-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #10b981;
}

.result-metric-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* BOTÓN DE DIAGNÓSTICO (variante del CTA) */
.btn-diagnostico {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.btn-diagnostico:hover {
  background: var(--accent-gradient-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-diagnostico[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* SECCIÓN VACÍA: ocultar si no tiene contenido */
.section-hideable:empty {
  display: none;
}

/* HERO IDENTITY (nombre + cargo en el hero) */
.hero-identity {
  margin-bottom: 1rem;
}

.hero-identity-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-identity-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* RESPONSIVE - Nuevos componentes */
@media (max-width: 992px) {
  .services-home-grid {
    grid-template-columns: 1fr;
  }
  .trust-logos {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .specialties-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .result-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.publicidad-portrait {max-width: 420px; margin-bottom: 3rem;}
.challenges-grid {margin-bottom: 3rem; grid-auto-rows: 1fr;}
.challenges-grid h2, .challenges-grid h3, .challenge-card h2, .challenge-card h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.trajectory-grid {display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center;}
@media(max-width:768px){.trajectory-grid {grid-template-columns:1fr;} .nav-actions .btn-primary {padding:.6rem;font-size:.8rem;max-width:130px;}}

/* Footer compacto: referencia visual del cliente. */
.site-footer.footer-compact { background:#16181c; color:#b9bdc5; border-top:0; padding:0; }
.footer-compact-row { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding:2rem 0; }
.footer-compact .footer-wordmark { color:#fff; font-size:.95rem; font-weight:600; }
.footer-wordmark span { font-weight:400; }
.footer-compact .social-icons-group { display:flex; gap:.4rem; margin:0; }
.footer-compact .social-icon-btn { background:transparent; border:0; color:#b9bdc5; width:40px; height:40px; }
.footer-compact .social-icon-btn:hover { color:#fff; background:#272b32; transform:none; }
.footer-compact-links { display:flex; align-items:center; flex-wrap:wrap; gap:1.25rem; font-size:.85rem; }
.footer-compact-links a { color:#b9bdc5; }
.footer-compact-links a:hover { color:#fff; }
.footer-compact-bottom { border-top:1px solid #2b2e35; padding:1rem 0; text-align:center; }
.footer-compact-bottom p { margin:0; color:#a8adb7; font-size:.8rem; display:inline-flex; align-items:center; justify-content:center; gap:0.5rem; flex-wrap:wrap; }
.footer-version { font-size:0.75rem; opacity:0.45; letter-spacing:0.02em; font-family:var(--font-sans, inherit); }
@media(max-width:850px) { .footer-compact-row { flex-wrap:wrap; justify-content:center; padding:1.5rem 0; gap:.75rem 1.5rem; } .footer-compact-links { justify-content:center; } }
@media(max-width:520px) { .footer-compact-row { flex-direction:column; } .footer-compact-links { gap:1rem; font-size:.8rem; } }
button.video-thumb-wrapper { display:block; width:100%; border:0; padding:0; background:none; cursor:pointer; text-align:inherit; }
.innova-video-dialog { margin:auto; padding:1rem; width:min(900px,calc(100% - 2rem)); max-height:90dvh; overflow:auto; border:0; border-radius:16px; background:#16181c; color:#fff; }
.innova-video-dialog::backdrop { background:rgba(0,0,0,.8); }
.innova-video-header {display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1rem;}
.innova-video-header h2 {color:#fff; font-size:1.1rem; margin:0;}
.innova-video-header button {flex-shrink:0; width:44px; height:44px; color:#fff; background:#30343c; border:0; border-radius:8px; cursor:pointer; font-size:1.75rem;}
.innova-video-content iframe {display:block; width:100%; aspect-ratio:16/9; min-height:200px; border:0;}
.innova-video-content p {color:#d1d5db; padding:1.5rem .5rem;}
.innova-video-external {display:inline-block; color:#bfdbfe; margin-top:1rem; text-decoration:underline;}
.innova-video-external[hidden] {display:none;}
