/* ═══════════════════════════════════════════
   Alberto Ruskolekier · Landing Page
   style.css — Custom styles over Bootstrap 5
   ═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --azul:       #0F2A44;
  --azul2:      #1F3E63;
  --rojo:       #C43A3A;
  --rojo-hover: #a82f2f;
  --gris:       #7A8A9A;
  --blanco:     #FFFFFF;
  --glass:      rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.11);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--azul);
  color: var(--blanco);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── DECORATIVE BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.globe-bg {
  position: fixed;
  top: -25vw;
  right: -25vw;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #1F3E63 0%, #0F2A44 55%, transparent 72%);
  border: 1px solid rgba(255,255,255,0.035);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.content-wrap { position: relative; z-index: 1; }

/* ── TYPOGRAPHY HELPERS ── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
}
.label-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rojo);
  flex-shrink: 0;
}

.label-tag-multiline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid var(--rojo);
  padding-left: 20px;
}

.label-tag-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
}

.highlight-workshop {
  color: var(--blanco);
  font-weight: 900;
}

.workshop-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.workshop-subtitle {
  font-style: italic;
  color: rgba(255,255,255,.45);
}
  color: var(--gris);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.label-tag-red {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rojo);
}

/* ── LOGO IMAGE ── */
.logo-img-wrap { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;

}


.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.logo-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
}
.logo-text span { color: var(--rojo); }

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196,58,58,0.1);
  border: 1px solid rgba(196,58,58,0.32);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e07878;
  white-space: nowrap;
}
.nav-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rojo);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

/* ── HERO ── */
/* ── HERO ── */
.hero-section {
  padding: 0 0 0;
  animation: fadeUp .75s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Full-width hero image */
.hero-main-img-wrap {
  width: 100%;
  line-height: 0;
  position: relative;
}

.hero-main-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--azul));
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Workshop intro block */
.hero-intro-block {
  padding: 44px 0 32px;
}


.hero-intro-inner {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.hero-intro-text {
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-world-wrap {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 1;
}

.hero-world-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.18;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
}

@media (max-width: 767px) {
  .hero-world-wrap { width: 260px; height: 260px; right: -12px; opacity: 1; }
  .hero-world-img { opacity: 0.12; }
}


.hero-main-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 700;
  line-height: 1.75;
  max-width: 520px;
  text-transform: uppercase;
  color: var(--blanco);
  letter-spacing: .04em;
}

.hero-main-subtitle-em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.45);
}

.hero-description {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 300;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  max-width: 520px;
}



/* ── PROFILE STRIP ── */
.profile-strip {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px 22px;
  animation: fadeUp .75s .15s ease both;
}

.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul2), #2d5a8e);
  border: 2px solid rgba(255,255,255,.14);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-name  { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.profile-roles { font-size: 11px; color: var(--gris); font-weight: 500; }

/* ── BUTTONS ── */
.btn-rojo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rojo);
  color: #fff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-rojo:hover { background: var(--rojo-hover); transform: translateY(-1px); }
.btn-rojo-lg   { padding: 16px 40px; font-size: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* ── WORKSHOP CARD ── */
.workshop-card {
  background: linear-gradient(135deg, rgba(31,62,99,.55) 0%, rgba(15,42,68,.82) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rojo);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  animation: fadeUp .75s .25s ease both;
}
.workshop-card::after {
  content: 'WORKSHOP';
  position: absolute;
  right: -20px;
  top: 18px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255,255,255,.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -.02em;
}

.workshop-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.workshop-subtitle {
  font-style: italic;
  color: rgba(255,255,255,.45);
}

/* ── META ITEMS ── */
.meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
}
.meta-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.6);
}

/* ── SECTIONS ── */
.ar-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

/* ── DAY CARDS ── */
.day-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 26px 24px;
  height: 100%;
  transition: border-color .2s;
}
.day-card:hover { border-color: rgba(255,255,255,.22); }

.day-number {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 10px;
}

.day-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.day-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.day-topics li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}
.day-topics li strong {
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.topic-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
}

/* ── BIO PHOTO ── */
.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px;
  border: 1px solid var(--border);
  display: block;
}


.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  background: var(--glass);
  border-left: 2px solid var(--rojo);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  line-height: 1.45;
  margin-bottom: 10px;
  border-radius: 0 3px 3px 0;
}

/* ── BIO EXTRAS ── */
.bio-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
}

.bio-quote {
  border-left: 3px solid var(--rojo);
  padding: 20px 24px;
  background: var(--glass);
  border-radius: 0 5px 5px 0;
}
.bio-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2vw, 18px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0 0 10px;
}
.bio-quote-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rojo);
}

.media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.media-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.bio-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.58);
  line-height: 1.85;
}
.bio-text em { color: rgba(255,255,255,.75); font-style: italic; }



/* ── SOCIAL LINKS ── */
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  transition: border-color .2s, color .2s, transform .15s;
  height: 100%;
}
.social-link:hover {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  transform: translateX(3px);
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.7);
}
.si-yt { background: rgba(255,0,0,.13); }
.si-tw { background: rgba(29,161,242,.11); }
.si-li { background: rgba(0,119,181,.14); }
.si-ig { background: rgba(193,53,132,.11); }
.si-sp { background: rgba(30,215,96,.1); }

/* ── PRICING ── */
.pricing-block {
  background: linear-gradient(135deg, rgba(196,58,58,.07) 0%, rgba(15,42,68,.9) 100%);
  border: 1px solid rgba(196,58,58,.22);
  border-radius: 6px;
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rojo), #e07070, var(--rojo));
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 10vw, 76px);
  font-weight: 700;
  line-height: 1;
  margin: 12px 0;
}
.price-currency {
  font-size: 26px;
  vertical-align: super;
  font-weight: 400;
  opacity: .65;
}

.price-note {
  font-size: 11px;
  color: var(--gris);
  letter-spacing: .08em;
}

.includes-list { list-style: none; padding: 0; margin: 0; }
.includes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  padding: 6px 0;
  text-align: left;
}
.includes-list li::before {
  content: '✓';
  color: #6db86d;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  opacity: .45;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gris);
}
.payment-logos span {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
}

/* ── EVENT DATES ── */
.event-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(196,58,58,0.08);
  border: 1px solid rgba(196,58,58,0.2);
  border-radius: 4px;
}

.event-date-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.02em;
}

.event-date-item svg {
  flex-shrink: 0;
  color: var(--rojo);
}


.pay-chooser-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
  text-align: center;
}

.pay-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s;
  height: 100%;
}
.pay-card:hover { border-color: rgba(255,255,255,.22); }

.pay-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pay-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-logo-mp { background: rgba(0,158,227,.12); color: #00a8e0; border: 1px solid rgba(0,158,227,.2); }
.pay-logo-pp { background: rgba(0,112,186,.12); color: #0070ba; border: 1px solid rgba(0,112,186,.2); }

.pay-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blanco);
}
.pay-card-sub {
  font-size: 11px;
  color: var(--gris);
  font-weight: 500;
  margin-top: 2px;
}

.pay-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--blanco);
}

.pay-btn {
  font-size: 11px;
  padding: 13px 20px;
}

.pay-card-note {
  font-size: 10px;
  color: var(--gris);
  letter-spacing: 0.05em;
  text-align: center;
}

.pay-footer-note {
  font-size: 12px;
  color: var(--gris);
  text-align: center;
  letter-spacing: 0.03em;
}


.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  opacity: .45;
}
.footer-copy {
  font-size: 11px;
  color: var(--gris);
  letter-spacing: .07em;
}
