/* =========================
   Fuentes locales
   ========================= */

/* ===== CHIVO ===== */

@font-face{
  font-family: "Chivo";
  src: url("fonts/chivo/Chivo/Fonts/Chivo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Chivo";
  src: url("fonts/chivo/Chivo/Fonts/Chivo-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face{
  font-family: "Chivo";
  src: url("fonts/chivo/Chivo/Fonts/Chivo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Chivo";
  src: url("fonts/chivo/Chivo/Fonts/Chivo-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face{
  font-family: "Chivo";
  src: url("fonts/chivo/Chivo/Fonts/Chivo-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Chivo";
  src: url("fonts/chivo/Chivo/Fonts/Chivo-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ===== JUST SANS OUTLINE ===== */

@font-face{
  font-family: "JustSansOutline";
  src: url("fonts/just_sans_outline/JUST Sans Outline Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "JustSansOutline";
  src: url("fonts/just_sans_outline/JUST Sans Outline ExBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* ========================================
   CSS VARIABLES & BASE STYLES
   ======================================== */
:root {
  /* Colors */
  --color-bg-dark: #0a0a12;
  --color-bg-darker: #050508;
  --color-bg-card: #12121f;
  --color-bg-glass: rgba(18, 18, 31, 0.85);
  --color-bg-light: #1a1a2e;
  --color-bg-section-light: #f5f5f7;
  
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.5);
  --color-text-dark: #1a1a2e;
  
  --color-accent-green: #00ff88;
  --color-accent-pink: #ff00aa;
  --color-accent-yellow: #ffdd00;
  --color-accent-purple: #8b5cf6;
  
  --gradient-neon: linear-gradient(135deg, var(--color-accent-green), var(--color-accent-pink));
  --gradient-dark: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 18, 0.7) 0%, rgba(10, 10, 18, 0.9) 100%);
  
  /* Typography */
  
  
  /* Spacing */
  --section-padding-desktop: 100px;
  --section-padding-mobile: 60px;
  --container-max-width: 1200px;
  --container-padding: 24px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow-green: 0 0 30px rgba(0, 255, 136, 0.3);
  --shadow-glow-pink: 0 0 30px rgba(255, 0, 170, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
   
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding-desktop) 0;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.section-title--center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn--primary {
  background: var(--gradient-neon);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-glow-green);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent-green);
}

.btn--secondary:hover {
  background: var(--color-accent-green);
  color: var(--color-bg-dark);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-text-primary);
  color: var(--color-text-primary);
}

.btn--outline:hover {
  background: var(--color-text-primary);
  color: var(--color-bg-dark);
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-green);
}

/* ========================================
   MARQUEE BAR (Top)
   ======================================== */
.marquee-bar {
  background: var(--color-bg-darker);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-secondary);
  padding: 0 30px;
}

.marquee-content span::after {
  content: '•';
  margin-left: 30px;
  color: var(--color-accent-green);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 10, 18, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

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

.logo-placeholder {
  padding: 10px 25px;
  border: 2px solid var(--color-accent-green);
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent-green);
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list {
  display: flex;
  gap: 35px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-green);
  transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-accent-green);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark);
  padding: 40px var(--container-padding);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-menu__link:hover {
  color: var(--color-accent-green);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}

/* Decorative Elements */
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__decor-line {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--color-accent-green), transparent);
  opacity: 0.3;
}

.hero__decor-line:nth-child(1) { left: 10%; top: 20%; transform: rotate(15deg); }
.hero__decor-line:nth-child(2) { right: 15%; top: 30%; transform: rotate(-10deg); }
.hero__decor-line:nth-child(3) { left: 20%; bottom: 20%; transform: rotate(25deg); }

.hero__decor-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid var(--color-accent-pink);
  opacity: 0.1;
}

.hero__decor-triangle:nth-child(4) { right: 10%; top: 25%; }
.hero__decor-triangle:nth-child(5) { left: 5%; bottom: 30%; transform: rotate(180deg); }

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-green);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero__title span {
  display: block;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero__dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero__dot.active {
  background: var(--color-accent-green);
  box-shadow: var(--shadow-glow-green);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100vw !important;
  opacity: 0.4;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
 
}

.page-hero__content {
  position: relative;
  z-index: 10;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.breadcrumb a:hover {
  color: var(--color-accent-green);
}

.breadcrumb span {
  color: var(--color-text-muted);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: var(--color-bg-section-light);
  color: var(--color-text-dark);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about__img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about__img-wrapper:first-child {
  grid-row: span 2;
}

.about__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__img-wrapper:hover img {
  transform: scale(1.05);
}

.about__content {
  padding: 20px 0;
}

.about__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: var(--color-text-dark);
}

.about__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* ========================================
   VIDEO BANNER SECTION
   ======================================== */
.video-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.video-banner__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.video-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.75);
}

.video-banner__content {
  position: relative;
  z-index: 10;
}

.video-banner__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-glow-green);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.play-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--color-bg-dark);
  margin-left: 5px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: var(--gradient-dark);
}

.services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.services__nav {
  display: flex;
  gap: 15px;
}

.services__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services__nav-btn:hover {
  background: var(--color-accent-green);
}

.services__nav-btn:hover svg {
  fill: var(--color-bg-dark);
}

.services__nav-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-primary);
  transition: fill var(--transition-normal);
}

.services__carousel {
  overflow: hidden;
}

.services__track {
  display: flex;
  gap: 30px;
  transition: transform var(--transition-slow);
}

.service-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow-green);
  border-color: var(--color-accent-green);
}

.service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img img {
  transform: scale(1.1);
}

.service-card__number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent-green);
  opacity: 0.8;
  line-height: 1;
}

.service-card__content {
  padding: 25px;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-green);
  transition: gap var(--transition-normal);
}

.service-card__link:hover {
  gap: 15px;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-green);
}

/* Services Grid (Services Page) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ========================================
   PHOTOS SECTION
   ======================================== */
.photos {
  background: var(--color-bg-darker);
  padding: 80px 0;
}

.photos__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.photos__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.photos__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-green);
}

.photos__link:hover {
  color: var(--color-accent-pink);
}

.photos__grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-green) var(--color-bg-card);
}

.photos__grid::-webkit-scrollbar {
  height: 6px;
}

.photos__grid::-webkit-scrollbar-track {
  background: var(--color-bg-card);
  border-radius: 3px;
}

.photos__grid::-webkit-scrollbar-thumb {
  background: var(--color-accent-green);
  border-radius: 3px;
}

.photo-item {
  flex: 0 0 250px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.photo-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.photo-item:hover .photo-item__overlay {
  opacity: 1;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-item__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-bg-dark);
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-item__icon {
  transform: scale(1);
}

.gallery-item__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-bg-dark);
}

/* Video Gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-green);
}

.video-item__thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: background var(--transition-normal);
}

.video-item:hover .video-item__play {
  background: rgba(0, 0, 0, 0.6);
}

.video-item__play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.video-item:hover .video-item__play-btn {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-green);
}

.video-item__play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-bg-dark);
  margin-left: 4px;
}

.video-item__info {
  padding: 20px;
}

.video-item__title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ========================================
   SERVICE DETAIL PAGE
   ======================================== */
.service-detail {
  padding: 80px 0;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

/* Sidebar */
.service-sidebar {
  background: var(--color-bg-section-light);
  border-radius: var(--radius-lg);
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.service-sidebar__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-accent-green);
}

.service-sidebar__list {
  display: flex;
  flex-direction: column;
}

.service-sidebar__link {
  padding: 15px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  border-left: 3px solid transparent;
  transition: all var(--transition-normal);
}

.service-sidebar__link:hover,
.service-sidebar__link.active {
  color: var(--color-accent-green);
  border-left-color: var(--color-accent-green);
  background: rgba(0, 255, 136, 0.05);
}

/* Content */
.service-content {
  color: var(--color-text-primary);
}

.service-content__img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.service-content__title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.service-content__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.service-content__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.service-content__images img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Work Process */
.work-process {
  margin-top: 50px;
}

.work-process__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.work-process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.process-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-green);
  margin-bottom: 15px;
}

.process-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact {
  padding: 80px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 500px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact__form-wrapper {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-bg-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact__form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-bg-darker);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer__brand {
  max-width: 350px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-normal);
}

.footer__link:hover {
  color: var(--color-accent-green);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer__social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.footer__social-link:hover {
  background: var(--color-accent-green);
}

.footer__social-link:hover svg {
  fill: var(--color-bg-dark);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-primary);
  transition: fill var(--transition-normal);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__copyright {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.modal__content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.modal__close:hover {
  background: var(--color-accent-green);
}

.modal__close:hover svg {
  fill: var(--color-bg-dark);
}

.modal__close svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-primary);
  transition: fill var(--transition-normal);
}

/* Video Modal */
.modal__video {
  width: 80vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
}

.modal__video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* Lightbox */
.lightbox__img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.lightbox__nav:hover {
  background: var(--color-accent-green);
}

.lightbox__nav:hover svg {
  fill: var(--color-bg-dark);
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-primary);
  transition: fill var(--transition-normal);
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    position: static;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-desktop: 70px;
    --container-padding: 20px;
  }
  
  .header__nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about__images {
    order: -1;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    flex: 0 0 280px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__map {
    min-height: 300px;
  }
  
  .work-process__grid {
    grid-template-columns: 1fr;
  }
  
  .service-content__images {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer__brand {
    grid-column: auto;
  }
  
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .page-hero {
    min-height: 300px;
  }
  
  .lightbox__nav--prev {
    left: 10px;
  }
  
  .lightbox__nav--next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .hero__content {
    padding-top: 80px;
  }
  
  .services__header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .contact__form-wrapper {
    padding: 25px;
  }
  
  .modal__close {
    top: -40px;
    width: 40px;
    height: 40px;
  }
}
/* =========================
   Tipografía NightPulse
   ========================= */

/* Texto base: CHIVO */
body{
  font-family: "Chivo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
 
  line-height: 1.6;
}

/* =========================
   TÍTULOS: JUST SANS OUTLINE
   ========================= */

.hero__title,
.page-hero__title,
.section-title,
.about__title,
.services__header h2,
.photos__title,
.video-banner__title,
.contact__form-title,
.footer__title,
.service-content__title,
.work-process__title{
   font-family: "Chivo", sans-serif;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 45px;
}

/* Hero principal */
.hero__title{
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.05;
}

/* Subtítulos hero */
.hero__subtitle,
.video-banner__subtitle{
  font-family: "Chivo", sans-serif;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
 
}

/* =========================
   TEXTOS: CHIVO
   ========================= */

p,
.about__text,
.service-card__text,
.service-content__text,
.contact__form-note,
.footer__text,
.process-card__text{
  font-family: "Chivo", sans-serif;
  font-weight: 400;
 
}

/* Links */
a{
  font-family: "Chivo", sans-serif;
  font-weight: 600;
}

/* =========================
   BOTONES: CHIVO
   ========================= */

.btn,
.play-btn,
.photos__link,
.service-card__link{
  font-family: "Chivo", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* =========================
   TEXTO CIRCULAR OUTLINE
   ========================= */

.circular-text span,
.circular-text i{
  font-family: "JustSansOutline", sans-serif;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.mobile-menu {
   z-index: 10000000000000;
  background: #fff !important;
  
}
.mobile-menu * {
   
  color: black !important;
  
}

footer, .footer{
  background:
    linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)
    ),
    url("img/event_3-600x848.jpg") center / cover no-repeat !important;
}
