@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #f4f7f3;
    min-height: 100vh;
    color: #1f2937;
}

/* ── Cabecera ── */
.cabecera {
    background: linear-gradient(135deg, #0d2b08 0%, #1a5c0f 100%);
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(45,90,27,0.35);
    position: sticky;
    top: 0;
    z-index: 100;
}
.cabecera-interior {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 24px;
}
.cabecera-izquierda { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-burbuja {
    width: 100px; height: 80px; border-radius: 50%; background: #fff;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.2); padding: 6px;
}
.cabecera-logo { width: 100%; height: 100%; object-fit: contain; padding-bottom: .2rem; }
.cabecera-divisor { width: 1px; height: 52px; background: rgba(255,255,255,0.35); flex-shrink: 0; }
.cabecera-nombre { font-size: 13px; font-weight: 600; color: #fff; max-width: 178px; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.2px; }
.cabecera-texto { flex: 1; }
.cabecera h1 { font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.cabecera-subtitulo { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── Layout dos columnas ── */
.layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    padding: 48px 24px 80px;
    align-items: start;
}

/* ── Sidebar ── */
.sidebar {
    position: sticky;
    top: 140px;
}
.sidebar-interior {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}
.pp-volver {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #2d6b1a;
    text-decoration: none;
    padding: 14px 18px;
    border-bottom: 1px solid #e8f0e5;
    transition: background .15s;
}
.pp-volver:hover { background: #f0fdf4; }

.sidebar-titulo {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 16px 18px 8px;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
}
.nav-item {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    padding: 9px 18px;
    border-left: 3px solid transparent;
    transition: color .15s, background .15s, border-color .15s;
    line-height: 1.4;
}
.nav-item:hover {
    color: #1a3a14;
    background: #f0fdf4;
    border-left-color: #c3e6b0;
}
.nav-item.activo {
    color: #1a3a14;
    font-weight: 700;
    background: #f0fdf4;
    border-left-color: #2d6b1a;
}

/* ── Contenido principal ── */
.contenido {
    padding-left: 48px;
}


/* ── Secciones ── */
.pp-seccion {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid #dde8d9;
    scroll-margin-top: 160px;
}
.pp-seccion:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.pp-seccion-cabecera {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}
.pp-num {
    font-size: 12px;
    font-weight: 800;
    color: #2d6b1a;
    letter-spacing: 0.5px;
    min-width: 28px;
    flex-shrink: 0;
}
.pp-seccion-titulo {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a14;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

/* ── Cuerpo ── */
.pp-seccion-cuerpo p {
    font-size: 14px;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 14px;
}
.pp-seccion-cuerpo p:last-child { margin-bottom: 0; }

/* ── Datos responsable ── */
.pp-dato {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 8px;
    margin-top: 12px;
}
.pp-dato:last-child { margin-bottom: 0; }
.pp-dato-label { font-weight: 700; color: #1a3a14; white-space: nowrap; }
.pp-dato a { color: #2d6b1a; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.pp-dato a:hover { color: #1a3a14; }

/* ── Listas ── */
.pp-lista { list-style: none; padding: 0; margin: 12px 0; }
.pp-lista li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 10px;
}
.pp-lista li:last-child { margin-bottom: 0; }
.pp-lista li::before {
    content: '';
    position: absolute;
    left: 4px; top: 11px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2d6b1a;
}
.pp-lista li strong { color: #1a3a14; }

/* ── Email destacado ── */
.pp-email-destacado { margin: 18px 0 14px; text-align: center; }
.pp-email-destacado a {
    font-size: 14px;
    font-weight: 700;
    color: #1a5c0f;
    text-decoration: none;
    background: #e8f5e2;
    border: 1.5px solid #b5d9a6;
    border-radius: 8px;
    padding: 10px 22px;
    display: inline-block;
    transition: background .2s, border-color .2s;
}
.pp-email-destacado a:hover { background: #d4edca; border-color: #2d6b1a; }

/* ── Enlace legal ── */
.enlace-legal { color: #2d6b1a; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.enlace-legal:hover { color: #1a3a14; }

/* ── Pie ── */
.pp-pie {
    margin-top: 52px;
    padding: 22px 28px;
    background: #fff;
    border-radius: 12px;
    border-top: 3px solid #1a3a14;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.pp-pie-nombre { font-size: 13px; font-weight: 700; color: #1a3a14; }
.pp-pie-detalle { font-size: 12px; color: #6b7280; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .layout { grid-template-columns: 1fr; padding: 24px 16px 60px; }
    .sidebar { position: static; margin-bottom: 32px; }
    .contenido { padding-left: 0; }
    .cabecera { padding: 20px 16px; position: static; }
    .cabecera h1 { font-size: 18px; }
    .cabecera-interior { flex-direction: column; align-items: flex-start; gap: 14px; padding-left: 0; padding-right: 0; }
    .logo-burbuja { width: 64px; height: 56px; }
    .cabecera-nombre { max-width: none; }
    .cabecera-subtitulo { font-size: 13px; }
    .doc-titulo { font-size: 20px; }
    .pp-pie { flex-direction: column; align-items: flex-start; padding: 18px 16px; }

    /* Evita que el contenido fuerce columnas más anchas que la pantalla */
    .layout > * { min-width: 0; }
    .pp-dato { flex-wrap: wrap; gap: 4px 10px; }
    .pp-dato-label { white-space: normal; }
    .pp-seccion-cuerpo, .pp-dato, .pp-lista li, .pp-pie { overflow-wrap: anywhere; }
}
