/* =========================
   RESET & BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0b0b;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   GLOBAL
========================= */

section {
  padding: 120px 8%;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(42px, 4.5vw, 58px);
  font-weight: 500;
}

p {
  font-size: 17px;
  color: #d6d6d6;
}

a {
  text-decoration: none;
}

/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* =========================
   CTA
========================= */

.cta {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 44px;
  border: 1px solid #e6d3a3;
  color: #e6d3a3;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.cta:hover {
  background: #e6d3a3;
  color: #0b0b0b;
  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
    url("hero.jpg") center / cover no-repeat;
}

.hero-content {
  max-width: 860px;
}

.badge {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7cffc4;
}

.hero h1 {
  font-size: clamp(66px, 7vw, 96px);
  line-height: 1.05;
}

.subtitle {
  margin-top: 30px;
  font-size: 22px;
  max-width: 520px;
}

.micro {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* =========================
   CONTEXT
========================= */

.context {
  padding: 40px 8%;
  background: #111;
  text-align: center;
}

.context p {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================
   REFRAME
========================= */

.reframe {
  max-width: 720px;
  margin-left: 10%;
}

.reframe p {
  margin-top: 24px;
  font-size: 19px;
}

/* =========================
   INCLUDED
========================= */

.included {
  background: #0e0e0e;
}

.included .grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.included .grid div {
  padding: 38px 34px;
  background: #141414;
  border-left: 2px solid #e6d3a3;
  transition: transform 0.3s ease;
}

.included .grid div:hover {
  transform: translateY(-6px);
}

/* =========================
   FLOW
========================= */

.flow {
  background: radial-gradient(circle at top, #151515, #0b0b0b);
}

.flow .steps {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 56px;
}

.flow span {
  font-size: 44px;
  color: #7cffc4;
  margin-bottom: 12px;
}

/* =========================
   FIT
========================= */

.fit {
  background: #000;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.fit h3 {
  font-size: 32px;
}

.fit ul {
  margin-top: 28px;
}

.fit li {
  list-style: none;
  margin-bottom: 14px;
  color: #cfcfcf;
}

/* =========================
   PRICE
========================= */

.price {
  text-align: center;
}

.amount {
  margin-top: 28px;
  font-size: 68px;
}

.amount span {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.scarcity {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff784f;
}

/* =========================
   RNT FOOTER STYLES
========================= */

footer {
  padding: 100px 8% 60px; 
  background: #080808;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.brand-line {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff; 
  margin-bottom: 35px;
}

.legal-box {
  padding-top: 30px;
  border-top: 1px solid #222;
}

.rnt-number {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #e6d3a3; /* Tu color dorado */
  margin-bottom: 12px;
}

.legal-text {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #555; 
  max-width: 550px;
  margin: 0 auto;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .legal-text {
    font-size: 10px;
    padding: 0 10px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  section {
    padding: 90px 6%;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .reframe {
    margin-left: 0;
  }
}
