*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  z-index: 20;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 24px;         /* ajusta aquí si lo quieres más grande */
  letter-spacing: -0.5px;  /* ESPACIADO EXACTO DE TU IMAGEN */
  text-transform: uppercase;
  color: #ffffff;
}


.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  opacity: 0.9;
}

.menu .cta-link {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #fff;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        
  object-position: center 30%;  /* equilibrio perfecto */
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 18vh;
  transform: translateX(-50%);
  text-align: center;
  max-width: 720px;
  padding: 0 16px;
}

.hero-content h1 {
  font-size: clamp(40px, 7vw, 80px);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 16px;
  color: #d0d0d0;
  margin: 0 0 24px;
}

.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background-color: #fff;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  border: none;
}

.section {
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.about h2,
.contact h2,
.join h2 {
  font-size: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about p {
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 15px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  text-align: left;
}

.product-card {
  width: min(260px, 100%);
}

.product-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 400;
}

.product-card p {
  margin: 0;
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.5;
}

.manifesto {
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  color: #f5f5f5;
}

.join {
  text-align: center;
}

.join p {
  color: #bdbdbd;
  margin-bottom: 24px;
}

.join-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.join-form input[type="email"] {
  min-width: 260px;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.join-form input::placeholder {
  color: #777;
}

.small-note {
  font-size: 12px;
  color: #777;
}

.contact p {
  margin: 4px 0;
  color: #d0d0d0;
}

.contact a {
  text-decoration: underline;
}

.whatsapp {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #25D366;
  color: #25D366;
  font-size: 13px;
}

.footer {
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 32px 16px;
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .nav {
    padding: 0 16px;
  }
  .menu {
    display: none;
  }
}
