/* base — generado por refactor modular (verbatim de styles.css) */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #ffc800;
  --gold-dark: #9a7600;
  --dark-text: #10231f;
  --bg: #05080e;
  --bg-tint: rgba(255, 200, 0, 0.06);
  --white: #FFFFFF;
  --white-75: rgba(255, 255, 255, 0.75);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-10: rgba(255, 255, 255, 0.1);
  --font-sora: 'Sora', sans-serif;
  --font-mont: 'Montserrat', sans-serif;
  --gutter: clamp(20px, 10.76vw, 147px);
  --sp: clamp(52px, 7vw, 96px);          /* ritmo vertical de sección: simétrico arriba/abajo */
  --header-h: 80px;                      /* alto del navbar fijo (el banner baja esta altura) */
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-mont);          /* cuerpo de texto: Montserrat (regla global) */
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sora); }   /* títulos: Sora (regla global) */
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
.text-gold { color: var(--gold); }
.wrap {
  width: 100%;
  max-width: 1072px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
html, body { max-width: 100%; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  border-radius: 8px;
  font-family: var(--font-sora);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn__arrow { flex-shrink: 0; }
.btn--primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn--primary:hover { background: #e6b400; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.img-ph {
  position: relative;
  background: #6f7a88;
  overflow: hidden;
}
.img-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.8'/%3E%3Cpath d='M21 15l-5-5L4 21'/%3E%3C/svg%3E") center / 52px no-repeat;
  opacity: 0.55;
}
.caro-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background .2s, color .2s;
}
.caro-arrow--gold { background: var(--gold); color: #000; }
.caro-arrow:hover { background: var(--gold); color: #000; }
@media (max-width: 600px) {
  .wrap { padding-left: 16px; padding-right: 16px; }
}
