.elementor-31574 .elementor-element.elementor-element-08731e8{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-31574 .elementor-element.elementor-element-01bd017{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}body.elementor-page-31574{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:769px){.elementor-31574 .elementor-element.elementor-element-08731e8{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-01bd017 *//* ─── TOKENS ─── */
:root {
  --rojo: #2e6f8e;
  --rojo-dark: #1f4f68;
  --rojo-pale: #eaf4f9;
  --negro: #1a1a1a;
  --gris-texto: #555555;
  --gris-borde: #e0e0e0;
  --gris-fondo: #f7f7f7;
  --blanco: #ffffff;
  --max: 800px;
  --font: "Nunito Sans", sans-serif;
}

/* ─── RESET ─── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--blanco);
  color: var(--negro);
  font-size: 16px;
  line-height: 1.75;
}

/* ─── HERO ─── */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92),
    rgba(10,10,10,0.55),
    rgba(10,10,10,0.20)
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 52px 24px 48px;
}

.hero-tag {
  display: inline-block;
  background: var(--rojo);
  color: var(--blanco);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: var(--blanco);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--rojo);
}

.hero-sub {
  color: #bbb;
  margin-top: 12px;
}



/* ─── ARTICLE ─── */
.article {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px;
}

.lead {
  font-size: 17px;
  font-weight: 600;
  border-left: 4px solid var(--rojo);
  padding-left: 18px;
  margin-bottom: 40px;
  color: #222;
}

/* ─── HEADINGS ─── */
h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 44px 0 12px;
  color: var(--negro);
}

p {
  margin-bottom: 16px;
  color: #444;
}

/* ─── PREGUNTAS ─── */
.preguntas {
  list-style: none;
  margin-top: 20px;
}

.preguntas li {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--gris-borde);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--blanco);
}

.num {
  font-size: 24px;
  font-weight: 800;
  color: var(--rojo);
  width: 30px;
}

/* ─── CALL OUT ─── */
.callout {
  background: var(--gris-fondo);
  border-left: 4px solid var(--rojo);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 6px 6px 0;
}

.callout p {
  margin: 0;
  color: #333;
}

/* ─── TABLA ─── */
.tabla-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--gris-borde);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}

thead {
  background: var(--negro);
  color: var(--blanco);
}

th, td {
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

tbody tr {
  border-bottom: 1px solid var(--gris-borde);
}

tbody tr:hover {
  background: #fafafa;
}

/* ─── PRODUCTO CARD ─── */
.producto-card {
  border: 1px solid var(--gris-borde);
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0;
}

.prod-header {
  background: var(--gris-fondo);
  padding: 16px 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.prod-header .badge {
  background: var(--rojo);
  color: var(--blanco);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  text-transform: uppercase;
}

.prod-body {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prod-specs {
  list-style: none;
}

.prod-specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gris-borde);
}

/* ─── BOTONES ─── */
.btn-rojo {
  display: block;
  background: var(--rojo);
  color: var(--blanco);
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.btn-rojo:hover {
  background: var(--rojo-dark);
}

.btn-borde {
  display: block;
  border: 1px solid var(--gris-borde);
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--negro);
}

/* ─── APILADORA ─── */
.apiladora-card {
  background: var(--gris-fondo);
  padding: 24px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.api-badge {
  background: #1a3a6b;
  color: white;
  font-size: 10px;
  padding: 3px 10px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ─── CHECKS ─── */
.checks {
  list-style: none;
}

.checks li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid var(--gris-borde);
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rojo);
  font-weight: 800;
}

/* ─── ERRORES ─── */
.errores {
  list-style: none;
}

.errores li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--gris-borde);
  border-radius: 8px;
  margin-bottom: 10px;
}

.errores .ico {
  position: absolute;
  left: 14px;
  top: 14px;
}

/* ─── CTA FINAL ─── */
.cta-final {
  background: var(--negro);
  color: var(--blanco);
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
}

.btn-cta-rojo {
  background: var(--rojo);
  color: white;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.btn-cta-blanco {
  border: 1px solid #555;
  color: white;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
}

/* ─── ANIMACIÓN ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp 0.5s ease both;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-08731e8 */.hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}/* End custom CSS */