:root {
  --black: #0d0d0d;
  --black-soft: #161616;
  --black-highlight: #1c150a;
  --gold: #b48231;
  --gold-dark: #96702a;
  --silver: #939292;
  --white: #ffffff;
  --text: var(--white);
  --text-soft: var(--silver);
  --border: rgba(147, 146, 146, 0.25);
  --success: #4ade80;
  --error: #f87171;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--black);
  line-height: 1.5;
}

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

.container--narrow {
  max-width: 640px;
}

.brand-bar {
  padding: 20px 24px;
}

.brand-bar__name {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 12px;
}

.section {
  padding: 64px 0;
}

.section--muted {
  background: var(--black-soft);
}

.section--highlight {
  background: var(--black-highlight);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__headline {
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--text);
  max-width: 720px;
}

.section__body {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 640px;
}

/* HERO */
.hero {
  padding: 56px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero__headline {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}

.hero__subheadline {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 0 0 28px;
}

.hero__media {
  min-height: 260px;
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  background: var(--black-soft);
}

/* GALERÍA */
.section--gallery {
  padding: 0 0 64px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--black-soft);
}

@media (max-width: 860px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

.btn--block {
  width: 100%;
  text-align: center;
}

/* DOLORES */
.dolores__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.dolor-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--black-soft);
}

.dolor-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.dolor-card p {
  margin: 0;
  color: var(--text-soft);
}

/* STATS */
.stats-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.stats-bar li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  color: var(--text);
}

.stats-bar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

/* PROCESO */
.proceso__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.proceso__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.proceso__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proceso__list h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1.05rem;
}

.proceso__list p {
  margin: 0;
  color: var(--text-soft);
}

/* PRODUCTO */
.producto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.producto__block h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.producto__block p {
  color: var(--text-soft);
  margin: 0;
}

.ficha-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ficha-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.ficha-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 860px) {
  .producto__grid {
    grid-template-columns: 1fr;
  }
}

/* COMPARATIVAS */
.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
  background: var(--black);
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--gold);
  color: var(--black);
}

.compare-table tbody th {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.compare-table tbody td {
  color: var(--text-soft);
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none;
}

/* FORMULARIO */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--black-soft);
  color: var(--text);
}

.field input::placeholder {
  color: var(--text-soft);
}

.field input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 14px;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status--ok {
  color: var(--success);
}

.form-status--error {
  color: var(--error);
}

.footer {
  padding: 32px 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .dolores__grid {
    grid-template-columns: 1fr;
  }

  .hero__headline {
    font-size: 1.9rem;
  }
}
