body {
  padding-top: 0;
}

/* ===============================
   HERO
================================ */
/* ===============================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ===== Video ===== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.90) contrast(1.05);
}

/* ===== Overlay (solo video) ===== */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

/* ===== Content ===== */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-content {
  max-width: 720px;
}

/* ===== Text ===== */

.hero-tag {
  display: inline-block;
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: var(--border-strong);
  border-radius: var(--radius-full);
  background: rgba(255, 209, 0, 0.05);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.hero-title span {
  color: var(--color-accent);
  text-shadow: var(--shadow-glow-accent);
}

.hero-description {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ===============================
   RESPONSIVE (sin variables)
================================ */

@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 var(--space-5);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-actions {
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tag {
    font-size: 0.7rem;
  }
}






/* ===============================
   SERVICES
================================ */

.services {
  background: var(--color-bg-light);
  padding: var(--space-16) 0;
}

.services-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ===== Header ===== */

.services-header {
  max-width: 640px;
  margin-bottom: var(--space-12);
}

.section-tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: var(--border-strong);
  border-radius: var(--radius-full);
  background: rgba(255, 209, 0, 0.05);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-title span {
  color: var(--color-accent);
}

.section-description {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ===== Services List (FLEX) ===== */

.services-list {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* ===== Cards ===== */

.service-card {
  flex: 1 1 calc(25% - var(--space-6));
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  border: var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(255, 209, 0, 0.25);
}

.service-card-accent {
  border-color: rgba(255, 209, 0, 0.35);
  box-shadow: var(--shadow-glow-primary);
}

/* ===== Icon ===== */

.service-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

/* ===== Text ===== */

.service-title {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.service-text {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ===== CTA ===== */

.services-cta {
  margin-top: var(--space-12);
}

/* ===============================
   RESPONSIVE (FLEX)
================================ */

@media (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - var(--space-6));
  }
}

@media (max-width: 768px) {
  .services {
    padding: var(--space-12) 0;
  }

  .section-description {
    font-size: var(--text-base);
  }

  .service-card {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 1 1 100%;
  }
}















/* ===============================
   GALLERY
================================ */

.gallery {
  background: var(--color-bg);
  padding: var(--space-16) 0;
}

.gallery-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ===== Header ===== */

.gallery-header {
  max-width: 640px;
  margin-bottom: var(--space-12);
}

/* reutiliza section-tag, section-title, section-description */

/* ===== Gallery List ===== */

.gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

/* ===== Items ===== */

.gallery-item {
  position: relative;
  flex: 1 1 calc(33.333% - var(--space-6));
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-soft);
}

.gallery-item-large {
  flex: 2 1 calc(66.666% - var(--space-6));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* ===== Overlay ===== */

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-info {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
}

.gallery-info h3 {
  font-family: var(--font-title);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.gallery-info span {
  font-size: var(--text-sm);
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Hover Effects ===== */

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== CTA ===== */

.gallery-cta {
  margin-top: var(--space-12);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .gallery-item,
  .gallery-item-large {
    flex: 1 1 calc(50% - var(--space-6));
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: var(--space-12) 0;
  }

  .gallery-item {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .gallery-item,
  .gallery-item-large {
    flex: 1 1 100%;
  }

  .gallery-item {
    height: 240px;
  }
}







/* ===============================
   ABOUT
================================ */

.about {
  background: var(--gradient-dark);
  padding: var(--space-16) 0;
}

.about-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  gap: var(--space-12);
  align-items: center;
}

/* ===== Content ===== */

.about-content {
  flex: 1 1 55%;
}

.about-text {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

/* ===== Features ===== */

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
}

.about-feature i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* ===== CTA ===== */

.about-cta {
  margin-top: var(--space-6);
}

/* ===== Visual ===== */

.about-visual {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-video {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}


/* Overlay cinematográfico */

.about-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .about-container {
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
   .about {
    padding: var(--space-12) 0;
  }

  .about-container {
    flex-direction: column;
  }

  .about-content,
  .about-visual {
    flex: 1 1 100%;
  }

  .about-visual {
    width: 100%;
    margin-top: var(--space-6);
  }

  .about-video {
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }

  .about-text {
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  .about-video {
    height: 360px;
  }

  .about-features {
    gap: var(--space-3);
  }
}













/* ===============================
   CTA / CONTACTO
================================ */

.cta {
  padding: var(--space-16) 0;
  background: linear-gradient(
    180deg,
    var(--color-primary-dark),
    var(--color-primary)
  );

      border: var(--border-light);
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 100vh;
}

.cta-container {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta .section-tag {
  margin-bottom: var(--space-4);
}

.cta .section-title {
  max-width: 820px;
  margin-bottom: var(--space-4);
}

.cta .section-title span {
  color: var(--color-accent);
}

.cta-text {
  max-width: 620px;
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

/* ===== Actions ===== */

.cta-actions {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.cta-action i {
  font-size: 1.6rem;
  color: var(--color-accent);
}

/* ===== Mobile ===== */

@media (max-width: 768px) {
  .cta {
    padding: var(--space-16) 0;
  }

  .cta-text {
    font-size: var(--text-base);
  }

  .cta-actions {
    gap: var(--space-5);
  }
}
