.elementor-1564 .elementor-element.elementor-element-5c1cb46a{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1564 .elementor-element.elementor-element-5c1cb46a.e-con{--align-self:center;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1564 .elementor-element.elementor-element-0c2867a{width:100%;max-width:100%;}.elementor-1564 .elementor-element.elementor-element-0c2867a.elementor-element{--align-self:center;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-5c1cb46a *//* ── VARIABLES ── */
:root {
  --blanco: #ffffff;
  --fondo: #f4f5f7;
  --azul: #1a2a6c;
  --rojo: #c0392b;
  --gris-texto: #4a5568;
  --gris-linea: rgba(26,42,108,0.12);
  --negro-texto: #111827;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--fondo);
  color: var(--negro-texto);
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 0 7vw 5rem;
  overflow: hidden;
  background: var(--blanco);
}

/* Banda azul diagonal — izquierda (igual que en la portada) */
.hero-deco-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: var(--azul);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
}

/* Banda roja diagonal — esquina superior derecha */
.hero-deco-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 52%;
  background: var(--rojo);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Banda gris — esquina inferior derecha */
.hero-deco-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 50%;
  background: #d1d5db;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
  z-index: 1;
  opacity: 0.45;
}

/* Línea roja inferior */
.hero-linea-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--rojo);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin-left: 90px;
}

.hero-etiqueta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 1.25rem;
}

.hero-etiqueta::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  color: var(--azul);
}

.hero h1 span {
  color: var(--rojo);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gris-texto);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gris-texto);
  border-top: 2px solid var(--azul);
  padding-top: 1.25rem;
}

.hero-meta strong {
  display: block;
  color: var(--azul);
  font-weight: 600;
  font-size: 14px;
}

.hero-meta-sep {
  width: 1px;
  height: 28px;
  background: var(--gris-linea);
}

/* ── PDF VIEWER ── */
.pdf-section {
  padding: 4rem 7vw 5rem;
  background: var(--fondo);
}

.pdf-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 1rem;
}

.pdf-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--rojo);
}

.pdf-marco {
  border: 1px solid var(--gris-linea);
  border-top: 3px solid var(--azul);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.pdf-marco iframe {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  border: none;
}

.pdf-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.link-abrir {
  font-size: 13px;
  color: var(--gris-texto);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.link-abrir:hover { color: var(--azul); }

.link-abrir svg { width: 14px; height: 14px; }

/* ── CIERRE ── */
.cierre {
  position: relative;
  overflow: hidden;
  padding: 5rem 7vw 5rem calc(7vw + 90px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  background: var(--azul);
}

/* Banda roja diagonal derecha — espejo de la portada */
.cierre::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  background: var(--rojo);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

/* Banda azul oscuro izquierda */
.cierre::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  background: rgba(0,0,0,0.2);
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  z-index: 0;
}

.cierre-texto {
  position: relative;
  z-index: 1;
}

.cierre-texto h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
  color: var(--blanco);
}

.cierre-texto h2 span {
  color: #f9c74f;
}

.cierre-texto p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  line-height: 1.7;
}

.cierre-botones {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blanco);
  color: var(--azul);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--blanco);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.btn-primary svg,
.btn-secondary svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer-simple {
  border-top: 3px solid var(--rojo);
  padding: 1.5rem 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 12px;
  color: #9ca3af;
  background: var(--blanco);
}

.footer-simple a {
  color: var(--gris-texto);
  text-decoration: none;
  transition: color .2s;
}

.footer-simple a:hover { color: var(--rojo); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero-content { margin-left: 60px; }
  .hero-deco-tl { width: 50px; }
  .hero-deco-tr,
  .hero-deco-br { width: 120px; }
  .cierre {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  .cierre::before { display: none; }
  .cierre-botones { flex-direction: row; flex-wrap: wrap; }
}
.cierre-texto {
	color: #ffffff;
}
.pqf-cierre-bts {
	display: flex;
	flex-direction: column;
	gap: .7rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.pqf-btn-prim {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #ffffff;
	color: var(--tf-azul);
	font-family: 'Sora', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
	padding: .8rem 1.6rem;
	border-radius: 2px;
	white-space: nowrap;
	transition: background .2s, transform .15s;
}
.pqf-btn-sec {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: transparent;
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
	padding: .8rem 1.6rem;
	border-radius: 2px;
	border: 1px solid rgba(255,255,255,0.38);
	white-space: nowrap;
	transition: border-color .2s, background .2s;
}
.pqf-cierre-bts {
	display: flex;
	flex-direction: column;
	gap: .7rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}/* End custom CSS */