* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Header tema claro ── */
header {
  box-shadow: 0px -1px 12px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
}
header .menu a { color: #000000; }
header .logo img { filter: none; }
header .btn #spn1, #spn2, #spn3 { background-color: #101010; }
header .user img {
  filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(62deg) brightness(107%) contrast(101%);
}
header .Bag .buy {
  filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(62deg) brightness(107%) contrast(101%);
}
header .count-products {
  background: #000000;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}
header .count-products span { color: #f0f0f0; }

/* ── Base ── */
body {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
}
.section {
  max-width: 1550px;
  margin: 0 auto;
}

/* ── Portada ── */
.contenedor_seccion {
  padding: 130px 10% 50px;
  text-align: center;
}
.cover-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand);
  background: rgba(4, 141, 152, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contenedor_seccion h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #111;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.contenedor_seccion h1 b {
  color: var(--color-brand);
  font-weight: 700;
}
.contenedor_seccion > p {
  font-size: 1rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Layout principal ── */
.arreglo_base_secciones {
  padding: 20px 10% 60px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

/* ── Encabezados de sección ── */
.pol-section-title {
  border-bottom: 2px solid rgba(4, 141, 152, 0.18);
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.pol-section-title h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand);
  text-align: left;
}

/* ── Políticas (columna principal) ── */
.politicas {
  flex: 1;
  min-width: 0;
}

/* ── Badge versión ── */
.version-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: #888;
  font-style: italic;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* ── Acordeón de políticas ── */
.politica {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 3px solid transparent;
  transition: border-left-color 0.25s;
}
.politica:has(.descripcion_politica.show) {
  border-left-color: var(--color-brand);
}
.titulo_politica {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
}
.titulo_politica:hover {
  background: rgba(4, 141, 152, 0.04);
}
.politica:has(.descripcion_politica.show) .titulo_politica {
  background: rgba(4, 141, 152, 0.06);
}
.titulo_politica h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  padding: 0;
}
.titulo_politica img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(1800%) hue-rotate(155deg) brightness(92%) contrast(102%);
}
.politica:has(.descripcion_politica.show) .titulo_politica img {
  transform: rotate(180deg);
}

.descripcion_politica {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  text-align: left;
}
.descripcion_politica.show {
  max-height: 1400px;
  opacity: 1;
  padding: 4px 18px 20px;
}
.descripcion_politica h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin: 14px 0 6px;
}
.descripcion_politica h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin: 10px 0 5px;
}
.descripcion_politica p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ── FAQs (sidebar) ── */
.FAQs {
  width: 35%;
  flex-shrink: 0;
}

.FAQ {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 3px solid transparent;
  transition: border-left-color 0.25s;
}
.FAQ:has(.respuesta_pregunta.show) {
  border-left-color: var(--color-brand);
}
.pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.pregunta:hover {
  background: rgba(4, 141, 152, 0.04);
}
.FAQ:has(.respuesta_pregunta.show) .pregunta {
  background: rgba(4, 141, 152, 0.06);
}
.pregunta h3 {
  font-size: 0.87rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  line-height: 1.4;
  padding: 0;
}
.pregunta img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(1800%) hue-rotate(155deg) brightness(92%) contrast(102%);
}
.FAQ:has(.respuesta_pregunta.show) .pregunta img {
  transform: rotate(180deg);
}
.respuesta_pregunta {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  text-align: left;
}
.respuesta_pregunta.show {
  max-height: 600px;
  opacity: 1;
  padding: 4px 16px 16px;
}
.respuesta_pregunta p {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 6px;
}
@media (min-width: 1600px) {
  .contenedor_seccion {
    padding: 130px 130px 50px;
  }
  .arreglo_base_secciones {
    padding: 40px 130px 60px;
  }
}
@media (max-width: 1100px) {
  .FAQs {
    width: 280px;
  }
}
@media (max-width: 850px) {
  .arreglo_base_secciones {
    flex-direction: column;
    padding: 0 4% 60px;
    gap: 32px;
  }
  .politicas {
    width: 100%;
  }
  .FAQs {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .contenedor_seccion {
    padding: 110px 5% 40px;
  }
  .arreglo_base_secciones {
    padding: 0 3% 50px;
  }
}
