/* === Sección 6 Target/Resultados - Rediseño total, profesional y creativo === */
.target {
  --target-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --target-duration: 0.6s;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  min-height: 110vh;
}
@media (max-width: 767px) {
  .target {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }
}

/* Fondo: imagen difuminada + overlay oscuro */
.target__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.target__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/images/gemma-ojeda (18).jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px) brightness(0.4);
  transform: scale(1.05);
  z-index: 0;
}

.target__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(155deg, rgba(44, 44, 44, 0.85) 0%, rgba(58, 58, 56, 0.88) 40%, rgba(74, 74, 69, 0.86) 70%, rgba(90, 90, 82, 0.84) 100%);
  z-index: 1;
}

/* Elementos decorativos circulares */
.target__bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 2;
  pointer-events: none;
}
.target__bg-circle:nth-of-type(1) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 184, 150, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: targetFloat1 20s ease-in-out infinite;
}
.target__bg-circle:nth-of-type(2) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(140, 133, 87, 0.25) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
  animation: targetFloat2 18s ease-in-out infinite;
}

@keyframes targetFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
}
@keyframes targetFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -30px) scale(1.15); }
}

/* Contenedor principal */
.target__container {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header: título principal - Rediseño profesional sin fondos */
.target__content {
  position: relative;
  margin-bottom: 5.5rem;
  text-align: center;
  opacity: 0;
  animation: targetFadeIn 1s var(--target-ease) 0.3s forwards;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  background: none !important;
}
@media (max-width: 767px) {
  .target__content {
    margin-bottom: 3.5rem;
    padding: 0 1rem;
  }
}

.target__title {
  display: block;
  margin: 0;
  background: none !important;
  text-align: center;
}

.target__title-main {
  display: block;
  font-family: "Editor's Note", serif;
  font-weight: 200;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #E8E2D5;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);
  margin: 0 0 1rem 0;
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.target__title-main em {
  font-style: italic;
  color: #C4B896;
  background: none !important;
}

.target__title-sub {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(232, 226, 213, 0.65);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Grid de resultados: 2x2 - Rediseño profesional elegante */
.target__results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  margin-bottom: 6rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 899px) {
  .target__results {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
}

.target__result-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(248, 246, 242, 0.04) 0%, rgba(232, 226, 213, 0.06) 100%);
  border: 1px solid rgba(232, 226, 213, 0.15);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: targetSlideUp 0.8s var(--target-ease) forwards;
  transition: all var(--target-duration) var(--target-ease);
}
.target__result-item:nth-child(1) { animation-delay: 0.5s; }
.target__result-item:nth-child(2) { animation-delay: 0.6s; }
.target__result-item:nth-child(3) { animation-delay: 0.7s; }
.target__result-item:nth-child(4) { animation-delay: 0.8s; }

.target__result-item:hover {
  background: linear-gradient(135deg, rgba(248, 246, 242, 0.08) 0%, rgba(232, 226, 213, 0.12) 100%);
  border-color: rgba(196, 184, 150, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Número elegante con línea decorativa */
.target__result-num {
  flex-shrink: 0;
  position: relative;
  font-family: "Editor's Note", serif;
  font-weight: 200;
  font-size: 5rem;
  color: rgba(196, 184, 150, 0.25);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--target-duration) var(--target-ease);
  pointer-events: none;
}
@media (max-width: 767px) {
  .target__result-num {
    font-size: 4rem;
  }
}

.target__result-num::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 184, 150, 0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--target-duration) var(--target-ease);
}

.target__result-item:hover .target__result-num {
  color: rgba(232, 226, 213, 0.4);
  transform: scale(1.08);
}

.target__result-item:hover .target__result-num::after {
  opacity: 1;
}

/* Contenido del resultado */
.target__result-content {
  flex: 1;
  min-width: 0;
}

.target__result-title {
  font-family: "Walkway", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: #F8F6F2;
  margin: 0 0 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: color var(--target-duration) var(--target-ease);
}

.target__result-item:hover .target__result-title {
  color: #E8E2D5;
}

.target__result-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.75;
  color: rgba(232, 226, 213, 0.8);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Sección "Es para ti si..." - Integrada de forma más creativa */
.target__side {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 3.5rem 3rem;
  background: linear-gradient(135deg, rgba(107, 127, 89, 0.15) 0%, rgba(140, 133, 87, 0.12) 50%, rgba(107, 127, 89, 0.15) 100%);
  border-left: 4px solid #C4B896;
  border-radius: 0 1rem 1rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: targetSlideRight 0.9s var(--target-ease) 1s forwards;
}
@media (max-width: 767px) {
  .target__side {
    padding: 2.5rem 2rem;
  }
}

.target__box {
  display: block;
}

.target__subtitle {
  font-family: "Editor's Note", serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #E8E2D5;
  margin: 0 0 2.5rem;
  line-height: 1.3;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* Lista de items con checks - Grid de 2 columnas */
.target__list {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
@media (max-width: 767px) {
  .target__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.target__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  animation: targetFadeIn 0.6s var(--target-ease) forwards;
  transition: all var(--target-duration) var(--target-ease);
}
.target__item:nth-child(1) { animation-delay: 1.2s; }
.target__item:nth-child(2) { animation-delay: 1.3s; }
.target__item:nth-child(3) { animation-delay: 1.4s; }
.target__item:nth-child(4) { animation-delay: 1.5s; }
.target__item:nth-child(5) { animation-delay: 1.6s; }
.target__item:nth-child(6) { animation-delay: 1.7s; }

.target__item:hover {
  opacity: 1;
}

.target__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  background: #C4B896;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(196, 184, 150, 0.4);
  transition: all var(--target-duration) var(--target-ease);
  will-change: transform;
}

.target__item:hover .target__icon {
  background: #E8E2D5;
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 20px rgba(232, 226, 213, 0.5);
}

.target__item-content {
  flex: 1;
  min-width: 0;
}

.target__item-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: rgba(232, 226, 213, 0.95);
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.target__item-text strong {
  font-weight: 600;
  color: #C4B896;
  transition: color var(--target-duration) var(--target-ease);
}

.target__item:hover .target__item-text strong {
  color: #E8E2D5;
}

/* Botón CTA */
.target__cta-box {
  text-align: center;
  margin: 0;
  padding-top: 1rem;
}

.target__cta-box .btn {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  font-family: "Walkway", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #2c2c2c;
  background: linear-gradient(135deg, #E8E2D5 0%, #C4B896 100%);
  border: none;
  border-radius: 3rem;
  box-shadow: 0 8px 28px rgba(196, 184, 150, 0.4);
  transition: all var(--target-duration) var(--target-ease);
  text-shadow: none;
}
@media (max-width: 767px) {
  .target__cta-box .btn {
    padding: 1.25rem 2.5rem;
    font-size: 0.95rem;
  }
}

.target__cta-box .btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 40px rgba(196, 184, 150, 0.6);
  background: linear-gradient(135deg, #F8F6F2 0%, #E8E2D5 100%);
}

/* Icono decorativo: ocultar */
.target__icon-decorative {
  display: none;
}

/* Barra de valores inferior - Carrusel infinito */
.target__values {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.6) 0%, rgba(58, 58, 56, 0.65) 50%, rgba(44, 44, 44, 0.6) 100%);
  border-top: 3px solid rgba(196, 184, 150, 0.25);
  backdrop-filter: blur(10px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.target__values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: targetCarousel 30s linear infinite;
}

@keyframes targetCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.target__value {
  font-family: "Walkway", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #E8E2D5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 0 2rem;
}

.target__value::after {
  content: "•";
  position: absolute;
  right: 0;
  color: rgba(196, 184, 150, 0.5);
  font-weight: 400;
}

/* Animaciones */
@keyframes targetFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes targetSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes targetSlideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
