/* ============================================
   PERSONAL — estilo Tony Robbins
   Full-bleed sections, citas grandes, pilares verticales
   Paleta del proyecto (azul + mentha + naranja)
   ============================================ */

/* ---------- HERO PERSONAL — full bleed con foto ---------- */
.tr-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--bg);
}
@media (max-width: 880px) { .tr-hero { grid-template-columns: 1fr; min-height: auto; } }

.tr-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
@media (max-width: 880px) { .tr-hero-photo { min-height: 60vh; } }

.tr-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.tr-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 50%, var(--bg) 100%),
    linear-gradient(180deg, transparent 70%, rgba(10,14,20,0.6) 100%);
}

.tr-hero-photo-tag {
  position: absolute;
  bottom: 32px; left: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.tr-hero-photo-tag .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.tr-hero-content {
  padding: 120px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 1100px) { .tr-hero-content { padding: 100px 48px 60px; } }
@media (max-width: 880px) { .tr-hero-content { padding: 60px var(--gutter); } }

.tr-hero-content .eyebrow { margin-bottom: 32px; }

.tr-hero-content h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.tr-hero-content h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.tr-hero-content h1 .accent-hot {
  color: var(--accent-hot);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.tr-hero-content > p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.tr-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tr-hero-cta-row .btn-primary { background: var(--accent-hot); color: #fff; }
.tr-hero-cta-row .btn-primary:hover { background: #ff8a5a; }

.tr-hero-bottom-strip {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.tr-hero-bottom-stat-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tr-hero-bottom-stat-num em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.tr-hero-bottom-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 10px;
  max-width: 160px;
}

/* ---------- BIG QUOTE BAND — full bleed con foto de fondo ---------- */
.tr-quote-band {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 120px var(--gutter);
  overflow: hidden;
  background: var(--primary);
}
.tr-quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/personal-2.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  filter: grayscale(0.4);
}
.tr-quote-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(26,58,82,0.65) 70%, var(--primary) 100%);
}
.tr-quote-band-inner {
  max-width: 1200px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.tr-quote-band-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.tr-quote-band-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 40px;
}
.tr-quote-band-text .hi { color: var(--accent); }
.tr-quote-band-author {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.tr-quote-band-author::before {
  content: '— ';
  color: var(--accent);
}

/* ---------- PILLARS section — vertical stacked rows con número GIGANTE ---------- */
.tr-pillars {
  background: var(--bg);
  padding: 120px 0 0;
}
.tr-pillars-head {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
  text-align: center;
}
.tr-pillars-head .eyebrow { margin-bottom: 24px; }
.tr-pillars-head h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.tr-pillars-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.tr-pillars-head p {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}

.tr-pillar-row {
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.tr-pillar-row:hover { background: var(--bg-elevated); }
.tr-pillar-row:last-child { border-bottom: 1px solid var(--line); }

.tr-pillar-row-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .tr-pillar-row-inner { grid-template-columns: 1fr; gap: 24px; }
}

.tr-pillar-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--fg-dim);
  opacity: 0.18;
  transition: color 0.4s ease, opacity 0.4s ease;
  flex-shrink: 0;
  min-width: 1.2ch;
}
.tr-pillar-row:hover .tr-pillar-num {
  color: var(--accent);
  opacity: 1;
}

.tr-pillar-body {
  max-width: 720px;
}
.tr-pillar-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.tr-pillar-row h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.tr-pillar-row h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.tr-pillar-row p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  text-wrap: pretty;
}

.tr-pillar-arrow {
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--fg-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.tr-pillar-row:hover .tr-pillar-arrow {
  border-color: var(--accent);
  background: var(--accent);
  color: #051018;
  transform: translateX(8px);
}
@media (max-width: 980px) { .tr-pillar-arrow { display: none; } }

/* ---------- DEPORTE / BODY band — split visual + 3 cards ---------- */
.tr-body-band {
  background: var(--primary);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}
.tr-body-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,116,74,0.25) 0%, transparent 60%);
  top: -200px; left: -150px;
  filter: blur(50px);
}
.tr-body-band-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tr-body-band-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 880px) { .tr-body-band-head { grid-template-columns: 1fr; gap: 24px; } }

.tr-body-band-head .eyebrow { color: var(--accent-hot); margin-bottom: 16px; }
.tr-body-band-head h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
}
.tr-body-band-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-hot);
}
.tr-body-band-head p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  text-wrap: pretty;
}

.tr-body-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .tr-body-cards { grid-template-columns: 1fr; } }

.tr-body-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}
.tr-body-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent-hot);
  transform: translateY(-4px);
}
.tr-body-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-hot);
  font-weight: 600;
}
.tr-body-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(232,116,74,0.15);
  display: grid;
  place-items: center;
  color: var(--accent-hot);
  margin-bottom: 8px;
}
.tr-body-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}
.tr-body-card p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.tr-body-card-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---------- SECONDARY QUOTE — más pequeña, alineada izquierda ---------- */
.tr-quote-2 {
  padding: 120px var(--gutter);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.tr-quote-2-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .tr-quote-2-inner { grid-template-columns: 1fr; gap: 24px; } }

.tr-quote-2-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 200px;
  line-height: 0.7;
  color: var(--accent);
  font-weight: 500;
}
.tr-quote-2-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.tr-quote-2-author {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------- WEDDING — full-bleed callout ---------- */
.tr-wedding {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  overflow: hidden;
}
@media (max-width: 880px) { .tr-wedding { grid-template-columns: 1fr; } }

.tr-wedding-photo {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}
@media (max-width: 880px) { .tr-wedding-photo { min-height: 50vh; } }
.tr-wedding-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
.tr-wedding-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--bg) 100%);
}

.tr-wedding-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1100px) { .tr-wedding-content { padding: 60px 48px; } }
@media (max-width: 880px) { .tr-wedding-content { padding: 60px var(--gutter); } }

.tr-wedding-content .eyebrow { color: var(--accent-hot); }
.tr-wedding-content h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.tr-wedding-content h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-hot);
}
.tr-wedding-content p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 540px;
  text-wrap: pretty;
}
.tr-wedding-meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------- CTA STRIP final ---------- */
.tr-cta-strip {
  background: var(--accent);
  padding: 100px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tr-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.tr-cta-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tr-cta-strip-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #051018;
  opacity: 0.7;
  margin-bottom: 24px;
}
.tr-cta-strip h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #051018;
  margin-bottom: 32px;
  text-wrap: balance;
}
.tr-cta-strip h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.tr-cta-strip .btn {
  background: #051018;
  color: var(--accent);
}
.tr-cta-strip .btn:hover { background: #000; }
