/* ==========================================================================
   FOTOX PRO AGENCIA - CORE DESIGN SYSTEM (COMPACT EDITORIAL & SPACIOUS)
   ========================================================================== */

:root {
  --brand-orange: #FF6B00;
  --brand-orange-light: #FF8533;
  --brand-orange-dark: #E65500;
  --brand-orange-glow: rgba(255, 107, 0, 0.2);
  --brand-orange-subtle: rgba(255, 107, 0, 0.1);

  --bg-deep: #08080A;
  --bg-dark: #0D0E12;
  --bg-card: #121318;
  --bg-card-hover: #181A22;
  --bg-glass: rgba(8, 8, 10, 0.95);

  --border-subtle: #191B22;
  --border-card: #222530;
  --border-focus: #FF6B00;

  --text-white: #FFFFFF;
  --text-light: #DFE1E8;
  --text-muted: #848896;
  --text-dim: #545766;

  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-display: 'Montserrat', 'Barlow Condensed', sans-serif;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important; /* Square geometry inspired by the official camera logo */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button, a {
  cursor: pointer;
}

/* ==========================================================================
   TOPLINE / STATUS BAR
   ========================================================================== */
.topline {
  height: 32px;
  background: #050507;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.topline-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.topline-dot {
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  box-shadow: 0 0 6px var(--brand-orange);
}

.topline-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topline-tag {
  background: var(--brand-orange-subtle);
  color: var(--brand-orange);
  border: 1px solid rgba(255, 107, 0, 0.4);
  padding: 2px 6px;
  font-size: 8.5px;
  font-weight: 900;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 40px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 4px;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-orange);
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 10px;
}

.nav-account:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 7px 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  transition: all 0.2s ease;
}

.cart-btn:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 0 10px var(--brand-orange-glow);
}

.cart-count {
  background: var(--brand-orange);
  color: #000;
  font-size: 9.5px;
  font-weight: 900;
  padding: 1px 5px;
  min-width: 16px;
  text-align: center;
}

.hamb {
  display: none;
  background: transparent;
  border: 1px solid var(--border-card);
  padding: 8px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hamb span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

/* ==========================================================================
   CAMERA HERO (COMPACT ~460PX HEIGHT)
   ========================================================================== */
.fotox-camera-hero {
  position: relative;
  min-height: 460px;
  background: #060608;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Square Camera Viewfinder Overlay */
.hero-camera-viewfinder {
  position: absolute;
  inset: 22px 4%;
  z-index: 2;
  pointer-events: none;
}

.vf-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #FFFFFF;
}

.vf-corner.top-left { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.vf-corner.top-right { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.vf-corner.bottom-left { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.vf-corner.bottom-right { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.vf-top-bar {
  position: absolute;
  top: -5px;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--brand-orange);
}

.vf-center-target {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translate(50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}

.vf-focus-indicator {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--brand-orange);
}

/* Hero Content Stage */
.hero-stage-camera {
  position: relative;
  z-index: 5;
  width: min(1320px, 92%);
  margin: 0 auto;
  padding: 44px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-main-content {
  max-width: 620px;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--brand-orange);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.hero-dot-pulse {
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  box-shadow: 0 0 6px var(--brand-orange);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 36px); /* Compact & refined */
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
}

.hero-accent {
  color: var(--brand-orange);
  font-style: italic;
}

.hero-lead {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 18px;
}

/* Search Card */
.hero-search-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  overflow: hidden;
  max-width: 520px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
  margin-bottom: 14px;
}

.hero-search-card:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 0 12px var(--brand-orange-glow);
}

.search-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 14px;
  gap: 8px;
}

.search-svg-icon {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.search-input-group input {
  flex: 1;
  background: transparent;
  border: 0;
  height: 44px;
  color: #fff;
  font-size: 12.5px;
  font-family: var(--font-main);
  outline: none;
}

.hero-search-submit {
  background: var(--brand-orange);
  color: #000;
  border: 0;
  padding: 0 18px;
  font-family: var(--font-main);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.hero-search-submit:hover {
  background: var(--brand-orange-light);
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 4px 9px;
  font-size: 10px;
  color: var(--text-muted);
}

.trust-check-svg {
  color: var(--brand-orange);
}

.hero-slider-pagination {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slider-dot {
  width: 5px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--brand-orange);
  height: 32px;
  box-shadow: 0 0 6px var(--brand-orange-glow);
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.fotox-stats-strip {
  background: #060608;
  border-bottom: 1px solid var(--border-card);
  padding: 16px 0;
}

.stats-container {
  width: min(1320px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-left: 3px solid var(--brand-orange);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--brand-orange);
}

.stat-icon-svg {
  color: var(--brand-orange);
  display: grid;
  place-items: center;
}

.stat-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  color: #fff;
}

.stat-info small {
  display: block;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
}

/* ==========================================================================
   SECTIONS & MODERN HEADERS (SPACIOUS & COMPACT TITLES)
   ========================================================================== */
.fotox-section {
  padding: 72px 0; /* More breathing room */
  border-bottom: 1px solid var(--border-subtle);
}

.section-container {
  width: min(1320px, 92%);
  margin: 0 auto;
}

.section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-header-modern.center {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.section-kicker {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--brand-orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title-huge {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px); /* Compact & refined */
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.section-title-huge em {
  color: var(--brand-orange);
  font-style: italic;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 12.5px;
  max-width: 540px;
  margin: 0;
  line-height: 1.5;
}

.search-box-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 0 12px;
  gap: 8px;
  width: 290px;
}

.box-search-icon {
  color: var(--brand-orange);
}

.search-box-wrap input {
  height: 40px;
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 12px;
  outline: none;
}

/* ==========================================================================
   VIP PACKS MODULE
   ========================================================================== */
.packs-section {
  background: #090A0D;
}

.packs-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 14px;
}

.pack-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.pack-pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-focus);
}

.pack-pricing-card.featured {
  border: 2px solid var(--brand-orange);
  background: #14151B;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8), 0 0 14px var(--brand-orange-glow);
}

.pack-popular-tag {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--brand-orange);
  color: #000;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 2px 9px;
  white-space: nowrap;
}

.pack-badge-pill {
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.pack-badge-pill.orange {
  color: var(--brand-orange);
}

.pack-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px; /* Compact */
  color: #fff;
  margin: 0 0 5px;
}

.pack-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 12px;
  min-height: 32px;
}

.pack-price {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  margin-bottom: 14px;
}

.pack-price strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px; /* Compact */
  color: #fff;
}

.pack-price small {
  display: block;
  font-size: 9.5px;
  color: var(--brand-orange);
  font-weight: 700;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text-light);
  flex: 1;
}

.pack-features li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pack-check-icon {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.btn-pack-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.btn-pack-action:hover {
  background: #fff;
  color: #000;
}

.btn-pack-action.featured-btn {
  background: var(--brand-orange);
  color: #000;
  border: 0;
}

.btn-pack-action.featured-btn:hover {
  background: var(--brand-orange-light);
}

/* ==========================================================================
   EVENTS SHOWCASE
   ========================================================================== */
.events-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-hero-card {
  height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-card);
  transition: all 0.25s ease;
}

.event-hero-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.8), 0 0 12px var(--brand-orange-glow);
}

.event-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-hero-card:hover .event-card-bg {
  transform: scale(1.04);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.15) 0%, rgba(8,8,10,0.6) 40%, rgba(8,8,10,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-sport-badge {
  background: var(--brand-orange);
  color: #000;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 3px 7px;
}

.event-date-badge {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-card);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.event-location-text {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--brand-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px; /* Compact */
  line-height: 1.1;
  color: #fff;
  margin: 3px 0 8px;
  text-transform: uppercase;
}

.event-card-metrics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-light);
}

.event-arrow-pill {
  color: var(--brand-orange);
  font-size: 9.5px;
  font-weight: 900;
}

.btn-see-all {
  color: var(--brand-orange);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.btn-see-all:hover {
  color: var(--brand-orange-light);
}

/* ==========================================================================
   PARALLAX CTA SECTION: CRISTIAN GUTIÉRREZ C. & SERVICIOS
   ========================================================================== */
.fotox-parallax-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0; /* Spacious */
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.parallax-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.parallax-content-container {
  position: relative;
  z-index: 3;
  width: min(1320px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.director-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--brand-orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.director-dot {
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
}

.director-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 32px); /* Compact & refined */
  line-height: 1.05;
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.director-name em {
  color: var(--brand-orange);
  font-style: italic;
}

.director-bio {
  color: var(--text-light);
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
}

.director-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-parallax-primary {
  background: #25D366;
  color: #000;
  padding: 11px 18px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-parallax-primary:hover {
  background: #2ee672;
}

.btn-parallax-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: #fff;
  padding: 11px 16px;
  font-size: 10.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-parallax-secondary:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.parallax-right-services {
  background: rgba(10, 11, 15, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  padding: 26px;
}

.services-column-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14.5px; /* Compact */
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.services-list-compact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.service-row-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.service-row-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--brand-orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-row-copy h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px; /* Compact */
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: 0.04em;
}

.service-row-copy p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   FLAT FORMAL FOOTER
   ========================================================================== */
.flat-footer {
  background: #050507;
  border-top: 1px solid var(--border-card);
  color: var(--text-muted);
  position: relative;
}

.footer-accent-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-orange) 50%, transparent 100%);
}

.footer-main-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px 4% 30px;
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr;
  gap: 36px;
}

.footer-brand-pane {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 350px;
}

.footer-director-meta {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.meta-label {
  display: block;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  text-transform: uppercase;
}

.meta-name {
  display: block;
  font-size: 12.5px;
  color: #fff;
  font-weight: 800;
  margin-top: 2px;
}

.footer-col-title {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.flat-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 11.5px;
  transition: all 0.2s ease;
}

.flat-contact-link:hover {
  color: var(--brand-orange);
  transform: translateX(3px);
}

.contact-icon-wrap {
  width: 28px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--brand-orange);
  display: grid;
  place-items: center;
}

.flat-contact-link:hover .contact-icon-wrap {
  border-color: var(--brand-orange);
  background: var(--brand-orange-subtle);
}

.contact-text-wrap small {
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.contact-text-wrap span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
}

.flat-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.flat-nav-list a {
  font-size: 11.5px;
  color: var(--text-muted);
}

.flat-nav-list a:hover {
  color: var(--brand-orange);
  transform: translateX(3px);
}

.footer-flat-bottom {
  border-top: 1px solid var(--border-subtle);
  background: #030304;
  padding: 14px 4%;
}

.footer-bottom-flex {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-text {
  margin: 0;
  font-size: 10.5px;
  color: var(--text-dim);
}

.copyright-text strong {
  color: var(--brand-orange);
}

.footer-bottom-tags {
  display: flex;
  align-items: center;
  gap: 14px;
}

.secure-checkout-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dim);
  font-size: 9.5px;
  font-weight: 600;
}

.flat-admin-link {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 7px;
}

.flat-admin-link:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE-FIRST RESPONSIVE BREAKPOINTS (CELULARES & TABLETS)
   ========================================================================== */

@media (max-width: 1024px) {
  .events-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .event-hero-card {
    height: 280px;
  }
  .packs-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hamb {
    display: flex;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #0D0E12;
    border-bottom: 1px solid var(--border-card);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    z-index: 1000;
  }

  /* Section Spacing on Mobile */
  .fotox-section {
    padding: 44px 0 !important;
  }

  .section-container {
    padding: 0 16px;
  }

  .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
  }

  .btn-see-all {
    width: 100%;
    text-align: center;
  }

  /* Hero on Mobile */
  .hero-camera-stage {
    min-height: auto;
    padding: 34px 0 28px;
  }
  .hero-camera-viewfinder {
    inset: 6px;
  }
  .vf-center-target {
    display: none;
  }
  .vf-bracket {
    width: 14px;
    height: 14px;
  }
  .camera-telemetry {
    position: static;
    margin-bottom: 14px;
    width: 100%;
    justify-content: space-between;
  }
  .hero-search-wrapper {
    max-width: 100%;
  }
  .hero-search-box {
    flex-direction: column;
    height: auto;
    padding: 4px;
    gap: 6px;
  }
  .hero-search-input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
  }
  .hero-search-submit {
    width: 100%;
    height: 40px;
    justify-content: center;
  }

  /* Metric Strip on Mobile */
  .stats-strip-modern {
    padding: 0 16px;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-block {
    padding: 12px;
  }

  /* Events Section 100% Mobile Fluid */
  .events-masonry-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .event-hero-card {
    height: 220px;
  }
  .event-card-overlay {
    padding: 14px;
  }
  .event-card-title {
    font-size: 16px;
  }

  /* VIP Packs on Mobile */
  .packs-grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Parallax Director CTA on Mobile */
  .fotox-parallax-cta {
    padding: 44px 0 !important;
  }
  .parallax-content-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 24px;
  }
  .director-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .btn-parallax-primary, .btn-parallax-secondary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* How Steps on Mobile */
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Footer on Mobile */
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .topline-right {
    display: none;
  }
  .header-container {
    padding: 0 12px;
  }
  .header-logo-img {
    height: 30px;
  }
  .header-actions {
    gap: 6px;
  }
  .nav-btn-outline {
    display: none;
  }

  .hero-headline {
    font-size: clamp(22px, 6.5vw, 28px);
  }
  .hero-subtitle {
    font-size: 11.5px;
  }
  .hero-badges-row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stat-block strong {
    font-size: 20px;
  }

  .event-hero-card {
    height: 200px;
  }
}

