/* =====================================================
   RESET & BASE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}


/* =====================================================
   HEADER
===================================================== */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 60px;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 4px;
}

.main-header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-header nav a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.main-header nav a:hover {
  opacity: 0.6;
}


/* =====================================================
   HERO SECTION (VIDEO BACKGROUND FIX)
===================================================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: relative;
}

/* VIDEO COMO FONDO REAL */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  min-width: 100%;
  min-height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;

  /* ajustes visuales seguros */
  filter: contrast(1.05) saturate(0.9);
}

/* CONTENIDO */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.hero button {
  background: #ff3b00;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero button:hover {
  background: #e63600;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
}



/* =====================================================
   SECTIONS BASE
===================================================== */
.section {
  padding: 120px 10%;
  background: #fff;
  color: #000;
}

.section.dark {
  background: #000;
  color: #fff;
}

.section h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 30px;
}

.section-text {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 16px;
  opacity: 0.85;
}


/* =====================================================
   CONCEPT CARDS
===================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.card {
  background: #ff3b00;
  color: #fff;
  padding: 35px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(255, 140, 66, 0.25);
}

.card:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}


/* =====================================================
   PRODUCTOS
===================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.product-card {
  text-align: center;
}

.product-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* PROXIMAMENTE – SIMPLE Y ESTABLE */
.soon-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.85);
  text-shadow:
    0 0 8px rgba(0,0,0,0.6),
    0 0 16px rgba(0,0,0,0.4);

  pointer-events: none;
  transition: opacity 0.4s ease;
}

.product-card:hover .soon-label {
  opacity: 0;
}


/* =====================================================
   GALERÍA + REELS
===================================================== */
.section-header {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.media-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.media-card {
  flex: 0 0 300px;
  height: 400px;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.05);
}


/* =====================================================
   CONTACT & FOOTER
===================================================== */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact-links a {
  color: #ff3b00;
  letter-spacing: 2px;
  font-size: 13px;
  text-decoration: none;
}

footer {
  background: #000;
  padding: 40px;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .main-header {
    padding: 0 30px;
  }

  .main-header nav ul {
    gap: 15px;
  }
}

/* =====================================================
   CONCEPT VIDEO SECTION
===================================================== */

#concept-video {
  padding: 120px 10%;
}

.concept-video-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.concept-text {
  max-width: 420px;
}

.concept-text h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.concept-text p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

/* CONTENEDOR DEL VIDEO */
.video-container {
  width: 360px;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .concept-video-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    text-align: center;
  }

  .concept-text {
    max-width: 100%;
  }

  .video-container {
    width: 100%;
    max-width: 320px;
    height: 420px;
  }
}

