/* ============================================================
   GRETA WOO CUSTOMIZER — HOME COMPONENTS CSS
   Estilos para los componentes que se usan en el Home
   (Strip, Dual, Pirámide educativa, Quiz, Testimonios, Instagram, Newsletter, FAQ)
   ============================================================ */

/* ===== STRIP DE GARANTÍAS ===== */
.gw-promostrip {
  background: var(--gw-dark);
  color: var(--gw-primary);
  display: flex;
  justify-content: space-around;
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 14px;
}
.gw-promo-item {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gw-sans);
}
.gw-promo-ico {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gw-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

/* ===== DUAL QD/QK ===== */
.gw-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gw-dual-card {
  position: relative;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
}
.gw-dual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
}
.gw-dual-card > * {
  position: relative;
  z-index: 2;
}
.gw-dual-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--gw-sans);
}
.gw-dual-female .gw-dual-eyebrow { color: #fff; }
.gw-dual-male .gw-dual-eyebrow { color: var(--gw-primary); }
.gw-dual-title {
  font-family: var(--gw-serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 6px;
  line-height: 1.1;
  color: #fff;
}
.gw-dual-meta {
  font-size: 13px;
  margin: 0 0 18px;
  line-height: 1.5;
  font-family: var(--gw-sans);
}
.gw-dual-female .gw-dual-meta { color: #fbeaf0; }
.gw-dual-male .gw-dual-meta { color: #d4ccc0; }
.gw-dual-link {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 9px 0;
  width: fit-content;
  border-bottom: 1px solid;
  font-family: var(--gw-sans);
  color: #fff;
  border-color: #fff;
}
.gw-dual-male .gw-dual-link {
  color: var(--gw-primary);
  border-color: var(--gw-primary);
}

/* ===== PIRÁMIDE OLFATIVA EDUCATIVA (HOME) ===== */
.gw-pyramid-edu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
  font-family: var(--gw-sans);
}
.gw-pyramid-edu {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.gw-pyr-block {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gw-serif);
  font-size: 16px;
  font-style: italic;
  color: #fff;
  text-align: center;
  border-radius: 3px 3px 0 0;
  letter-spacing: 1px;
}
.gw-pyr-base {
  width: 280px;
  height: 130px;
  background: linear-gradient(180deg, #A86932 0%, var(--gw-pyramid-base) 100%);
}
.gw-pyr-heart {
  width: 200px;
  height: 110px;
  background: linear-gradient(180deg, #E89090 0%, var(--gw-pyramid-heart) 100%);
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
}
.gw-pyr-top {
  width: 120px;
  height: 90px;
  background: linear-gradient(180deg, #F5DC8A 0%, var(--gw-pyramid-top) 100%);
  color: #7a5a18;
  position: absolute;
  bottom: 240px;
  left: 50%;
  transform: translateX(-50%);
}
.gw-pyr-info h3 {
  font-family: var(--gw-serif);
  font-size: 28px;
  color: var(--gw-dark);
  margin: 0 0 14px;
  font-weight: 400;
  line-height: 1.2;
}
.gw-pyr-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 22px;
}
.gw-pyr-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gw-pyr-leg-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gw-pyr-leg-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.gw-pyr-leg-dot.gw-top { background: var(--gw-pyramid-top); }
.gw-pyr-leg-dot.gw-heart { background: var(--gw-pyramid-heart); }
.gw-pyr-leg-dot.gw-base { background: var(--gw-pyramid-base); }
.gw-pyr-leg-text strong {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
  color: var(--gw-dark);
}
.gw-pyr-leg-text span {
  color: var(--gw-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* ===== QUIZ OLFATIVO ===== */
.gw-quiz-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--gw-cream);
  border: 0.5px solid var(--gw-cream-dark);
  border-radius: 6px;
  padding: 36px;
  text-align: center;
  font-family: var(--gw-sans);
}
.gw-quiz-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gw-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.gw-quiz-title {
  font-family: var(--gw-serif);
  font-size: 28px;
  color: var(--gw-dark);
  margin: 0 0 8px;
  font-weight: 400;
}
.gw-quiz-sub {
  font-size: 13px;
  color: var(--gw-text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}
.gw-quiz-q {
  font-size: 13px;
  color: var(--gw-dark);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 20px;
}
.gw-quiz-opts {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.gw-quiz-opt {
  padding: 10px 18px;
  border: 0.5px solid var(--gw-dark);
  background: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gw-dark);
  cursor: pointer;
  font-weight: 500;
  font-family: var(--gw-sans);
  transition: all .2s;
}
.gw-quiz-opt:hover { background: var(--gw-cream-dark); }
.gw-quiz-opt.active {
  background: var(--gw-dark);
  color: var(--gw-primary);
  border-color: var(--gw-dark);
}
.gw-quiz-progress {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.gw-quiz-dot {
  width: 24px;
  height: 3px;
  background: var(--gw-cream-dark);
  border-radius: 2px;
  transition: background .3s;
}
.gw-quiz-dot.active { background: var(--gw-primary); }
.gw-quiz-result { display: none; text-align: center; }
.gw-quiz-result.active { display: block; }
.gw-quiz-result h4 {
  font-family: var(--gw-serif);
  font-size: 24px;
  color: var(--gw-dark);
  margin: 0 0 8px;
}
.gw-quiz-result p {
  font-size: 13px;
  color: #666;
  margin: 0 0 20px;
}
.gw-quiz-cta {
  background: var(--gw-dark);
  color: var(--gw-primary);
  padding: 13px 26px;
  border: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* ===== TESTIMONIOS ===== */
.gw-test-wrapper {
  background: var(--gw-dark);
  color: #fff;
  padding: 60px 30px;
  text-align: center;
  margin: 0;
  font-family: var(--gw-sans);
}
.gw-test-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gw-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.gw-test-h {
  font-family: var(--gw-serif);
  font-size: 28px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 400;
}
.gw-test-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gw-primary);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.gw-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 30px auto 0;
}
.gw-test-card {
  text-align: left;
  border-left: 1px solid var(--gw-primary);
  padding: 8px 16px;
}
.gw-test-stars {
  color: var(--gw-primary);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.gw-test-text {
  font-size: 13px;
  color: #d4ccc0;
  line-height: 1.6;
  margin: 0 0 12px;
  font-style: italic;
}
.gw-test-author {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gw-primary);
  text-transform: uppercase;
  font-weight: 500;
}
.gw-test-product {
  font-size: 9px;
  color: var(--gw-text-muted);
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ===== INSTAGRAM GRID ===== */
.gw-insta-handle {
  font-size: 13px;
  color: var(--gw-primary);
  letter-spacing: 2px;
  margin-top: 6px;
  font-weight: 500;
  text-align: center;
  font-family: var(--gw-sans);
}
.gw-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 30px auto 0;
}
.gw-insta-tile {
  aspect-ratio: 1/1;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gw-insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.gw-insta-tile:hover img { transform: scale(1.05); }

/* ===== NEWSLETTER ===== */
.gw-news-card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--gw-sans);
}
.gw-news-title {
  font-family: var(--gw-serif);
  font-size: 28px;
  color: var(--gw-dark);
  margin: 0 0 10px;
  font-weight: 400;
}
.gw-news-sub {
  font-size: 13px;
  color: #666;
  margin: 0 0 22px;
  line-height: 1.6;
}
.gw-news-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}
.gw-news-input {
  flex: 1;
  padding: 14px 16px;
  border: 0.5px solid var(--gw-dark);
  background: #fff;
  font-size: 13px;
  color: var(--gw-dark);
  outline: none;
  font-family: var(--gw-sans);
}
.gw-news-btn {
  background: var(--gw-dark);
  color: var(--gw-primary);
  border: none;
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--gw-sans);
}
.gw-news-btn:hover {
  background: #000;
  color: #fff;
}
.gw-news-disclaimer {
  font-size: 10px;
  color: #999;
  margin-top: 12px;
  letter-spacing: .5px;
}

/* ===== FAQ ACORDEÓN ===== */
.gw-faq-list {
  max-width: 680px;
  margin: 30px auto 0;
  font-family: var(--gw-sans);
}
.gw-faq-item {
  border-bottom: 0.5px solid var(--gw-border);
  padding: 18px 0;
}
.gw-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gw-dark);
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .3px;
}
.gw-faq-toggle {
  color: var(--gw-primary);
  font-size: 20px;
  font-weight: 300;
  transition: transform .25s ease;
}
.gw-faq-a {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}
.gw-faq-item.open .gw-faq-a { display: block; }
.gw-faq-item.open .gw-faq-toggle { transform: rotate(45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gw-dual { grid-template-columns: 1fr; }
  .gw-promostrip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .gw-pyr-base { width: 240px; }
  .gw-pyr-heart { width: 170px; }
  .gw-pyr-top { width: 100px; }
  .gw-pyramid-edu-section { grid-template-columns: 1fr; }
  .gw-test-grid { grid-template-columns: 1fr; }
  .gw-insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gw-news-form { flex-direction: column; }
}
