/* ═══════════════════════════════════════════════
   POLÍTICA DE ENVÍOS — LABRIEGO
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #FFFFFF;
  --gray-50:   #FAFAFA;
  --gray-100:  #F4F4F4;
  --gray-150:  #EFEFEF;
  --gray-300:  #D0D0D0;
  --gray-500:  #888888;
  --gray-700:  #333333;
  --gray-900:  #0F0F0F;
  --coral:      #E8593C;
  --coral-deep: #B2441F;
  --coral-10:  rgba(232, 89, 60, .1);
  --coral-16:  rgba(232, 89, 60, .16);
  --font:      'Space Grotesk', system-ui, -apple-system, sans-serif;
  --max-w:     760px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.7;
}

/* ── Header mínimo ── */
.pe-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}

.pe-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-900);
  opacity: .85;
  transition: opacity .25s;
}
.pe-logo:hover { opacity: 1; }

.pe-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color .25s;
}
.pe-back:hover { color: var(--gray-900); }

/* ── Contenido principal ── */
.pe-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px 120px;
}

/* ── Eyebrow ── */
.pe-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

/* ── Título ── */
.pe-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

/* ── Introducción ── */
.pe-intro {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-100);
}

/* ── Secciones ── */
.pe-section {
  margin-bottom: 48px;
}

.pe-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.pe-section h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 20px 0 8px;
}

.pe-section p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}
.pe-section p:last-child { margin-bottom: 0; }

.pe-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pe-section ul li {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.pe-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.pe-section a {
  color: var(--gray-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.pe-section a:hover { color: var(--gray-900); }

/* ── Recuadro de aviso ── */
.pe-callout {
  background: var(--coral-10);
  border: 1px solid var(--coral-16);
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.pe-callout p {
  margin-bottom: 0 !important;
  color: var(--gray-700);
}
.pe-callout strong { color: var(--coral-deep); }

/* ── Divisor ── */
.pe-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 56px 0;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 600px) {
  .pe-header {
    padding: 20px 20px;
  }

  .pe-main {
    padding: 48px 20px 80px;
  }
}
