/* ═══ TEMA CLÁSICO — Oscuro profesional, acento morado ═══ */
:root {
  --accent: #7c3aed; --accent-h: #6d28d9;
  --bg: #0a0a0a; --surface: #111;
  --gray-100: #141414; --gray-200: #1e1e1e;
  --gray-300: #c0c0c0; --gray-400: #888; --gray-500: #555;
}
body { background: var(--bg); }
.t-nav { background: rgba(10,10,10,.95); border-bottom: 1px solid #1e1e1e; backdrop-filter: blur(12px); padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.t-nav-logo { font-size: 1.1rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: .5rem; cursor: pointer; }
.t-nav-logo img { height: 36px; }
.t-nav-links { display: flex; gap: 1.5rem; }
.t-nav-link { font-size: .875rem; color: #888; cursor: pointer; transition: color .15s; }
.t-nav-link:hover, .t-nav-link.active { color: #fff; }
.t-nav-cart { background: transparent; border: 1px solid #333; color: #ccc; padding: .4rem 1rem; border-radius: 8px; cursor: pointer; font-size: .85rem; display: flex; align-items: center; gap: .4rem; }
.t-nav-cart:hover { border-color: var(--accent); color: var(--accent); }

/* HERO centrado */
.t-hero { min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 2rem 4rem; background: linear-gradient(135deg, #0a0a0a 0%, #110a1a 60%, #0a0a0a 100%); position: relative; overflow: hidden; }
.t-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(124,58,237,.15) 0%, transparent 65%); pointer-events: none; }
.t-hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; justify-content: center; }
.t-hero-line { width: 40px; height: 2px; background: var(--accent); }
.t-hero-eyebrow-text { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); }
.t-hero h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.0; letter-spacing: -.04em; color: #fff; margin-bottom: 1.25rem; font-family: 'Bebas Neue', sans-serif; }
.t-hero h1 em { color: var(--accent); font-style: normal; }
.t-hero-sub { font-size: 1.05rem; color: #888; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.65; }
.t-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.t-hero-stats { display: flex; gap: 3rem; margin-top: 4rem; }
.t-hero-stat-val { font-size: 2.5rem; font-weight: 800; color: #fff; font-family: 'Bebas Neue', sans-serif; }
.t-hero-stat-lbl { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: #555; }

/* HOW */
.t-section { padding: 5rem 2rem; }
.t-container { max-width: 1200px; margin: 0 auto; }
.t-section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: .5rem; letter-spacing: -.03em; font-family: 'Bebas Neue', sans-serif; }
.t-section-sub { color: #888; margin-bottom: 3rem; }

/* Pasos — cards con icono circular, número y flechas */
.t-steps { display: flex; align-items: stretch; justify-content: center; gap: 0; max-width: 1000px; margin: 0 auto; }
.t-step {
  flex: 1; max-width: 300px;
  background: linear-gradient(160deg, rgba(124,58,237,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid #1e1e1e;
  border-radius: 18px;
  padding: 2.5rem 1.75rem 2rem;
  text-align: left;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.t-step:hover { border-color: rgba(124,58,237,.4); transform: translateY(-4px); }
.t-step-icon {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(124,58,237,.18) 0%, rgba(124,58,237,.04) 70%);
  border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--accent);
  position: relative;
}
.t-step-icon::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 1px solid rgba(124,58,237,.1);
}
.t-step-icon svg { width: 36px; height: 36px; }
.t-step-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  color: var(--accent); background: rgba(124,58,237,.12);
  display: inline-block; padding: .2rem .5rem; border-radius: 5px;
  margin-bottom: .85rem;
}
.t-step-title { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; color: #fff; }
.t-step-desc { font-size: .85rem; color: #888; line-height: 1.6; }
.t-step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.3rem; padding: 0 .5rem;
  flex-shrink: 0; align-self: center;
}

@media(max-width: 860px) {
  .t-steps { flex-direction: column; align-items: center; gap: 1rem; }
  .t-step { max-width: 380px; width: 100%; }
  .t-step-arrow { transform: rotate(90deg); }
}

/* EVENTS grid 3col */
.t-events-section { background: var(--bg); }
.t-search-bar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.t-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

/* PHOTOGRAPHERS */
.t-photographers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }

/* FOOTER */
.t-footer { background: #060606; border-top: 1px solid #1a1a1a; padding: 3rem 2rem; }
.t-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 2rem; }
.t-footer-brand { font-size: 1.4rem; font-weight: 900; font-family: 'Bebas Neue', sans-serif; color: var(--accent); margin-bottom: .75rem; }
.t-footer-desc { font-size: .85rem; color: #555; line-height: 1.6; }
.t-footer-col-title { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #444; margin-bottom: .75rem; }
.t-footer-link { display: block; font-size: .85rem; color: #555; cursor: pointer; margin-bottom: .5rem; transition: color .15s; }
.t-footer-link:hover { color: #ccc; }
.t-footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid #1a1a1a; font-size: .78rem; color: #333; display: flex; justify-content: space-between; }

/* BUTTONS */
.t-btn-primary { background: var(--accent); color: #fff; border: none; padding: .75rem 1.75rem; border-radius: 10px; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s; }
.t-btn-primary:hover { background: var(--accent-h); }
.t-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,.2); color: #fff; padding: .75rem 1.75rem; border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .15s; }
.t-btn-outline:hover { border-color: rgba(255,255,255,.5); }
.t-btn-sm { padding: .4rem .9rem; font-size: .8rem; border-radius: 7px; }

/* MARCAS — header + grid de logos en cards */
.t-marcas { padding: 5rem 2rem; background: #0a0a0a; overflow: hidden; }
.t-marcas-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.t-marcas-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.t-marcas-eyebrow-line { width: 36px; height: 1px; background: var(--accent); opacity: .6; }
.t-marcas-h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: -.01em;
  color: #fff; margin-bottom: 1rem; line-height: 1.05;
}
.t-marcas-h2 em { color: var(--accent); font-style: normal; }
.t-marcas-sub { font-size: .9rem; color: #888; line-height: 1.6; }
/* Logos en grid de cards */
.t-marcas-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 1rem !important;
  max-width: 1200px; margin: 0 auto !important;
  animation: none !important; transform: none !important;
}
.t-marcas-grid .marca-logo {
  background: color-mix(in srgb, var(--accent) 4%, #121212);
  border: 1px solid color-mix(in srgb, var(--accent) 12%, #1e1e1e);
  border-radius: 14px;
  height: 130px; padding: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.t-marcas-grid .marca-logo:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 12%, transparent);
}
.t-marcas-grid .marca-logo img {
  max-width: 100%; max-height: 70px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .55; transition: opacity .25s;
}
.t-marcas-grid .marca-logo:hover img { opacity: 1; }

/* sections bg */
.t-how-bg { background: #0d0d0d; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
.t-photographers-bg { border-top: 1px solid #1e1e1e; }

/* ── Responsive ── */
.t-hero h1, .t-section-title, .t-marcas-h2 { overflow-wrap: break-word; }
@media (max-width: 768px) {
  .t-nav { padding: 0 1rem; gap: .6rem; }
  .t-nav-links { gap: .9rem; }
  .t-nav-link { font-size: .78rem; white-space: nowrap; }
  .t-hero { min-height: 0; padding: 4.5rem 1.25rem 3.5rem; }
  .t-hero-sub { margin-bottom: 2rem; }
  .t-hero-actions { width: 100%; }
  .t-hero-actions button { flex: 1 1 auto; }
  .t-hero-stats { gap: 2.25rem; margin-top: 2.5rem; }
  .t-section, .t-marcas { padding: 3.5rem 1.25rem; }
  .t-footer { padding: 2.5rem 1.25rem; }
  .t-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .t-footer-bottom { flex-direction: column; gap: .5rem; }
}
@media (max-width: 520px) {
  .t-nav .nav-logo-text { display: none; }
  .t-nav-logo img { height: 30px; }
}
