/* ===============================
   BASE
================================= */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  color: #1f2937;
}

body {
  padding-top: 80px;
  background-color: #ffffff;
}

/* ===============================
   HEADER / NAV (GLASS EFFECT)
================================= */
.header {
  position: fixed;
  top: 0;
  min-height: 100px;
  width: 100%;
  z-index: 1000;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 40px;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 40px;
  min-height: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
}

#navegador {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
}

.menu a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  color: #111827;
}

/* Hover elegante */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #111827;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===============================
   HERO
================================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.65) 100%
  );
}

/* ===============================
   SECCIONES
================================= */
.section {
  padding: 120px 80px;
}

.section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section p {
  margin: auto;
  text-align: center;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
}

/* ===============================
   IMÁGENES
================================= */
.images {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.images img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  flex: 1;

  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.images img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.single-img {
  width: 60%;
  display: block;
  margin: 50px auto;
  border-radius: 16px;
}

/* ===============================
   TABLA MODERNA
================================= */
.my-table {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.my-table thead {
  background: linear-gradient(90deg, #111827, #374151);
  color: white;
}

.my-table th {
  padding: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.my-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.my-table tbody tr {
  transition: all 0.2s ease;
}

.my-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.my-table tbody tr:hover {
  background-color: #f3f4f6;
  transform: scale(1.01);
}

.my-table td:first-child {
  font-weight: 600;
}

/* ===============================
   PRIVATE LABEL (LUJO)
================================= */
#PrivateLabel {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

#PrivateLabel h2 {
  font-size: 2.6rem;
  text-align: center;
}

#PrivateLabel p {
  max-width: 900px;
  margin: 0 auto 15px;
  font-size: 18px;
}

#PrivateLabel .images {
  justify-content: center;
  flex-wrap: wrap;
}

#PrivateLabel .images img {
  max-width: 420px;
}

/* ===============================
   CONTACTO
================================= */
.contact-section {
  background: #f5f5f5;
  padding: 120px 20px;
}

.contact-card {
  background: white;
  max-width: 700px;
  margin: auto;
  padding: 40px;
  border-radius: 16px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-card p {
  font-size: 18px;
}

.contact img {
  width: 100%;
  max-width: 400px; /* opcional */
  height: auto;
  display: block;
}

/* ===============================
   ANIMACIÓN
================================= */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 768px) {

  body {
    padding-top: 70px;
  }

  .header {
    padding: 10px 20px;
  }

  #navegador {
    height: 70px;
  }

  .logo {
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .hero {
    height: 60vh;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .section p {
    font-size: 16px;
  }

  .images {
    flex-direction: column;
  }

  .images img {
    height: 220px;
  }

  .single-img {
    width: 100%;
  }

  #PrivateLabel h2 {
    font-size: 1.8rem;
  }

  #PrivateLabel p {
    font-size: 16px;
  }

  #PrivateLabel .images img {
    width: 100%;
    height: 260px;
  }

  .my-table thead {
    display: none;
  }

  .my-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 12px;
    padding: 12px;
    background: white;
  }

  .my-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
  }

}

