* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #0e0e0e;
  color: #f2f2f2;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('img/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* BOTONES */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

.btn-primary {
  background: #c2185b;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #c2185b;
  color: #c2185b;
}

/* SECCIONES */
section {
  padding: 80px 10%;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #e91e63;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

/* PRODUCTOS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card h3 {
  margin-bottom: 10px;
  color: #ff4081;
}

/* BENEFICIOS */
.benefits ul {
  list-style: none;
  max-width: 500px;
  margin: auto;
  text-align: left;
}

.benefits li {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #880e4f, #c2185b);
  color: #fff;
}

/* FOOTER */
footer {
  background: #000;
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* MODAL +18 */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-box {
  background: #111;
  padding: 40px;
  border-radius: 15px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 30px rgba(233, 30, 99, 0.4);
}

.age-box h2 {
  color: #e91e63;
  margin-bottom: 15px;
}

.age-box p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.age-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.btn-accept {
  background: #c2185b;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.btn-deny {
  background: transparent;
  border: 2px solid #555;
  color: #aaa;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
}

.btn-accept:hover {
  background: #e91e63;
}

.btn-deny:hover {
  border-color: #999;
  color: #fff;
}
