
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  padding: 2rem 1rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  max-width: 1500px;
  margin: auto;
}

/* Logo encima del título */
.logo-main {
  width: 100px;       
  display: block;
  margin-bottom: 2rem;
}

/* Texto */
.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-black {
  background: #000;
  color: #fff;
}
.btn-black:hover { background: #333; }
.btn-white {
  background: #fff;
  border: 1px solid #ccc;
  color: #222;
}
.btn-white:hover { border-color: #000; color: #000; }

/* Features bar */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  max-width: 700px;
  text-align: center;
  background: #fff;
}
.feature .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.4rem;
}
.feature p {
  font-size: 0.95rem;
  color: #333;
}

/* Imagen  */
.hero-image {
  text-align: center;
}
.image-wrapper {
  position: relative;
  display: inline-block;
}
.watch {
  width: 100%;
  max-width: 750px; 
  height: 800px;     
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Badges */
.badge {
  position: absolute;
  background: #635bff;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.badge.top { top: 15px; right: 20px; }
.badge.bottom { bottom: 20px; left: 20px; }

/* Decoraciones */
.decor {
  position: absolute;
  font-size: 2.5rem;
  color: #000;
}
.star.top-left { top: -30px; left: -30px; }
.star.bottom-right { bottom: -30px; right: -30px; }

/* Responsive */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .buttons { justify-content: center; }
  .features-bar { margin: 0 auto; }
  .watch { max-width: 100%; height: auto; }
  .logo-main { width: 160px; margin: 0 auto 1.5rem; }
}
@media (max-width: 600px) {
  .hero-text h1 { font-size: 2rem; }
  .features-bar { grid-template-columns: 1fr 1fr; }
}
