/* ===== Variables mínimas locales ===== */
:root{
  --bg: #0a0a0a;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --brand: #dd1729;
  --brand-dark: #b31222;
  --brand-light: #ff1a2e;
  --accent: #3b82f6;
  --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== HERO SETTING ===== */
.setting-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, var(--bg) 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.setting-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.setting-left { padding-right: 20px; }

.setting-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(221, 23, 41, 0.1);
  border: 1px solid rgba(221, 23, 41, 0.3);
  border-radius: 20px;
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.setting-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.setting-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 40px;
  line-height: 1.6;
  max-width: 500px;
}

.btn-setting-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-setting-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s var(--ease-smooth);
}
.btn-setting-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(221, 23, 41, 0.5);
}
.btn-setting-cta:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

/* ===== CALENDAR WIDGET ===== */
.setting-right { display: flex; justify-content: center; align-items: center; }
.calendar-container { position: relative; perspective: 1000px; }

.calendar-widget {
  width: 400px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.calendar-header { margin-bottom: 20px; }

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: fit-content;
  margin-left: auto;
  transition: all 0.3s var(--ease-smooth);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
}
.status-indicator span { color: var(--text); font-size: 14px; font-weight: 600; }

.calendar-main { position: relative; margin-bottom: 24px; }
.calendar-title { font-size: 24px; font-weight: 800; color: #ffffff; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }

.calendar-grid {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.day-label { text-align: center; font-size: 12px; font-weight: 600; color: var(--text-muted); padding: 4px; }

.calendar-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.date {
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}
.date.active {
  background: var(--brand);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(221, 23, 41, 0.4);
}

.calendar-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(221, 23, 41, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  right: -20px;
  bottom: -20px;
  transition: all 0.6s var(--ease-smooth);
  pointer-events: none;
}

/* ===== MEETING LIST ===== */
.meeting-list { display: flex; flex-direction: column; gap: 12px; }
.meeting-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
}
.meeting-item.inactive { opacity: 0.5; }
.meeting-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(221, 23, 41, 0.5);
}
.meeting-item.inactive .meeting-dot { background: var(--text-muted); box-shadow: none; }
.meeting-text { font-size: 14px; font-weight: 500; color: var(--text); }
.meeting-item.inactive .meeting-text { color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .setting-container { grid-template-columns: 1fr; gap: 60px; }
  .setting-left { text-align: center; padding-right: 0; }
  .calendar-widget { width: 350px; }
}
@media (max-width: 768px) {
  .setting-hero { padding: 100px 20px 60px; }
  .calendar-widget { width: 320px; padding: 20px; }
  .setting-subtitle { max-width: none; }
}

/* ===== Banda de logos (1 carril, siempre llena) ===== */
.logo-band{
  background:#0b0b0b;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:18px 0;
}
.logo-marquee{
  max-width:1400px;
  margin:0 auto;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logo-track{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:clamp(48px, 6vw, 96px);
  will-change:transform;
  animation:logo-marquee 28s linear infinite;
}
.logo-item{
  height:clamp(36px, 5vw, 56px);
  width:auto;
  flex:0 0 auto;
  opacity:.95;
  filter:drop-shadow(0 2px 8px rgba(221,23,41,.18));
  transition:transform .25s cubic-bezier(.4,0,.2,1), opacity .25s cubic-bezier(.4,0,.2,1);
}
.logo-item:hover{
  transform:translateY(-2px) scale(1.04);
  opacity:1;
  filter:drop-shadow(0 4px 14px rgba(221,23,41,.35));
}
.logo-marquee:hover .logo-track{ animation-play-state:paused; }
@keyframes logo-marquee{
  from{ transform:translateX(0); }
  to  { transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation:none; }
}

/* ===== Sección A2Z (proceso) ===== */
.a2z {
  padding: 96px 24px 72px;
  background: #0a0a0a;
}

.a2z-head {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}

.a2z-title {
  margin: 0 0 16px 0;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
}

.a2z-sub {
  margin: 0;
  color: var(--text-muted, #94a3b8);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.6;
}

.a2z-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Columna izquierda */
.a2z-left {
  display: flex;
  flex-direction: column;
}

.a2z-block-title {
  margin: 0 0 8px;
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.a2z-block-sub {
  margin: 0 0 32px;
  color: var(--text-muted, #94a3b8);
  font-size: 16px;
  line-height: 1.6;
}

.a2z-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin: 0 0 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.a2z-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand, #dd1729);
  box-shadow: 0 0 20px rgba(221, 23, 41, 0.3);
  transform: translateY(-2px);
}

.a2z-emoji {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.a2z-card p {
  margin: 0;
  color: var(--text, #f8fafc);
  font-size: 15px;
  line-height: 1.6;
}

.a2z-card strong {
  color: #fff;
  font-weight: 700;
}

/* Columna derecha */
.a2z-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.a2z-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.a2z-image:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(221, 23, 41, 0.4);
  border: 2px solid var(--brand, #dd1729);
}

/* Responsive */
@media (max-width: 1024px) {
  .a2z-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .a2z-right {
    order: -1;
  }
  
  .a2z-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .a2z {
    padding: 80px 20px 60px;
  }
  
  .a2z-grid {
    gap: 40px;
  }
  
  .a2z-card {
    padding: 16px;
    gap: 12px;
  }
  
  .a2z-image {
    max-width: 100%;
  }
}

/* ===== Sección Booking (reserva de reuniones) ===== */
.booking-section {
  padding: 96px 24px 72px;
  background: #0a0a0a;
}

.booking-head {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}

.booking-title {
  margin: 0 0 16px 0;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
}

.booking-sub {
  margin: 0;
  color: var(--text-muted, #94a3b8);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.6;
}

.booking-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Columna izquierda (imagen) */
.booking-left {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.booking-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.booking-image:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(221, 23, 41, 0.4);
  border: 2px solid var(--brand, #dd1729);
}

/* Columna derecha (contenido) */
.booking-right {
  display: flex;
  flex-direction: column;
}

.booking-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin: 0 0 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.booking-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand, #dd1729);
  box-shadow: 0 0 20px rgba(221, 23, 41, 0.3);
  transform: translateY(-2px);
}

.booking-emoji {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-card p {
  margin: 0;
  color: var(--text, #f8fafc);
  font-size: 15px;
  line-height: 1.6;
}

.booking-card strong {
  color: #fff;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .booking-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 80px 20px 60px;
  }
  
  .booking-grid {
    gap: 40px;
  }
  
  .booking-card {
    padding: 16px;
    gap: 12px;
  }
  
  .booking-image {
    max-width: 100%;
  }
}

/* ===== Sección Pricing ===== */
.pricing-section {
  padding: 96px 24px 72px;
  background: #0a0a0a;
}

.pricing-head {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}

.pricing-title {
  margin: 0 0 16px 0;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
}

.pricing-sub {
  margin: 0;
  color: var(--text-muted, #94a3b8);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.6;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand, #dd1729);
  box-shadow: 0 0 30px rgba(221, 23, 41, 0.3);
  transform: translateY(-4px);
}

.pricing-card-header {
  margin-bottom: 32px;
}

.pricing-card-title {
  margin: 0 0 12px 0;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
}

.pricing-card-subtitle {
  margin: 0;
  color: var(--text-muted, #94a3b8);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.pricing-feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-number {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.pricing-text {
  font-size: 14px;
  color: var(--text-muted, #94a3b8);
  line-height: 1.3;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light, #ff1a2e) 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.4s var(--ease-smooth, cubic-bezier(0.4, 0.0, 0.2, 1));
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s var(--ease-smooth, cubic-bezier(0.4, 0.0, 0.2, 1));
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(221, 23, 41, 0.4);
}

.pricing-cta:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 20px 60px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .pricing-number {
    font-size: 24px;
  }
}