/* Estilos Específicos por Sección */

/* --- 1. SECCIÓN HERO --- */
.hero-section {
  background-color: var(--color-bg-dark);
  background-image: var(--gradient-hero-overlay), url("../images/bg-dark.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--color-text-dark);
  padding: 4rem 0;
}

.hero-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-tag {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
  text-align: center;
}

.hero-section h1 {
  color: var(--color-magenta);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 22px;
  text-align: center;
  line-height: 1.35;
  max-width: 900px;
  margin-bottom: 3.5rem;
  color: var(--color-text-dark);
}

.hero-columns-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.hero-image-col {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.hero-image-col img {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 800 / 850;
  object-fit: cover;
}

.hero-text-col {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text-col p {
  color: var(--color-text-dark);
}

/* --- 2. BANDA MAGENTA --- */
.magenta-band-section {
  background-color: var(--color-magenta);
  color: var(--color-text-light);
  padding: 4rem 0;
  text-align: center;
}

.magenta-band-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.magenta-band-text {
  font-size: 22px;
  text-align: center;
  line-height: 1.35;
}

.magenta-band-section h3 {
  margin: 15px 0;
  color: var(--color-text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* --- 3. SECCIÓN BENEFICIOS Y FORMULARIO --- */
.benefits-section {
  background-color: var(--color-bg-light);
  background-image: var(--gradient-tarot-overlay), url("../images/graphic-tarot.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--color-text-dark);
  padding: 5rem 0;
}

.benefits-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-section h3 {
  color: var(--color-magenta);
  text-align: center;
  margin-bottom: 2.5rem;
}

.benefits-mockup-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 3rem;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.benefit-item img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-content h5 {
  color: var(--color-text-dark);
  font-weight: 700;
  text-align: left;
}

.benefit-content p {
  color: var(--color-text-muted);
}

/* Bloque Formulario */
.form-wrapper-block {
  width: 100%;
  max-width: 600px;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

/* --- 4. PIE DE PÁGINA --- */
.footer-section {
  background-color: var(--color-bg-dark);
  color: #9e9e9e;
  padding: 20px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  text-decoration: underline;
  color: #9e9e9e;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-text-light);
}

.footer-claim-link {
  font-size: 18px;
  text-decoration: underline;
  color: #9e9e9e;
}
