/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #282c3a;
  color: #fff;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header styles */
.header {
  background-color: #282c3a;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}

.logo-pink {
  color: #e91e63;
}

.logo-dot {
  color: #e91e63;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.3s ease;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 3px;
  background-color: #e91e63;
  border-radius: 2px;
}

/* Hero section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-text h2 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #888;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn {
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #e91e63;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
}

.btn-primary:hover {
  background-color: #c2185b;
}

.btn-link {
  color: #fff;
  font-weight: 700;
  border: none;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 2px solid transparent;
}

.btn-link:hover {
  border-bottom-color: #fff;
}

.arrow {
  font-size: 1.2rem;
}

/* Hero image */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 3rem;
  object-fit: cover;
  max-height: 600px;
}

/* Features section */
.features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #44475a;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  cursor: default;
}

.feature-icon {
  width: 24px;
  height: 24px;
  stroke: #e91e63;
  flex-shrink: 0;
}

/* Asegurar que los enlaces funcionen */
a[href] {
  pointer-events: auto !important;
  cursor: pointer !important;
}
